@charset "UTF-8";
/* Typography*/
/* Colors */
/* Overlays */
/* Sidebar */
/* Shell */
/* Icons */
/* Z-index Order of elements */
/* Standard border radius for rounded elements*/
/* Matches the design-pieces button radius rather than $radius */
:root {
  --content-text: #030303;
  --content-text-strong: #444444;
  --content-text-subtle: #8e8e8e;
  --content-accent: #2383bc;
  --content-warning: #ff5f15;
  --content-danger: #b62d2c;
  --content-attention: #f5a623;
  --content-row-icon-warning: #c13e66;
  --overlay-background: rgba(0, 0, 0, 0.65);
  --surface-success-subtle: #e2f6e8;
  --surface-danger-subtle: #f4e0dd;
  --surface-row-alt: #f0f0f0;
  --surface-sunken: #f7f7f7;
  --surface-card: #ffffff;
  --surface-dark: #2c2c46;
  --surface-inactive: #8e8e8e;
  --surface-filtered: #fdf4f7;
  --surface-on-hold: #fdf4f7;
  --surface-directional: #fff6e8;
  --border-card: #ededed;
  --border-divider: #dedede;
}

.surface-dark {
  --content-text: #b9b8d7;
  --content-text-strong: #fafefd;
  --content-text-subtle: #b9b8d7;
  --content-accent: #50b4cc;
  --content-warning: #ff702f;
  --content-danger: #d75958;
  --surface-success-subtle: rgba(49, 168, 83, 0.28);
  --surface-danger-subtle: rgba(182, 45, 44, 0.28);
}

.icon {
  fill: #4a4a75;
  width: 1.8rem;
  height: 1.8rem;
}
.icon.note {
  pointer-events: none;
}
.icon.disabled {
  pointer-events: none;
}

.icon-negative {
  fill: #ffffff;
}

.icon > use {
  pointer-events: none;
}

.icon-warning::before {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  content: url("/images/warning.svg");
}

/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Correct the line height in all browsers.
 * 3. Prevent adjustments of font size after orientation changes in IE and iOS.
 */
/* Document
   ========================================================================== */
html {
  font-family: sans-serif;
  /* 1 */
  line-height: 1;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  /* 3 */
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 62.5%;
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
  padding: 0;
}

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure {
  /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
  text-decoration: none;
  color: #030303;
}

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0;
}

/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: "Source Sans Pro", sans-serif;
  /* 1 */
  font-size: 1.4rem;
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

input[type=text]:focus,
input[type=date]:focus,
input[type=password]:focus,
select:focus,
textarea:focus {
  outline: none;
  background-color: #fff;
}

input[type=text],
input[type=date],
input[type=password] {
  padding: 0.8rem;
  height: 2rem;
  border: 1px solid #d0d0d0;
  box-shadow: 0px 3px 3px -3px rgba(0, 0, 0, 0.45);
  background: whitesmoke;
  transition: background 0.2s linear;
}

input[type=checkbox]:focus {
  outline: 0;
  border-color: transparent;
}

label {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * 1.Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: bottom;
  font-size: 1.5rem;
  transition: background 0.2s linear;
  border: 1px solid #d0d0d0;
  padding: 0.8rem;
  box-sizing: border-box;
  box-shadow: 0px 3px 3px -3px rgba(0, 0, 0, 0.45);
  background: whitesmoke;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on OS X.
 */
[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

select {
  cursor: pointer;
  color: #030303;
  font-size: 1.5rem;
  transition: background 0.2s linear;
  border: 1px solid #d0d0d0;
  padding: 0.9rem 2.5rem 1rem 1rem;
  box-shadow: 0px 3px 3px -3px rgba(0, 0, 0, 0.45);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='10' viewBox='0 0 24.8 14.6' fill='%232383bc'%3E%3Cpath d='M24.2,0.6c-0.8-0.8-2.4-0.8-3.2,0l-8.5,8.5L3.9,0.6C3-0.2,1.5-0.2,0.7,0.6C0.2,1.1,0,1.6,0,2.2s0.2,1.2,0.7,1.6L10.8,14c0.4,0.4,1,0.7,1.6,0.7c0.6,0,1.2-0.2,1.6-0.7L24.2,3.8C25.1,2.9,25.1,1.5,24.2,0.6z'/%3E%3C/svg%3E") 96% no-repeat whitesmoke;
  background-size: 1.3rem 1rem;
}

select::-ms-expand {
  display: none;
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/* Adjusting form elements 
   ========================================================================== */
button {
  background: none;
  border: 0;
  cursor: pointer;
}

button:focus,
[type=radio]:focus {
  outline: 0;
  border: 0;
}

ux-dialog-overlay {
  bottom: 0;
  left: 0;
  position: fixed;
  top: 0;
  right: 0;
  opacity: 0;
}

ux-dialog-overlay.active {
  opacity: 1;
}

ux-dialog-container {
  display: block;
  transition: opacity 0.2s linear;
  opacity: 0;
  overflow-x: hidden;
  overflow-y: auto;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-overflow-scrolling: touch;
}

ux-dialog-container.active {
  opacity: 1;
}

ux-dialog-container > div {
  padding: 30px;
}

ux-dialog-container > div > div {
  width: 100%;
  display: block;
  min-width: 300px;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  margin: auto;
}

ux-dialog-container,
ux-dialog-container > div,
ux-dialog-container > div > div {
  outline: 0;
}

ux-dialog {
  width: 100%;
  display: table;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  padding: 3;
  min-width: 300px;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  margin: auto;
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: initial;
  background: #fff;
}

ux-dialog > ux-dialog-header {
  display: block;
  padding: 16px;
  border-bottom: 1px solid #e5e5e5;
}

ux-dialog > ux-dialog-header > button {
  float: right;
  border: none;
  display: block;
  width: 32px;
  height: 32px;
  background: none;
  font-size: 22px;
  line-height: 16px;
  margin: -14px -16px 0 0;
  padding: 0;
  cursor: pointer;
}

ux-dialog > ux-dialog-body {
  display: block;
  padding: 16px;
}

ux-dialog > ux-dialog-footer {
  display: block;
  padding: 6px;
  border-top: 1px solid #e5e5e5;
  text-align: right;
}

ux-dialog > ux-dialog-footer button {
  color: #333;
  background-color: #fff;
  padding: 6px 12px;
  font-size: 14px;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin: 5px 0 5px 5px;
}

ux-dialog > ux-dialog-footer button:disabled {
  cursor: default;
  opacity: 0.45;
}

ux-dialog > ux-dialog-footer button:hover:enabled {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}

.ux-dialog-open {
  overflow: hidden;
}

:root {
  --font-size-base: 1.4rem;
  --font-size-value: 1.5rem;
  --font-size-title: 1.8rem;
  --font-size-dialog-title: 2rem;
  --font-size-info: 1.3rem;
  --font-size-label: 1.3rem;
}

.link {
  color: #2383bc;
  text-decoration: none;
}
.link:visited {
  color: #2383bc;
}
.link:hover, .link:visited:hover {
  color: #63b3e2;
}

.-regularWeight {
  font-weight: 400;
}

.-semiboldWeight {
  font-weight: 600;
}

.-boldWeight {
  font-weight: 700;
}

.-centered {
  text-align: center;
}

.-italic {
  font-style: italic;
}

.content-label {
  color: var(--content-text-strong);
  opacity: 0.5;
  font-size: 1.4rem;
}

.content-value {
  color: var(--content-text-strong);
  font-size: 1.5rem;
}

h2 {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.8rem;
}

.grid-table {
  display: grid;
}
.grid-table .cell {
  line-height: 4rem;
  padding: 0 1.6rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 10rem;
}
.grid-table .cell.-numeric {
  text-align: right;
}
.grid-table .cell.-shaded {
  background-color: rgba(190, 190, 190, 0.24);
}
.grid-table .cell__icons {
  display: flex;
  gap: 1.6rem;
  align-items: end;
}
.grid-table .cell__icons div {
  cursor: pointer;
}
.grid-table .header {
  background-color: #2c2c46;
  color: #fafefd;
}
.grid-table input[type=text] {
  border: 1px solid #bebebe;
}

.has-error .validation-container .validation-control {
  border-color: #b62d2c;
}

.validation-container.has-error .fieldinput.validation-control {
  border-color: #b62d2c !important;
}

textarea.has-error {
  box-shadow: inset 0 0 0 2px #b62d2c;
}

.widefield select {
  width: 98% !important;
}

.validation-container {
  position: relative;
  overflow: visible !important;
}
.validation-container:hover .validation-message {
  visibility: visible;
  opacity: 1;
  z-index: 999;
}
.validation-container .validation-control.has-error {
  border: 1px solid #b62d2c;
}
.validation-container .validation-control.has-error input {
  box-sizing: border-box;
}
.validation-container.has-error {
  display: flex;
  flex-direction: column;
}
.validation-container.has-error span {
  top: 0;
}
.validation-container.has-error.indago-timepicker__input {
  flex-direction: row;
}
.validation-container.show-validation-message .validation-message {
  visibility: visible;
  opacity: 1;
  z-index: 999;
}
.validation-container .validation-message {
  position: absolute;
  width: 100%;
  margin-top: 0.4rem;
  color: #b62d2c;
  background-color: #f4e0dd;
  font-size: 1.4rem;
  line-height: 1;
  border: 1px solid #b62d2c;
  padding: 0.8rem;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s ease-in, opacity 0.3s ease-in;
  width: max-content;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.animate-slide-in-right.au-enter {
  transform: translateX(100%);
}

.animate-slide-in-right.au-enter-active {
  animation-timing-function: ease-out;
  animation: SlideInRight 0.5s;
}

.animate-slide-out-right.au-leave-active {
  animation-timing-function: ease-in-out;
  animation: SlideOutRight 0.3s;
}

.animate-slide-in-left.au-enter {
  transform: translateX(-100%);
}

.animate-slide-in-left.au-enter-active {
  animation: SlideInLeft 0.5s;
}

.animate-slide-out-left.au-leave-active {
  animation: SlideOutLeft 0.3s;
}

.animate-fade-in.au-enter {
  opacity: 0;
}

.animate-fade-in.au-enter-active {
  animation: FadeIn 0.3s;
}

.animate-fade-out.au-leave-active {
  animation: FadeOut 0.3s;
}

.animate-fade-out.au-left {
  opacity: 0;
}

@keyframes SlideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes SlideOutRight {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}
@keyframes SlideInLeft {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes SlideOutLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes FadeIn {
  to {
    opacity: 1;
  }
}
@keyframes FadeOut {
  to {
    opacity: 0;
  }
}
.fixed-size-viewport {
  position: absolute;
  margin: 0 3.4rem;
  bottom: 0;
  top: 0;
  right: 0;
  left: 0;
}

.indago-grid {
  display: grid;
  grid-template-rows: min-content min-content;
  grid-auto-rows: min-content;
}
.indago-grid .cell {
  display: flex;
  align-items: center;
  padding: 0.4rem 0.8rem;
  min-height: 3rem;
}
.indago-grid .cell.-header {
  position: sticky;
  top: 0;
  background: #2c2c46;
  color: #fafefd;
  z-index: 100;
}
.indago-grid .cell.-numeric {
  justify-content: right;
}
.indago-grid .cell.-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.indago-grid .row:nth-child(odd) .cell {
  background-color: #f2f2f2;
}

.indago-grid-form {
  display: contents;
}
.indago-grid-form form {
  display: contents;
}
.indago-grid-form label {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}
.indago-grid-form input {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
  border: 1px solid #ccc;
  padding: 0.8rem;
}
.indago-grid-form input.-numeric {
  text-align: right;
}
.indago-grid-form indago-select-options {
  width: 100%;
}

/**
 * Dialog chrome roles, for any dialog to compose instead of restyling its own bar:
 *
 *     <ux-dialog-header class="dialog-header surface-dark">
 *         <h2 class="dialog-title">…</h2>
 *         <button class="dialog-close">…</button>
 *     </ux-dialog-header>
 *
 * The header element carries .surface-dark, so the content tokens below resolve to their on-dark
 * values. Vendors/_ux-dialog.scss is the legacy equivalent, styling shared class names with raw
 * palette values; migrate dialogs onto these as they are touched.
 */
.dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-sizing: border-box;
  min-height: 6.4rem;
  padding: 0 1.6rem;
  background: var(--surface-dark);
}

.dialog-title {
  margin: 0;
  font-size: var(--font-size-dialog-title);
  font-weight: 600;
  line-height: 1.2;
  color: var(--content-text-strong);
}

/**
 * The "Order #1234" line at the top of a dialog body. 2.83rem is what the app's order dialogs
 * already render at; five sheets still carry their own copy of these rules and should move onto
 * this as they are touched.
 *
 * The accent applies to any span inside rather than to a class name, so it covers both the legacy
 * .orderNumber consumers and BEM ones. Edit Route puts its piece mark in a second span and already
 * draws it the same colour, so that keeps working.
 */
.dialog-order-title {
  margin: 0;
  font-size: 2.83rem;
  font-weight: 400;
  color: var(--content-text-strong);
  border-bottom: 1px solid var(--border-divider);
  padding-bottom: 1rem;
}
.dialog-order-title span {
  color: var(--content-accent);
}

.dialog-footer {
  display: flex;
  justify-content: flex-end;
  background: var(--surface-row-alt);
  padding: 1rem 1.4rem;
  border-top: 1px solid var(--border-divider);
}

.dialog-close {
  width: 2.3rem;
  height: 2.3rem;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: none;
  box-shadow: 0 0 0 1px var(--content-accent);
  color: var(--content-accent);
  cursor: pointer;
}
.dialog-close svg {
  width: 1.3rem;
  height: 1.3rem;
  fill: currentColor;
}

ux-dialog .dialog-header-content {
  display: flex;
  font-size: 1.5rem;
  align-items: center;
  text-transform: uppercase;
  color: white;
  font-weight: 700;
  width: 100%;
  justify-content: space-between;
}
ux-dialog .dialog-header-content .dialog-details {
  display: flex;
  flex-direction: column;
  color: #b9b8d7;
}
ux-dialog .dialog-header-content .dialog-details .title {
  color: white;
}

ux-dialog-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

ux-dialog-container > div {
  margin: auto !important;
}

.popover-dialog {
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.3);
  color: #b9b8d7;
  background-color: #2c2c46;
  cursor: pointer;
  font-size: 1.4rem;
  border-radius: 0.4rem;
}
.popover-dialog header {
  background-color: #1a1a2a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1rem;
  text-transform: uppercase;
  font-weight: 700;
  height: 3rem;
  border-bottom: 1px solid #535385;
}
.popover-dialog footer {
  display: flex;
  justify-content: flex-end;
  padding: 1rem;
  margin: 0;
  gap: 0;
  align-items: center;
  border-top: #535385 1px solid;
  text-align: right;
  gap: 0.8rem;
}
.popover-dialog footer button {
  box-shadow: 0 0 0px 1px #b9b8d7 !important;
}
.popover-dialog footer button span.label {
  color: #b9b8d7 !important;
}
.popover-dialog__content textarea {
  width: 300px;
  height: 70px;
  box-sizing: border-box;
  margin: 1rem 1.5rem 0.5rem;
  resize: none;
  font-size: 1.4rem;
  padding-top: 0.4rem;
  line-height: 1.8rem;
  scrollbar-width: thin;
  scrollbar-color: #2383bc #f7f7f7;
}

._hidden {
  visibility: hidden;
}

._visible {
  visibility: visible;
}

._hrzCenter {
  margin: 0 auto;
}

._remove {
  display: none;
}

._show {
  display: block;
}

._fleft {
  float: left;
}

._fright {
  float: right;
}

._center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.view-create-orders .generalForm .formGroup:after, .pop-over > .wrapper .footer:after, .filter-menu:after, shell-header:after, footer.popover:after {
  content: "";
  display: table;
  clear: both;
}

.run-management .snapshot, .order-query-view section.query-results, .change-request-report-view section.query-results, .view-change-requests .item-list, .view-production-tab, .view-orders-tab, .dashboard-detail, .view-action-history .actions-list, .view-system-notifications .notification-list-wrapper, .view-user-management .user-list-wrapper, ux-dialog.user-selection-dialog ux-dialog-body {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

ux-dialog-overlay.active {
  background-color: black;
  opacity: 0.75;
}

ux-dialog {
  border: 0;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.5rem;
  border-radius: 0;
  padding: 0;
}

ux-dialog-header {
  background: #222236;
}
ux-dialog-header .title {
  color: #fff;
  display: inline-block;
  margin: 0.5rem 0;
  margin-right: 1rem;
  font-size: 2rem;
  font-weight: 600;
}
ux-dialog-header .close-button {
  float: right;
  cursor: pointer;
  margin: 0.3rem 0;
}
ux-dialog-header .close-button .icon {
  fill: #2383bc;
  width: 1.3rem;
  height: 1.3rem;
  box-shadow: 0 0 0 1px #2383bc;
  border-radius: 50%;
  padding: 0.5rem;
}
ux-dialog-header.__flex {
  display: flex;
}

.onHoldDialog,
.markPieceMissingDialog {
  min-width: 530px;
}

.onHoldDescription {
  text-align: center;
  margin-bottom: 2rem;
}

.offHoldDialog,
.changeCompDateDialog {
  width: 60rem;
}
.offHoldDialog .description,
.changeCompDateDialog .description {
  text-align: center;
  margin-bottom: 2rem;
}
.offHoldDialog .content,
.changeCompDateDialog .content {
  padding: 2rem 0 1rem 0;
  background: #f9f9f9;
  border: 1px solid #d6d6d6;
}
.offHoldDialog .arrow,
.changeCompDateDialog .arrow {
  text-align: center;
  margin: 0.3rem 0 0.7rem 0;
}
.offHoldDialog .arrow .icon,
.changeCompDateDialog .arrow .icon {
  transform: rotate(90deg) translateY(-41px);
  fill: #c3c3c3;
}
.offHoldDialog .currentDate,
.changeCompDateDialog .currentDate {
  font-weight: 700;
  margin-left: 0.5rem;
}
.offHoldDialog .newDate,
.changeCompDateDialog .newDate {
  width: 7rem;
  cursor: pointer;
}
.offHoldDialog .column1,
.offHoldDialog .column2,
.changeCompDateDialog .column1,
.changeCompDateDialog .column2 {
  display: inline-block;
  width: 49.5%;
  line-height: 3rem;
}
.offHoldDialog .column1,
.changeCompDateDialog .column1 {
  text-align: right;
  padding-right: 1rem;
  box-sizing: border-box;
}
.offHoldDialog .info-message,
.changeCompDateDialog .info-message {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 2rem 0.5rem 2rem;
  padding: 1rem 1.5rem;
  background-color: #e3f2fd;
  border: 1px solid #90caf9;
  border-radius: 4px;
}
.offHoldDialog .info-message .info-icon,
.changeCompDateDialog .info-message .info-icon {
  fill: #1976d2;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  margin-right: 1rem;
  display: flex;
  align-items: center;
}
.offHoldDialog .info-message .info-text,
.changeCompDateDialog .info-message .info-text {
  color: #0d47a1;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.5;
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.offHoldDialog .validation-error-list,
.changeCompDateDialog .validation-error-list {
  padding: 0;
  text-align: center;
  list-style: none;
}

.onHoldTitle,
.priorityTitle,
.offHoldTitle,
.changeCompDateTitle {
  text-align: center;
}
.onHoldTitle .icon,
.priorityTitle .icon,
.offHoldTitle .icon,
.changeCompDateTitle .icon {
  fill: #c13e66;
  width: 40px;
  height: 40px;
}
.onHoldTitle h3,
.priorityTitle h3,
.offHoldTitle h3,
.changeCompDateTitle h3 {
  color: #c13e66;
  font-size: 2.3rem;
  font-weight: 600;
  border-bottom: 1px solid #ededed;
  margin-top: 1rem;
  padding-bottom: 1rem;
}

.markPieceMissingTitle {
  text-align: center;
}
.markPieceMissingTitle .icon {
  fill: #c13e66;
  width: 40px;
  height: 40px;
}
.markPieceMissingTitle h3 {
  font-size: 2.83rem;
  font-weight: 400;
  border-bottom: 1px solid #d4d4d4;
  margin-top: 1rem;
  padding-bottom: 1rem;
}
.markPieceMissingTitle h3 .orderNumber {
  color: #2383bc;
}

.markPieceMissingDialog ux-dialog-body {
  padding: 16px 30px 30px;
}
.markPieceMissingDialog .widefield {
  margin-bottom: 2.6rem;
}
.markPieceMissingDialog textarea.has-error {
  box-shadow: none;
}
.markPieceMissingDialog .has-error .fieldtitle, .markPieceMissingDialog .has-error indago-select-options.widefield > label {
  color: inherit;
}

ux-dialog-footer {
  background: #f0f0f0;
  /* Override Aurelia`s default CSS */
}
ux-dialog-footer button {
  border: 0 !important;
  margin-left: 16px !important;
}

.shortfield {
  width: 50%;
  margin-top: 1rem;
  display: inline-block;
}
.shortfield select,
.shortfield input {
  width: 95%;
  box-sizing: border-box;
  min-height: 3.7rem;
  line-height: 1.4;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.widefield {
  margin-top: 1rem;
  width: 100%;
}
.widefield input {
  width: 92%;
}
.widefield select {
  width: 96%;
}
.widefield textarea {
  width: 100%;
  min-height: 10rem;
}

.fieldtitle, indago-select-options.widefield > label {
  margin: 0.7rem 0;
  display: block;
  font-weight: 600;
  font-size: 1.3rem;
  font-family: "Source Sans Pro", sans-serif;
  white-space: nowrap;
}

.fieldcaption {
  font-size: 1.4rem;
  font-style: italic;
  text-align: right;
  line-height: 3rem;
}

.validation-error-list {
  color: red;
  padding: 1rem 2rem;
  font-size: 1.5rem;
  line-height: 2rem;
  font-style: italic;
  font-family: "Source Sans Pro", sans-serif;
}

.has-error .fieldtitle, .has-error indago-select-options.widefield > label {
  color: red;
}
.has-error .fieldinput {
  border-color: red;
}

.userDialog {
  max-width: 65rem;
}

.notificationDialog {
  min-width: 42rem;
}
.notificationDialog .validation-error-list {
  min-height: 8rem;
}
.notificationDialog .fieldtitle, .notificationDialog indago-select-options.widefield > label {
  font-weight: 700;
  font-size: 1.5rem;
}

.roleDialog {
  width: 55rem;
}
.roleDialog ux-dialog-body {
  height: 15rem;
}
.roleDialog .fieldtitle, .roleDialog indago-select-options.widefield > label {
  font-size: 1.4rem;
}

.priorityDialog {
  min-height: 33rem;
}
.priorityDialog.-Rush .icon {
  fill: #b62d2c;
}
.priorityDialog.-Rush .heading {
  color: #b62d2c;
}
.priorityDialog.-Bump .icon {
  fill: #2383bc;
}
.priorityDialog.-Bump .heading {
  color: #2383bc;
}
.priorityDialog .priorityText {
  font-size: 1.5rem;
}

.cancelOrderDialog {
  width: 45rem;
  font-size: 1.5rem;
}
.cancelOrderDialog .icon {
  width: 4rem;
  height: 4rem;
}
.cancelOrderDialog .heading {
  color: #4a4a75;
  font-size: 2.3rem;
  font-weight: 600;
  border-bottom: 1px solid #ededed;
  margin-top: 1rem;
  padding-bottom: 1rem;
}

.asset-request-dialog ux-dialog-header {
  border: 0;
}
.asset-request-dialog ux-dialog-body {
  width: 75rem;
  min-height: 50rem;
  position: relative;
  padding: 0;
}
.asset-request-dialog ux-dialog-footer button.-reject {
  background: linear-gradient(to bottom, #aa4347 0%, #82312e 100%);
}
.asset-request-dialog ux-dialog-footer button.-reject:hover {
  background: linear-gradient(to bottom, #c06064 0%, #a83f3b 100%);
}
.asset-request-dialog ux-dialog-footer button.-approve {
  background: linear-gradient(to bottom, #389b48 0%, #267933 100%);
}
.asset-request-dialog ux-dialog-footer button.-approve:hover {
  background: linear-gradient(to bottom, #49bd5c 0%, #32a043 100%);
}
.asset-request-dialog .orderSearch-bar {
  background-color: #3b3b4b;
  width: 100%;
  padding: 2rem;
  box-sizing: border-box;
}
.asset-request-dialog .orderSearch-bar .searchWrapper {
  width: 80%;
  position: relative;
  margin: 0 auto;
}
.asset-request-dialog .orderSearch-bar .indagoIcon {
  position: absolute;
  left: 1.7rem;
  top: 1.5rem;
}
.asset-request-dialog .orderSearch-bar .indagoIcon .icon {
  fill: #808080;
}
.asset-request-dialog .orderSearch-bar .searchInput {
  width: 93%;
  font-size: 1.6rem;
  padding: 1.3rem 0 1.3rem 4.4rem;
  box-sizing: content-box;
}
.asset-request-dialog .orderSearch-bar .-searchButton {
  position: absolute;
  right: 0.6rem;
  top: 0.7rem;
}
.asset-request-dialog .selected-order {
  margin: 2rem;
}
.asset-request-dialog .searchResults {
  margin: 2rem;
  height: 74%;
}
.asset-request-dialog .results-container {
  overflow-y: auto;
  height: 88%;
}
.asset-request-dialog .selectable-order {
  border: 1px solid #e4e4e4;
  box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  margin-top: 0.8rem;
  padding: 1.5rem;
}
.asset-request-dialog .selectable-order:hover {
  border: 1px solid #2383bc;
  box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.5);
}
.asset-request-dialog .selectable-order > .highlight {
  color: #2383bc;
  font-weight: 700;
}
.asset-request-dialog .requestBody header {
  border-bottom: 1px solid #d4d4d4;
  color: #030303;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
}
.asset-request-dialog .requestBody header .orderIdentification {
  font-size: 2rem;
}
.asset-request-dialog .requestBody header .orderType {
  font-size: 1.8rem;
  float: right;
  font-weight: 600;
}
.asset-request-dialog .requestBody header .icon {
  vertical-align: -2px;
}
.asset-request-dialog .requestBody header .emphasis {
  font-weight: 700;
}
.asset-request-dialog .request-type {
  background-color: #f3f3f3;
  border: 1px solid #ccc;
  display: flex;
  align-items: stretch;
  position: relative;
}
.asset-request-dialog .request-type.-rush {
  border-color: #b62d2c;
}
.asset-request-dialog .request-type.-rush .requestTypeIcon .icon {
  fill: #b62d2c;
}
.asset-request-dialog .request-type.-rush .requestTypeIcon:after {
  border-right: 1px solid #b62d2c;
}
.asset-request-dialog .request-type.-bump {
  border-color: #50b4cc;
}
.asset-request-dialog .request-type.-bump .requestTypeIcon .icon {
  fill: #50b4cc;
}
.asset-request-dialog .request-type.-bump .requestTypeIcon:after {
  border-right: 1px solid #50b4cc;
}
.asset-request-dialog .request-type .-override {
  text-decoration: line-through;
}
.asset-request-dialog .request-type .column {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 0;
}
.asset-request-dialog .request-type .column .text {
  color: #4b4b4b;
  font-weight: 600;
  margin: 0.7rem 0;
}
.asset-request-dialog .request-type .column .date {
  color: #808080;
  font-size: 2.2rem;
  margin: 0.5rem 0;
}
.asset-request-dialog .request-type .column .date .calendar {
  margin-left: 1rem;
}
.asset-request-dialog .request-type .column .form {
  margin-bottom: 0.7rem;
}
.asset-request-dialog .request-type .column .form input {
  width: 8.5rem;
  text-align: center;
}
.asset-request-dialog .request-type .requestTypeIcon {
  position: relative;
  background-color: #f3f3f3;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.asset-request-dialog .request-type .requestTypeIcon::after {
  content: "";
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
}
.asset-request-dialog .request-type .requestTypeIcon .iconWrapper {
  position: relative;
  margin: 0 0.5rem;
  display: inline-block;
  width: 6.5rem;
  text-align: center;
}
.asset-request-dialog .request-type .requestTypeIcon .iconWrapper .icon {
  width: 2.5rem;
  height: 2.5rem;
  margin: 8px 0;
  position: relative;
  z-index: 2;
  padding: 0 5px;
  background-color: #f3f3f3;
}
.asset-request-dialog .request-type .requestTypeIcon .iconWrapper:after, .asset-request-dialog .request-type .requestTypeIcon .iconWrapper:before {
  content: "";
  position: absolute;
  z-index: 1;
}
.asset-request-dialog .request-type .requestTypeIcon .iconWrapper:after {
  background: #cccccc;
  width: 100%;
  height: 3px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.asset-request-dialog .request-type .requestTypeIcon .iconWrapper:before {
  border-top: 3px solid #cccccc;
  border-right: 3px solid #cccccc;
  width: 0.7rem;
  height: 0.7rem;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.asset-request-dialog .wrapper {
  margin-top: 2rem;
  overflow: hidden;
}
.asset-request-dialog .wrapper .order-details {
  float: left;
  width: 48%;
}
.asset-request-dialog .wrapper .order-details .tab-container {
  margin: 0 0 1.6rem 0;
}
.asset-request-dialog .wrapper .order-details .orderInfo-tab {
  display: flex;
  flex-wrap: wrap;
}
.asset-request-dialog .wrapper .order-details .orderInfo-tab .element {
  flex: 0 0 50%;
  margin: 0.5rem 0;
  line-height: 2rem;
}
.asset-request-dialog .wrapper .order-details .orderInfo-tab .element:first-child {
  flex: 0 0 100%;
}
.asset-request-dialog .wrapper .order-details .orderInfo-tab .label {
  font-weight: 600;
}
.asset-request-dialog .wrapper .order-details .orderItem-tab {
  height: 21rem;
  overflow-y: auto;
}
.asset-request-dialog .wrapper .order-details .orderItem-tab .orderItem {
  background: #f2f2f2;
  padding: 1rem 1.3rem;
  margin-bottom: 0.6rem;
  line-height: 2.1rem;
  margin-right: 0.2rem;
  font-size: 1.4rem;
}
.asset-request-dialog .wrapper .order-details .orderItem-tab .orderItem .element span:first-child {
  font-weight: 600;
}
.asset-request-dialog .wrapper .changeRequest-summary .element {
  margin-bottom: 0.6rem;
  line-height: 2.1rem;
  font-size: 1.4rem;
}
.asset-request-dialog .wrapper .changeRequest-summary .element span:first-child {
  font-weight: 600;
}
.asset-request-dialog .wrapper .changeRequest-details {
  float: right;
  width: 49%;
  display: flex;
  flex-wrap: wrap;
}
.asset-request-dialog .wrapper .changeRequest-details .element {
  flex: 0 0 46%;
  margin: 0.8rem 0;
}
.asset-request-dialog .wrapper .changeRequest-details .element.-wide {
  flex: 0 0 100%;
}
.asset-request-dialog .wrapper .changeRequest-details .element:first-child {
  margin-right: 1rem;
}
.asset-request-dialog .wrapper .changeRequest-details label {
  font-weight: 600;
  display: block;
  margin-bottom: 0.7rem;
}
.asset-request-dialog .wrapper .changeRequest-details .select,
.asset-request-dialog .wrapper .changeRequest-details .textarea {
  width: 100%;
}
.asset-request-dialog .wrapper .changeRequest-details .textarea {
  height: 6rem;
}
.asset-request-dialog .wrapper .changeRequest-details input[type=checkbox] + label {
  display: inline;
}
.asset-request-dialog .wrapper .changeRequest-details input[type=checkbox]:disabled + label {
  color: #9a9a9a;
}
.asset-request-dialog .confirmationWrapper {
  margin-top: 3rem;
}
.asset-request-dialog .confirmationWrapper .title {
  font-size: 2.1rem;
  color: #595959;
  font-weight: 600;
  margin: 2rem 0;
}
.asset-request-dialog .confirmationWrapper .title span {
  font-weight: 700;
}
.asset-request-dialog .confirmationWrapper.-approve .title span {
  color: #267933;
}
.asset-request-dialog .confirmationWrapper.-reject .title span {
  color: #aa4347;
}
.asset-request-dialog .confirmationWrapper.-reject .form label {
  font-weight: 600;
  display: block;
  color: #4b4b4b;
  margin-bottom: 1rem;
}
.asset-request-dialog .confirmationWrapper.-reject .form textarea {
  width: 100%;
  height: 12rem;
}
.asset-request-dialog .bumpConfirmationWrapper {
  margin-top: 4rem;
}
.asset-request-dialog .bumpConfirmationWrapper h2 {
  color: #595959;
  font-weight: 600;
  font-size: 1.9rem;
}
.asset-request-dialog .bumpConfirmationWrapper strong {
  color: #2383bc;
}

.ct-point-circle {
  fill: rgba(147, 191, 218, 0.8);
  fill-opacity: 0.7;
  stroke: #2383bc;
}

.ct-grids .ct-grid {
  stroke-dasharray: 0;
  stroke: rgba(0, 0, 0, 0.1);
}
.ct-grids .ct-grid.ct-vertical ~ .ct-vertical {
  stroke-dasharray: 5, 2;
}

.ct-chart-bar .ct-grid.ct-horizontal {
  stroke-opacity: 0;
}

.ct-series .ct-line {
  stroke-width: 2px;
}
.ct-series .chart-point {
  stroke-width: 2px;
  stroke: white;
}
.ct-series.ct-series-a text {
  fill: rgba(0, 0, 0, 0.4);
}
.ct-series.ct-series-a .ct-bar {
  stroke: #2A80B9;
}
.ct-series.ct-series-a .ct-line {
  stroke: #2A80B9;
}
.ct-series.ct-series-a .chart-point {
  fill: #2A80B9;
}
.ct-series.ct-series-b .ct-line {
  stroke: #DE6F27;
}
.ct-series.ct-series-b .chart-point {
  fill: #DE6F27;
}
.ct-series.ct-series-c .ct-line {
  stroke: #4DCC7B;
}
.ct-series.ct-series-c .chart-point {
  fill: #4DCC7B;
}
.ct-series.ct-series-d .ct-line {
  stroke: #8C55A6;
}
.ct-series.ct-series-d .chart-point {
  fill: #8C55A6;
}

.ct-labels .ct-label {
  font-size: 14px;
  white-space: nowrap;
}

/*
These are the data labels displayed as a legend for each series in a chart. 
*/
.data-labels {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  position: absolute;
  right: 1.8rem;
  top: 8.3rem;
}
.data-labels span {
  margin: 0 5px;
}
.data-labels span:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 1rem;
  height: 1rem;
  margin-right: 5px;
}
.data-labels span.series-label-1:before {
  background-color: #2A80B9;
}
.data-labels span.series-label-2:before {
  background-color: #DE6F27;
}
.data-labels span.series-label-3:before {
  background-color: #4DCC7B;
}
.data-labels span.series-label-4:before {
  background-color: #8C55A6;
}

/*
This is the tooltip that is displayed when hovering over a datapoint
*/
.chart-tooltip {
  position: fixed;
  background-color: #ffffff;
  border: 1px solid #444444;
  padding: 0 10px;
  font-size: 14px;
  font-family: "Source Sans Pro";
  z-index: 20;
  cursor: default;
  pointer-events: none;
  visibility: hidden;
}
.chart-tooltip.-show {
  visibility: visible;
}
.chart-tooltip > div {
  margin: 1rem 0;
}
.chart-tooltip > div > span:last-of-type {
  float: right;
  margin-left: 1.5rem;
  font-weight: 600;
}
.chart-tooltip > div:first-of-type {
  font-weight: 600;
}

.ct-label {
  fill: rgba(0, 0, 0, 0.4);
  color: rgba(0, 0, 0, 0.4);
  font-size: 0.75rem;
  line-height: 1;
}

.ct-chart-line .ct-label,
.ct-chart-bar .ct-label {
  display: block;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.ct-chart-pie .ct-label,
.ct-chart-donut .ct-label {
  dominant-baseline: central;
}

.ct-label.ct-horizontal.ct-start {
  -webkit-box-align: flex-end;
  -webkit-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  text-align: left;
  text-anchor: start;
}

.ct-label.ct-horizontal.ct-end {
  -webkit-box-align: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  text-align: left;
  text-anchor: start;
}

.ct-label.ct-vertical.ct-start {
  -webkit-box-align: flex-end;
  -webkit-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  -webkit-box-pack: flex-end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: flex-end;
  justify-content: flex-end;
  text-align: right;
  text-anchor: end;
}

.ct-label.ct-vertical.ct-end {
  -webkit-box-align: flex-end;
  -webkit-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  text-align: left;
  text-anchor: start;
}

.ct-chart-bar .ct-label.ct-horizontal.ct-start {
  -webkit-box-align: flex-end;
  -webkit-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  text-anchor: start;
}

.ct-chart-bar .ct-label.ct-horizontal.ct-end {
  -webkit-box-align: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  text-anchor: start;
}

.ct-chart-bar.ct-horizontal-bars .ct-label.ct-horizontal.ct-start {
  -webkit-box-align: flex-end;
  -webkit-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  text-align: left;
  text-anchor: start;
}

.ct-chart-bar.ct-horizontal-bars .ct-label.ct-horizontal.ct-end {
  -webkit-box-align: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  text-align: left;
  text-anchor: start;
}

.ct-chart-bar.ct-horizontal-bars .ct-label.ct-vertical.ct-start {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: flex-end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: flex-end;
  justify-content: flex-end;
  text-align: right;
  text-anchor: end;
}

.ct-chart-bar.ct-horizontal-bars .ct-label.ct-vertical.ct-end {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: flex-start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  text-align: left;
  text-anchor: end;
}

.ct-grid {
  stroke: rgba(0, 0, 0, 0.2);
  stroke-width: 1px;
  stroke-dasharray: 2px;
}

.ct-grid-background {
  fill: none;
}

.ct-point {
  stroke-width: 10px;
  stroke-linecap: round;
}

.ct-line {
  fill: none;
  stroke-width: 4px;
}

.ct-area {
  stroke: none;
  fill-opacity: 0.1;
}

.ct-bar {
  fill: none;
  stroke-width: 10px;
}

.ct-slice-donut {
  fill: none;
  stroke-width: 60px;
}

.ct-series-a .ct-point, .ct-series-a .ct-line, .ct-series-a .ct-bar, .ct-series-a .ct-slice-donut {
  stroke: #d70206;
}
.ct-series-a .ct-slice-pie, .ct-series-a .ct-slice-donut-solid, .ct-series-a .ct-area {
  fill: #d70206;
}

.ct-series-b .ct-point, .ct-series-b .ct-line, .ct-series-b .ct-bar, .ct-series-b .ct-slice-donut {
  stroke: #f05b4f;
}
.ct-series-b .ct-slice-pie, .ct-series-b .ct-slice-donut-solid, .ct-series-b .ct-area {
  fill: #f05b4f;
}

.ct-series-c .ct-point, .ct-series-c .ct-line, .ct-series-c .ct-bar, .ct-series-c .ct-slice-donut {
  stroke: #f4c63d;
}
.ct-series-c .ct-slice-pie, .ct-series-c .ct-slice-donut-solid, .ct-series-c .ct-area {
  fill: #f4c63d;
}

.ct-series-d .ct-point, .ct-series-d .ct-line, .ct-series-d .ct-bar, .ct-series-d .ct-slice-donut {
  stroke: #d17905;
}
.ct-series-d .ct-slice-pie, .ct-series-d .ct-slice-donut-solid, .ct-series-d .ct-area {
  fill: #d17905;
}

.ct-series-e .ct-point, .ct-series-e .ct-line, .ct-series-e .ct-bar, .ct-series-e .ct-slice-donut {
  stroke: #453d3f;
}
.ct-series-e .ct-slice-pie, .ct-series-e .ct-slice-donut-solid, .ct-series-e .ct-area {
  fill: #453d3f;
}

.ct-series-f .ct-point, .ct-series-f .ct-line, .ct-series-f .ct-bar, .ct-series-f .ct-slice-donut {
  stroke: #59922b;
}
.ct-series-f .ct-slice-pie, .ct-series-f .ct-slice-donut-solid, .ct-series-f .ct-area {
  fill: #59922b;
}

.ct-series-g .ct-point, .ct-series-g .ct-line, .ct-series-g .ct-bar, .ct-series-g .ct-slice-donut {
  stroke: #0544d3;
}
.ct-series-g .ct-slice-pie, .ct-series-g .ct-slice-donut-solid, .ct-series-g .ct-area {
  fill: #0544d3;
}

.ct-series-h .ct-point, .ct-series-h .ct-line, .ct-series-h .ct-bar, .ct-series-h .ct-slice-donut {
  stroke: #6b0392;
}
.ct-series-h .ct-slice-pie, .ct-series-h .ct-slice-donut-solid, .ct-series-h .ct-area {
  fill: #6b0392;
}

.ct-series-i .ct-point, .ct-series-i .ct-line, .ct-series-i .ct-bar, .ct-series-i .ct-slice-donut {
  stroke: #f05b4f;
}
.ct-series-i .ct-slice-pie, .ct-series-i .ct-slice-donut-solid, .ct-series-i .ct-area {
  fill: #f05b4f;
}

.ct-series-j .ct-point, .ct-series-j .ct-line, .ct-series-j .ct-bar, .ct-series-j .ct-slice-donut {
  stroke: #dda458;
}
.ct-series-j .ct-slice-pie, .ct-series-j .ct-slice-donut-solid, .ct-series-j .ct-area {
  fill: #dda458;
}

.ct-series-k .ct-point, .ct-series-k .ct-line, .ct-series-k .ct-bar, .ct-series-k .ct-slice-donut {
  stroke: #eacf7d;
}
.ct-series-k .ct-slice-pie, .ct-series-k .ct-slice-donut-solid, .ct-series-k .ct-area {
  fill: #eacf7d;
}

.ct-series-l .ct-point, .ct-series-l .ct-line, .ct-series-l .ct-bar, .ct-series-l .ct-slice-donut {
  stroke: #86797d;
}
.ct-series-l .ct-slice-pie, .ct-series-l .ct-slice-donut-solid, .ct-series-l .ct-area {
  fill: #86797d;
}

.ct-series-m .ct-point, .ct-series-m .ct-line, .ct-series-m .ct-bar, .ct-series-m .ct-slice-donut {
  stroke: #b2c326;
}
.ct-series-m .ct-slice-pie, .ct-series-m .ct-slice-donut-solid, .ct-series-m .ct-area {
  fill: #b2c326;
}

.ct-series-n .ct-point, .ct-series-n .ct-line, .ct-series-n .ct-bar, .ct-series-n .ct-slice-donut {
  stroke: #6188e2;
}
.ct-series-n .ct-slice-pie, .ct-series-n .ct-slice-donut-solid, .ct-series-n .ct-area {
  fill: #6188e2;
}

.ct-series-o .ct-point, .ct-series-o .ct-line, .ct-series-o .ct-bar, .ct-series-o .ct-slice-donut {
  stroke: #a748ca;
}
.ct-series-o .ct-slice-pie, .ct-series-o .ct-slice-donut-solid, .ct-series-o .ct-area {
  fill: #a748ca;
}

.ct-square {
  display: block;
  position: relative;
  width: 100%;
}
.ct-square:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 100%;
}
.ct-square:after {
  content: "";
  display: table;
  clear: both;
}
.ct-square > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.ct-minor-second {
  display: block;
  position: relative;
  width: 100%;
}
.ct-minor-second:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 93.75%;
}
.ct-minor-second:after {
  content: "";
  display: table;
  clear: both;
}
.ct-minor-second > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.ct-major-second {
  display: block;
  position: relative;
  width: 100%;
}
.ct-major-second:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 88.8888888889%;
}
.ct-major-second:after {
  content: "";
  display: table;
  clear: both;
}
.ct-major-second > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.ct-minor-third {
  display: block;
  position: relative;
  width: 100%;
}
.ct-minor-third:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 83.3333333333%;
}
.ct-minor-third:after {
  content: "";
  display: table;
  clear: both;
}
.ct-minor-third > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.ct-major-third {
  display: block;
  position: relative;
  width: 100%;
}
.ct-major-third:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 80%;
}
.ct-major-third:after {
  content: "";
  display: table;
  clear: both;
}
.ct-major-third > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.ct-perfect-fourth {
  display: block;
  position: relative;
  width: 100%;
}
.ct-perfect-fourth:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 75%;
}
.ct-perfect-fourth:after {
  content: "";
  display: table;
  clear: both;
}
.ct-perfect-fourth > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.ct-perfect-fifth {
  display: block;
  position: relative;
  width: 100%;
}
.ct-perfect-fifth:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 66.6666666667%;
}
.ct-perfect-fifth:after {
  content: "";
  display: table;
  clear: both;
}
.ct-perfect-fifth > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.ct-minor-sixth {
  display: block;
  position: relative;
  width: 100%;
}
.ct-minor-sixth:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 62.5%;
}
.ct-minor-sixth:after {
  content: "";
  display: table;
  clear: both;
}
.ct-minor-sixth > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.ct-golden-section {
  display: block;
  position: relative;
  width: 100%;
}
.ct-golden-section:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 61.804697157%;
}
.ct-golden-section:after {
  content: "";
  display: table;
  clear: both;
}
.ct-golden-section > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.ct-major-sixth {
  display: block;
  position: relative;
  width: 100%;
}
.ct-major-sixth:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 60%;
}
.ct-major-sixth:after {
  content: "";
  display: table;
  clear: both;
}
.ct-major-sixth > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.ct-minor-seventh {
  display: block;
  position: relative;
  width: 100%;
}
.ct-minor-seventh:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 56.25%;
}
.ct-minor-seventh:after {
  content: "";
  display: table;
  clear: both;
}
.ct-minor-seventh > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.ct-major-seventh {
  display: block;
  position: relative;
  width: 100%;
}
.ct-major-seventh:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 53.3333333333%;
}
.ct-major-seventh:after {
  content: "";
  display: table;
  clear: both;
}
.ct-major-seventh > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.ct-octave {
  display: block;
  position: relative;
  width: 100%;
}
.ct-octave:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 50%;
}
.ct-octave:after {
  content: "";
  display: table;
  clear: both;
}
.ct-octave > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.ct-major-tenth {
  display: block;
  position: relative;
  width: 100%;
}
.ct-major-tenth:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 40%;
}
.ct-major-tenth:after {
  content: "";
  display: table;
  clear: both;
}
.ct-major-tenth > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.ct-major-eleventh {
  display: block;
  position: relative;
  width: 100%;
}
.ct-major-eleventh:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 37.5%;
}
.ct-major-eleventh:after {
  content: "";
  display: table;
  clear: both;
}
.ct-major-eleventh > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.ct-major-twelfth {
  display: block;
  position: relative;
  width: 100%;
}
.ct-major-twelfth:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 33.3333333333%;
}
.ct-major-twelfth:after {
  content: "";
  display: table;
  clear: both;
}
.ct-major-twelfth > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.ct-double-octave {
  display: block;
  position: relative;
  width: 100%;
}
.ct-double-octave:before {
  display: block;
  float: left;
  content: "";
  width: 0;
  height: 0;
  padding-bottom: 25%;
}
.ct-double-octave:after {
  content: "";
  display: table;
  clear: both;
}
.ct-double-octave > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.date-time-picker .table-layout {
  width: 80% !important;
  margin: 1rem;
}
.date-time-picker .clock .icon {
  fill: #b9b8d7;
  width: 2rem;
  height: 2rem;
  vertical-align: middle;
  margin: 1rem;
  padding: 1rem;
}
.date-time-picker .clock .icon.-up {
  transform: rotate(-90deg);
}
.date-time-picker .clock .icon.-down {
  transform: rotate(90deg);
}
.date-time-picker .clock .icon:hover {
  fill: #389eda;
}
.date-time-picker .clock .values > div:last-child span:hover {
  color: #389eda;
  background: none;
}

/*!
 * jQuery UI Datepicker 1.12.1
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/datepicker/#theming
 */
.ui-datepicker {
  background-color: #2c2c46;
  padding: 0.2rem 1rem;
  display: none;
  box-sizing: border-box;
}

.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding-top: 3px;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 4px;
  padding: 7px;
}

.ui-datepicker .ui-datepicker-prev {
  left: 2px;
}

.ui-datepicker .ui-datepicker-next {
  right: 2px;
}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
}

.ui-datepicker .ui-datepicker-current-day a,
.ui-datepicker .ui-datepicker-today a {
  background: #2383bc;
}

.ui-datepicker .ui-state-active {
  color: #fff;
}

.ui-datepicker .ui-datepicker-prev span {
  border-width: 4px 9px 4px 0;
  border-color: transparent white transparent transparent;
}

.ui-datepicker .ui-datepicker-next span {
  border-width: 4px 0 4px 9px;
  border-color: transparent transparent transparent white;
}

.ui-datepicker .ui-datepicker-title {
  margin: 0 2.3em;
  line-height: 1.8em;
  text-align: center;
  color: #fff;
  font-weight: 600;
}

.ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: 1px 0;
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  width: 45%;
}

.ui-datepicker table {
  width: 100%;
  font-size: 1.3rem;
  border-collapse: collapse;
  margin: 0 0 0.4em;
}

.ui-datepicker th {
  padding: 0;
  text-align: center;
  font-weight: bold;
  border: 0;
  line-height: 25px;
  color: #fff;
}

.ui-datepicker td {
  border: 0;
  width: 33px;
  padding: 0;
  line-height: 22px;
}

.ui-datepicker td span,
.ui-datepicker td a {
  display: block;
  text-align: center;
  color: #b9b8d7;
  line-height: 22px;
  font-weight: 600;
  width: 22px;
}

.ui-datepicker td a {
  border-radius: 50%;
  margin: 0 3px;
}

.ui-datepicker td a:hover {
  background: #494965;
}

.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  margin: 0.7em 0 0 0;
  padding: 0 0.2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

.ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: 0.5em 0.2em 0.4em;
  cursor: pointer;
  padding: 0.2em 0.6em 0.3em 0.6em;
  width: auto;
  overflow: visible;
}

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: left;
}

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
  width: auto;
}

.ui-datepicker-multi .ui-datepicker-group {
  float: left;
}

.ui-datepicker-multi .ui-datepicker-group table {
  width: 95%;
  margin: 0 auto 0.4em;
}

.ui-datepicker-multi-2 .ui-datepicker-group {
  width: 50%;
}

.ui-datepicker-multi-3 .ui-datepicker-group {
  width: 33.3%;
}

.ui-datepicker-multi-4 .ui-datepicker-group {
  width: 25%;
}

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0;
}

.ui-datepicker-multi .ui-datepicker-buttonpane {
  clear: left;
}

.ui-datepicker-row-break {
  clear: both;
  width: 100%;
  font-size: 0;
}

/* RTL support */
.ui-datepicker-rtl {
  direction: rtl;
}

.ui-datepicker-rtl .ui-datepicker-prev {
  right: 2px;
  left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next {
  left: 2px;
  right: auto;
}

.ui-datepicker-rtl .ui-datepicker-prev:hover {
  right: 1px;
  left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next:hover {
  left: 1px;
  right: auto;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane {
  clear: right;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button {
  float: left;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
  float: right;
}

.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px;
}

/* Icons */
.ui-datepicker .ui-icon {
  display: block;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
  left: 0.5em;
  top: 0.3em;
}

button > .dropdown-button {
  width: 100%;
  height: 100%;
  display: block;
}
button > .dropdown-button .icon {
  margin-top: 3px;
  vertical-align: sub;
  margin-right: 0.5rem;
  width: 1.5rem;
  height: 1.5rem;
}

button.border {
  display: flex;
  align-items: center;
  line-height: 3rem;
  box-shadow: none;
  box-shadow: 0 0 0px 1px #2383bc inset;
  border-radius: 50rem;
  padding: 0 2rem;
  color: #2383bc;
  font-weight: 600;
  text-transform: uppercase;
}
button.border svg {
  height: 1rem;
  padding-right: 0.25rem;
  fill: #2383bc;
}

.button-disabled {
  opacity: 0.65;
  pointer-events: none;
}

.card {
  display: flex;
  flex-direction: column;
  background-color: white;
  border: 1px solid #ededed;
  box-shadow: 2px 2px 2px 1px #ededed;
  margin: 0 1rem 1.5rem 0;
  position: relative;
}
.card indago-select-options {
  margin-right: 2rem;
}
.card indago-select-options:last-child {
  margin-right: 0;
}
.card indago-loading-spinner {
  flex: 1 0 auto;
}
.card > section {
  padding: 0.8rem 2rem 1.6rem 2rem;
}
.card section.header {
  padding: 1.6rem 2rem 0.8rem 2rem;
  min-height: fit-content;
}
.card .calendarIcon svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: #b2b2b2;
  vertical-align: -0.2rem;
}
.card .controls {
  float: right;
}
.card .header {
  font-size: 1.8rem;
  font-weight: 700;
}

card .content {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  flex-grow: 1;
}
card .content .wiget-well-icon {
  width: 100%;
  height: 100%;
}

footer.popover {
  border-top: 1px solid #535385;
  margin: 0.2rem 1.5rem;
  text-align: right;
  padding: 1rem 0;
}
footer.popover .main-button {
  margin-left: 1rem;
}
footer.popover .asset-label {
  text-align: left;
  color: white;
  font-weight: 700;
  line-height: 80%;
}
footer.popover .asset-name {
  float: left;
}
footer.popover .skip {
  float: right;
  color: #389eda;
  font-weight: 700;
}
footer.popover .icon {
  fill: #389eda;
  width: 1.4rem;
  height: 1.4rem;
}

header.title {
  border-left: 6px solid #2c2c46;
  box-shadow: 0 1px 0px 0px #ededed;
  padding: 1rem 1.6rem;
  height: 3rem;
}
header.title h2 {
  font-size: 1.8rem;
  font-weight: 600;
  display: inline-block;
  margin: 0;
  letter-spacing: -0.4px;
  line-height: 3rem;
}

header.popover {
  background: #222236;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #535385;
  font-size: 1.5rem;
  border-radius: 0.4rem 0.4rem 0 0;
  line-height: 3.2rem;
}
header.popover .title {
  text-transform: uppercase;
  font-weight: 700;
}
header.popover.manufacturing-order .orderNumber {
  float: right;
  font-weight: 600;
}

table.indago-table {
  width: 100%;
  border-collapse: collapse;
}
table.indago-table thead > tr:nth-child(1) {
  background-color: #2c2c46;
}
table.indago-table th {
  color: #fafefd;
  font-weight: 400;
  text-align: left;
  padding: 0.7rem 1.6rem;
}
table.indago-table tbody tr:nth-of-type(odd) {
  background-color: #f2f2f2;
}
table.indago-table tbody tr.isDirectional {
  border: 1px solid #ffbb4d;
  background-color: #fff6e8;
}
table.indago-table tbody tr.onHold {
  border: 1px solid #f6b4c8;
  background-color: #fdf4f7;
}
table.indago-table tbody td {
  padding: 0.7rem 1.6rem;
  line-height: 1.6rem;
}
table.indago-table .cell__numeric {
  text-align: right;
}
table.indago-table .cell__fit-content {
  white-space: nowrap;
}

table.-sticky-headers th {
  position: sticky;
  top: 0;
  background-color: #2c2c46;
}

@media (max-width: 850px) {
  table.-responsive table,
table.-responsive tbody,
table.-responsive tr,
table.-responsive td {
    display: block;
  }
  table.-responsive thead {
    display: none;
  }
  table.-responsive tr {
    margin-bottom: 1.5rem;
    margin-right: 1.5rem;
    border: 1px solid #e5e5e5;
    box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.68);
  }
  table.-responsive td {
    border-bottom: 1px solid #e5e5e5;
  }
  table.-responsive td:before {
    display: inline-block;
    margin-right: 1rem;
    content: "" attr(data-label) ":";
    font-weight: 700;
  }
}

table.indago-table.-multi-header thead > tr:nth-child(n+2) {
  background-color: transparent;
}
table.indago-table.-multi-header thead > tr:nth-child(n+2) th {
  color: #030303;
}

table.indago-table.-centered th,
table.indago-table.-centered td {
  text-align: center;
}

table.indago-table.-large th,
table.indago-table.-large td {
  padding: 1.5rem 1rem;
}

table.indago-table.-grid thead tr:nth-child(n+2),
table.indago-table.-grid tbody tr {
  border-bottom: 1px solid #ededed;
}
table.indago-table.-grid th:nth-child(n+2),
table.indago-table.-grid td:nth-child(n+2) {
  border-left: 1px solid #ededed;
}
table.indago-table.-grid tbody tr {
  background-color: #fafefd;
  font-weight: 600;
}
table.indago-table.-grid tbody tr td:nth-child(1) {
  color: #2383bc;
}

div.validation-error,
label.validation-error,
span.validation-error {
  color: red !important;
  font-size: 1.4rem;
}

input.validation-error,
select.validation-error,
textarea.validation-error,
fieldinput.validation-error {
  border-color: red !important;
}

indago-popover {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  font-weight: 400;
  background-color: #2c2c46;
  border-radius: 0.4rem;
  color: #b9b8d7;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.3);
  z-index: 11;
  cursor: pointer;
}
indago-popover.-open {
  visibility: visible;
  opacity: 1;
  z-index: 990;
}
indago-popover:before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1rem;
}
indago-popover.-bottom:before {
  bottom: -1rem;
}
indago-popover.-top:before {
  top: -1rem;
}
indago-popover:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
}
indago-popover.-bottom:after {
  bottom: -0.9rem;
  border-style: solid;
  border-width: 1rem 1rem 0 1rem;
  border-color: #2c2c46 transparent transparent transparent;
}
indago-popover.-top:after {
  top: -0.9rem;
  border-style: solid;
  border-width: 0 1rem 1rem 1rem;
  border-color: transparent transparent #222236 transparent;
}
indago-popover.-left:after {
  top: 1.4rem;
  left: -0.5rem;
  border-style: solid;
  border-width: 0.8rem 1rem 0.8rem 0;
  border-color: transparent #222236 transparent transparent;
}
indago-popover.-top.-left:after {
  top: -0.9rem;
  left: 2rem;
  border-style: solid;
  border-width: 0 1rem 1rem 1rem;
  border-color: transparent transparent #222236 transparent;
}
indago-popover.-top.-right:after {
  top: -0.9rem;
  left: auto;
  right: 1rem;
  border-style: solid;
  border-width: 0 1rem 1rem 1rem;
  border-color: transparent transparent #222236 transparent;
}

action-menu {
  white-space: nowrap;
}

action-menu-item.-btn {
  white-space: nowrap;
}
action-menu-item.-btn > div {
  display: flex;
  align-items: center;
}

.indago-action-menu .indago-action-menu__trigger {
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0 0.4rem;
}
.indago-action-menu .indago-action-menu__trigger .indago-action-menu__trigger-icon {
  display: block;
  margin: 0;
  width: var(--action-menu-icon-size, 2rem);
  height: var(--action-menu-icon-size, 2rem);
  fill: var(--action-menu-icon-color, var(--content-text-strong));
}
.indago-action-menu .indago-action-menu__trigger:hover .indago-action-menu__trigger-icon {
  fill: var(--action-menu-icon-color-hover, var(--action-menu-icon-color, var(--content-text-strong)));
}

tooltip {
  position: absolute;
  background-color: #ffffff;
  border: 1px solid #444444;
  padding: 10px;
  font-size: 14px;
  font-family: "Source Sans Pro";
  opacity: 0;
}
tooltip.-show {
  opacity: 1;
}

.loading {
  width: 100%;
  height: 50%;
  position: absolute;
}

indago-chart-toggle .toggle-option {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  border-radius: 5rem;
  padding: 1.2rem 2rem;
  transition: all 0.2s ease-in-out;
}
indago-chart-toggle .toggle-option:hover {
  background: #fdfdfd;
  box-shadow: 0 1px 1px 0px rgba(0, 0, 0, 0.1) inset;
  text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
}
indago-chart-toggle .toggle-option.-selected {
  background: #f8f8f8;
  box-shadow: 0 1px 1px 0px rgba(0, 0, 0, 0.15) inset;
}
indago-chart-toggle .toggle-option:first-child {
  margin-right: 1rem;
}
indago-chart-toggle .toggle-option .optionValue {
  font-size: 2.3rem;
  color: #696969;
}
indago-chart-toggle .toggle-option .option {
  color: #ababab;
  font-size: 1.4rem;
  margin-left: 0.4rem;
}
indago-chart-toggle .toggle-option .difference {
  font-weight: 700;
  margin-left: 1.3rem;
}
indago-chart-toggle .toggle-option .difference .iconWrapper {
  border: 2px solid;
  border-radius: 50%;
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  text-align: center;
}
indago-chart-toggle .toggle-option .difference .iconWrapper .icon {
  width: 1rem;
  height: 1rem;
}
indago-chart-toggle .toggle-option .difference.-positive {
  color: #31a853;
}
indago-chart-toggle .toggle-option .difference.-positive .iconWrapper {
  border-color: #31a853;
}
indago-chart-toggle .toggle-option .difference.-positive .icon {
  fill: #31a853;
}
indago-chart-toggle .toggle-option .difference.-negative {
  color: #b62d2c;
}
indago-chart-toggle .toggle-option .difference.-negative .iconWrapper {
  border-color: #b62d2c;
  transform: rotate(180deg);
}
indago-chart-toggle .toggle-option .difference.-negative .icon {
  fill: #b62d2c;
}

.datepicker-container {
  display: block;
  position: relative;
  height: 100%;
}
.datepicker-container > header {
  background: #222236;
  border-bottom: 1px solid #535385;
  border-radius: 0.4rem 0.4rem 0 0;
  line-height: 3.5rem;
  display: flex;
  align-items: center;
}
.datepicker-container > header > div {
  width: 50%;
  text-align: center;
}
.datepicker-container > header .icon {
  fill: #b9b8d7;
  width: 1.6rem;
  height: 1.6rem;
}
.datepicker-container > header .icon.-active {
  fill: #389eda;
}
.datepicker-container > section {
  position: relative;
  height: 192px;
}
.datepicker-container > section .clock {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #2c2c46;
}
.datepicker-container > section .clock .icon {
  fill: #b9b8d7;
  width: 2rem;
  height: 2rem;
  vertical-align: middle;
  margin: 1rem;
  padding: 1rem;
}
.datepicker-container > section .clock .icon.-up {
  transform: rotate(-90deg);
}
.datepicker-container > section .clock .icon.-down {
  transform: rotate(90deg);
}
.datepicker-container > section .clock .icon:hover {
  fill: #389eda;
}
.datepicker-container > section .clock .values > div:last-child span:hover {
  color: #389eda;
  background: none;
}
.datepicker-container > section .table-layout {
  width: 80% !important;
  margin: 1rem;
  display: table;
  font-size: 3rem;
}
.datepicker-container > section .increment, .datepicker-container > section .values, .datepicker-container > section .decrement {
  display: table-row;
}
.datepicker-container > section .increment > div, .datepicker-container > section .values > div, .datepicker-container > section .decrement > div {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}
.datepicker-container > section .increment > div > i, .datepicker-container > section .values > div > i, .datepicker-container > section .decrement > div > i {
  padding: 1rem;
}
.datepicker-container > section .increment > div > i:hover(), .datepicker-container > section .values > div > i:hover(), .datepicker-container > section .decrement > div > i:hover() {
  background-color: lightgray;
}
.datepicker-container > section .values > div:last-child() span {
  padding: 1rem;
}
.datepicker-container > section .values > div:last-child() span:hover() {
  background-color: lightgray;
}

indago-gauge {
  position: relative;
  width: 16rem;
  height: 8rem;
}
indago-gauge .wheelWrapper {
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: relative;
}
indago-gauge .wheelWrapper .grayArea {
  background: #f3f3f3;
  width: 87%;
  height: 176%;
  border-radius: 50%;
  position: absolute;
  z-index: 3;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid white;
}
indago-gauge .wheelWrapper .grayArea:after {
  content: "";
  width: 35%;
  height: 35%;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
indago-gauge .wheelWrapper .colorArea {
  position: relative;
  width: 100%;
  height: 200%;
  border-radius: 50%;
  overflow: hidden;
}
indago-gauge .wheelWrapper .colorArea:before {
  box-sizing: border-box;
  transform: scale(1);
  -webkit-filter: blur(10px);
  filter: blur(10px);
  content: "";
  display: block;
  width: 200%;
  height: 200%;
  position: absolute;
  top: -50%;
  left: -50%;
  padding-top: 100%;
  z-index: 1;
  background-image: linear-gradient(270deg, transparent 50%, #8a2b2c 50%), linear-gradient(270deg, transparent 50%, #d87149 50%), linear-gradient(150deg, transparent 50%, #31923f 50%), linear-gradient(120deg, transparent 50%, #7ca03a 50%), linear-gradient(90deg, transparent 50%, #fbc133 50%), linear-gradient(60deg, transparent 50%, #ef9142 50%), linear-gradient(30deg, transparent 50%, #d87149 50%), linear-gradient(0deg, transparent 50%, #8a2b2c 50%);
  background-clip: content-box, content-box, padding-box, padding-box, padding-box, padding-box, padding-box, padding-box;
}
indago-gauge .needle {
  position: absolute;
  bottom: -0.9rem;
  right: 44%;
  width: 7.5rem;
  height: 2rem;
  transform-origin: 88% 50%;
  z-index: 3;
}
indago-gauge .needle .icon {
  width: 4rem;
}

indago-legend {
  display: flex;
}
indago-legend.-column {
  flex-direction: column;
}
indago-legend.-column.-reverse {
  flex-direction: column-reverse;
}
indago-legend span:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 1rem;
  height: 1rem;
  margin-right: 5px;
  margin-left: 15px;
  background-color: black;
}

indago-option-toggle {
  display: inline-block;
  margin-right: 2rem;
}
indago-option-toggle > .wrapper {
  display: flex;
  flex-wrap: nowrap;
  border: 1px solid #b8d1e4;
  border-radius: 50vh;
  background-color: #fafafa;
  font-weight: 600;
}
indago-option-toggle .item {
  padding: 0.7rem 1.4rem;
  color: #2383bc;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
indago-option-toggle .item:hover {
  color: #46baff;
}
indago-option-toggle .item.-selected {
  color: white;
  background-color: #2383bc;
  border-radius: 50vh;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2) inset, 1px 2px 3px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}
indago-option-toggle .item.-disabled {
  pointer-events: none;
  color: #d4d4d4;
}
indago-option-toggle .item.-disabled.-selected {
  color: white;
  pointer-events: none;
}

indago-search-popover > form {
  position: relative;
  z-index: 9;
}
indago-search-popover > form.-expanded .wrapper {
  opacity: 1;
  visibility: visible;
  left: -32rem;
}
indago-search-popover > form .wrapper {
  background: #efefef;
  /* Old browsers */
  background: -moz-linear-gradient(top, #efefef 0%, #e2e2e2 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #efefef), color-stop(100%, #e2e2e2));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #efefef 0%, #e2e2e2 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #efefef 0%, #e2e2e2 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #efefef 0%, #e2e2e2 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #efefef 0%, #e2e2e2 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#000000",GradientType=0 );
  /* IE6-9 */
  border-radius: 4px;
  position: absolute;
  top: -1.8rem;
  left: -31rem;
  width: 28rem;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0px 3px 7px -1px rgba(0, 0, 0, 0.3);
  padding: 1rem;
  border: 1px solid #2383bc;
  text-align: center;
}
indago-search-popover > form .wrapper:after {
  content: "";
  position: absolute;
  top: 2rem;
  right: -1.2rem;
  width: 0;
  height: 0;
  border-top: 0.8rem solid transparent;
  border-bottom: 0.8rem solid transparent;
  border-left: 1.1rem solid #2383bc;
}
indago-search-popover > form .form {
  min-width: 26rem;
  margin: 4px 0;
}
indago-search-popover > form .main-button.-withSpinner {
  height: 3.5rem;
  margin-top: 1rem;
  padding: 0 1rem;
}
indago-search-popover > form .main-button.-withSpinner.-loading {
  width: 3.5rem;
}
indago-search-popover > form .icon {
  cursor: pointer;
  fill: #2383bc;
}
indago-search-popover > form .validation-error-list {
  text-align: left;
  margin: 0;
  padding: 0.6rem 2.2rem;
}
indago-search-popover > form .validation-warning-list {
  clear: both;
  text-align: left;
  margin: 0;
  padding: 0.6rem 2.2rem;
  color: #928e1c;
  font-style: italic;
  font-weight: 700;
}

indago-search-results-header {
  font-size: 1.7rem;
  font-weight: 400;
  align-items: center;
}
indago-search-results-header .emphasis {
  font-weight: 600;
  color: #2383bc;
}
indago-search-results-header .main-button {
  margin-left: 1rem;
}
@media print {
  indago-search-results-header {
    display: none;
  }
}

indago-select-options {
  margin: 0 1rem 0 1rem;
}
indago-select-options label {
  margin-right: 0.5rem;
}
indago-select-options select {
  font-size: inherit;
}
indago-select-options.-nakedDropdown {
  margin: 0;
  display: inline-block;
}
indago-select-options.-nakedDropdown label {
  color: #b2b2b2;
  font-weight: 600;
  margin-right: 0.5rem;
}
indago-select-options.-nakedDropdown select {
  background-color: #f1f8fc;
  background-position: calc(100% - 1rem);
  background-size: 1.1rem;
  border: 0;
  box-shadow: none;
  font-weight: 600;
  color: #2383bc;
  padding: 0.7rem 2.8rem 0.7rem 1.4rem;
  border-radius: 3rem;
}
indago-select-options.-nakedDropdown select:hover, indago-select-options.-nakedDropdown select:active {
  box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.15), 0 0 1px 0 #389eda inset;
  background-color: #e4f2fa;
}

div.indago-separator {
  display: flex;
  align-items: center;
  text-align: center;
}
div.indago-separator::before, div.indago-separator::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid black;
}
div.indago-separator > :first-child {
  margin: 0 2rem;
}

span.grid-cell-content-end {
  justify-self: self-end;
}

.indago-grid {
  display: grid;
  height: fit-content;
  grid-template-columns: repeat(10, 1fr);
}
.indago-grid div.grid-cell {
  padding: 0.8rem 0.8rem;
  display: flex;
}
.indago-grid .grid-cell__label {
  font-weight: 700;
}
.indago-grid .grid-header {
  display: contents;
  color: white;
}
.indago-grid .grid-header .grid-cell {
  position: sticky;
  top: 0;
}
.indago-grid .grid-header div {
  background: #2c2c46;
  min-height: 3.5rem;
  align-items: center;
  padding: 0.4rem 0.8rem;
}
.indago-grid .grid-content {
  display: contents;
}
.indago-grid .grid-content.-col-3 .cell:nth-child(6n+1),
.indago-grid .grid-content.-col-3 .cell:nth-child(6n+2),
.indago-grid .grid-content.-col-3 .cell:nth-child(6n+3) {
  background: #f2f2f2;
}
.indago-grid .grid-content .grid-cell {
  background: inherit;
  justify-content: flex-start;
  align-items: center;
}
.indago-grid .grid-content .grid-cell.errors {
  grid-column: 1/11;
  background-color: inherit;
}
.indago-grid .grid-content .grid-cell.errors ul {
  margin: 0;
}
.indago-grid .grid-content .grid-cell.-numeric {
  justify-content: flex-end;
}
.indago-grid .grid-content-4-col div:nth-child(8n+1),
.indago-grid .grid-content-4-col div:nth-child(8n+2),
.indago-grid .grid-content-4-col div:nth-child(8n+3),
.indago-grid .grid-content-4-col div:nth-child(8n+4) {
  background: #f2f2f2;
}
.indago-grid .grid-content-1-col div:nth-child(2n+1) {
  background: #f2f2f2;
}

.report-header {
  padding-right: 2rem;
  padding-left: 3rem;
  padding-bottom: 2rem;
  padding-top: 2rem;
  height: 9.0625rem;
}
.report-header div.grid-cell {
  padding: 1.5rem 0.8rem;
  display: flex;
}
.report-header div.grid-cell-information1 {
  padding: 1.5rem 0.8rem;
  display: flex;
  padding: 0.1rem;
}
.report-header div.grid-cell-information2 {
  padding: 1.5rem 0.1rem 0rem 2rem;
  width: 25rem;
  display: flex;
}
.report-header img.grid-cell {
  top: 174px;
  left: 286px;
  height: 66px;
  width: 130px;
  padding-top: 2rem;
}
.report-header div.grid-cell-MFRInfo {
  width: 220px;
  padding: 0rem;
  height: 9.0625rem;
}
.report-header div.grid-cell-information {
  height: 9.0625rem;
  width: 400px;
}
.report-header div.grid-cell-information .td {
  width: 126px;
}
.report-header div.grid-cell-information .issue-source {
  width: 88px;
}
.report-header div.grid-cell-information .img {
  height: 100px;
  width: 100px;
}
.report-header div.grid-cell-information3 {
  height: 9.0625rem;
  width: 52rem;
}
.report-header div.grid-cell-information3 .td {
  width: 126px;
}
.report-header div.grid-cell-information3 .issue-source {
  width: 88px;
}
.report-header div.grid-cell-information3 .img {
  height: 80px;
  width: 80px;
}
.report-header div.grid-cell-information3 .secondColumn {
  padding-right: 24px;
}
.report-header div.grid-cell-QRCode {
  height: 10rem;
  width: 85px;
}
.report-header div.grid-cell-QRCode .td {
  width: 126px;
}
.report-header div.grid-cell-QRCode .issue-source {
  width: 88px;
}
.report-header div.grid-cell-QRCode .img {
  height: 80px;
  width: 80px;
}
.report-header div.grid-cell-information5 {
  padding: 1.5rem 0.8rem;
  display: flex;
  height: 9.0625rem;
  width: 150px;
  align-content: flex-end;
  padding-right: 8rem;
  padding-left: 5rem;
}
.report-header div.grid-cell-information5 .td {
  width: 150px;
}
.report-header .grid-content {
  display: contents;
}
.report-header .grid-content .grid-cell {
  background: white;
  justify-content: flex-start;
  align-items: center;
}
.report-header .grid-content .grid-cell.errors {
  grid-column: 1/11;
  background-color: inherit;
}
.report-header .grid-content .grid-cell.errors ul {
  margin: 0;
}
.report-header .grid-content .grid-cell-numeric {
  justify-self: self-end;
}
.report-header .grid-content .grid-cell-div {
  height: 9.0625rem;
  width: 130px;
  padding: 1.5rem 0.8rem;
  display: flex;
}
.report-header .grid-content .grid-cell-div {
  height: 9.0625rem;
  width: 130px;
  padding: 1.5rem 0.8rem;
  display: flex;
}
.report-header .grid-content-4-col div:nth-child(8n+1),
.report-header .grid-content-4-col div:nth-child(8n+2),
.report-header .grid-content-4-col div:nth-child(8n+3),
.report-header .grid-content-4-col div:nth-child(8n+4) {
  background: #f2f2f2;
}
.report-header .grid-content-1-col div:nth-child(2n+1) {
  background: #f2f2f2;
}

.material-requirments-body {
  padding-right: 2rem;
  padding-left: 3rem;
  padding-bottom: 2rem;
  padding-top: 2rem;
}
.material-requirments-body div.grid-cell {
  padding: 1.5rem 0.8rem;
  display: flex;
}
.material-requirments-body div.grid-cell1 {
  padding: 1.5rem 0.8rem;
  display: flex;
  height: 8rem;
  padding-top: 5rem;
  border-left: 1px solid #bebebe;
  border-bottom: 1px solid #bebebe;
  border-right: 1px solid #bebebe;
}
.material-requirments-body div.grid-cell2 {
  padding: 1.5rem 0.8rem;
  display: flex;
  height: 8rem;
  padding-top: 5rem;
  border-left: 1px solid #bebebe;
  border-bottom: 1px solid #bebebe;
  border-right: 1px solid #bebebe;
  justify-content: right;
}

.indago-pagination {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.indago-pagination button {
  border-radius: 0;
  border: solid 1px #bebebe;
  box-shadow: none;
  padding: 0 1.6rem;
  min-width: 4.2rem;
}
.indago-pagination button:hover {
  background-color: #ededed;
  color: #2383bc;
}
.indago-pagination button.-active,
.indago-pagination button.-active:hover,
.indago-pagination button.-active:focus {
  background-color: #2383bc;
  color: #fafefd;
}
.indago-pagination button:first-of-type {
  border-right: none;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.indago-pagination button:last-of-type {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.indago-pagination .page-btn {
  box-shadow: none;
  border-right: none;
}
.indago-pagination .ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.6rem;
  padding: 0 0.4rem;
  border: solid 1px #bebebe;
  border-right: none;
  color: #bebebe;
  user-select: none;
}
@media (pointer: coarse) {
  .indago-pagination button {
    min-height: 4.4rem;
    min-width: 4.8rem;
    padding: 0 2rem;
  }
  .indago-pagination .ellipsis {
    min-height: 4.4rem;
    min-width: 3.2rem;
  }
}
@media (pointer: coarse) and (orientation: portrait) {
  .indago-pagination button {
    min-height: 5.2rem;
    min-width: 5.6rem;
    padding: 0 2.4rem;
    font-size: 1.6rem;
  }
  .indago-pagination .ellipsis {
    min-height: 5.2rem;
    min-width: 3.6rem;
    font-size: 1.6rem;
  }
}
@media print {
  .indago-pagination {
    display: none;
  }
}

indago-grid-table {
  display: grid;
  height: calc(100% - 2 * 3.4rem);
  overflow: hidden;
  overflow-y: auto;
}
indago-grid-table .row:nth-child(even) div.grid-cell {
  background: #f2f2f2;
}
indago-grid-table .row {
  display: contents;
}
indago-grid-table .row .grid-cell {
  padding: 0.4rem 0;
}

.ct-series .ct-bar.stack-index-0 {
  stroke: #454D82;
}
.ct-series .ct-bar.stack-index-1 {
  stroke: #556CAC;
}
.ct-series .ct-bar.stack-index-2 {
  stroke: #749FC3;
}
.ct-series .ct-bar.stack-index-3 {
  stroke: #83C5D8;
}
.ct-series .ct-bar.stack-index-4 {
  stroke: #A0D5CF;
}
.ct-series .ct-bar.stack-index-5 {
  stroke: #C4EFE1;
}
.ct-series .ct-bar.stack-index-6 {
  stroke: red;
}
.ct-series .ct-bar.stack-index-7 {
  stroke: blue;
}
.ct-series .ct-bar.stack-index-8 {
  stroke: yellow;
}

indago-banner {
  flex-flow: row;
  align-items: center;
  width: auto;
  margin-bottom: 1rem;
  padding: 1rem;
  font-size: 1.75rem;
  border-radius: 0.25rem;
  height: 0;
  display: none;
  border: 1px solid black;
  background-color: lightgray;
}
indago-banner .message {
  flex-grow: 1;
}
indago-banner .controls {
  margin-left: 5px;
}
indago-banner.-visible {
  height: auto;
  display: flex;
}
indago-banner.-informational {
  border-color: black;
  background-color: lightgray;
}
indago-banner.-success {
  border-color: green;
  background-color: lightgreen;
}
indago-banner.-warning {
  border-color: orange;
  background-color: lightsalmon;
}
indago-banner.-error {
  border-color: #b62d2c;
  background-color: #f4e0dd;
  color: #b62d2c;
}

ul.indago-selector,
ul.indago-selector li {
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: space-between;
}

ul.indago-selector li {
  display: flex;
  align-items: center;
  padding: 0.8rem;
  margin: 2px 0px;
  background: #f0f0f0;
}
ul.indago-selector li span:first-child {
  min-width: 0;
}
ul.indago-selector li span:last-child {
  flex-shrink: 0;
  white-space: nowrap;
  padding-left: 0.8rem;
}
ul.indago-selector li.-selected {
  color: #fafefd;
  background: #2383bc;
}

ul.indago-selector li:hover {
  background: #ededed;
}

ul.indago-selector li:hover.-selected {
  background: #2383bc;
}

.primary-flat-button {
  width: 100%;
  height: 100%;
}
.primary-flat-button .label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}
.primary-flat-button button {
  width: 100%;
}
.primary-flat-button button:focus {
  background-color: #2383bc;
}
.primary-flat-button button:focus .label {
  color: #fafefd;
}
.primary-flat-button.primary-flat-button--save {
  width: fit-content;
}

.items-table {
  display: table;
  width: 100%;
}
.items-table .head {
  display: table-header-group;
}
.items-table .head .cell:last-child {
  width: 40%;
}
.items-table .row {
  display: table-row;
  position: relative;
}
.items-table .cell {
  display: table-cell;
  padding: 1rem 2rem;
}
.items-table .cell.-nowrap {
  white-space: nowrap;
}
.items-table.-orderTabs {
  display: block;
  height: 100%;
}
.items-table.-orderTabs .cell {
  width: 17%;
  display: inline-block;
}
.items-table.-orderTabs .cell:nth-child(1) {
  width: 18%;
}
.items-table.-orderTabs .cell:nth-child(2) {
  width: 22%;
}
.items-table.-orderTabs .cell:nth-child(3) {
  width: 13%;
}
.items-table.-orderTabs .cell:nth-child(4) {
  width: 4%;
}
.items-table.-orderTabs .cell:nth-child(5) {
  width: 4%;
}
.items-table.-orderTabs .cell:last-child {
  width: auto;
}
.items-table.-orderTabs .head {
  background: #2c2c46;
  display: block;
}
.items-table.-orderTabs .head .cell {
  color: white;
  padding: 0.7rem 1.6rem;
}
.items-table.-orderTabs .rowGroup {
  height: calc(100% - 3rem);
  overflow-y: auto;
}
.items-table.-orderTabs .row {
  display: block;
}
.items-table.-orderTabs .row:nth-of-type(even) {
  background-color: #f2f2f2;
}
.items-table.-orderTabs .row .cell {
  padding: 0.7rem 1.6rem;
}
@media (max-width: 850px) {
  .items-table.-orderTabs .head {
    display: none;
  }
  .items-table.-orderTabs .row {
    display: table-row;
    margin-bottom: 1.5rem;
    display: block;
  }
  .items-table.-orderTabs .cell {
    display: block;
  }
  .items-table.-orderTabs .cell:before {
    display: inline-block;
    margin-right: 1rem;
    content: "" attr(data-label) ":";
  }
  .items-table.-orderTabs .head {
    display: none;
  }
  .items-table.-orderTabs .rowGroup {
    height: 100%;
  }
  .items-table.-orderTabs .row {
    border: 1px solid #e5e5e5;
    box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.68);
  }
  .items-table.-orderTabs .row:nth-of-type(even) {
    background-color: white;
  }
  .items-table.-orderTabs .cell {
    border-bottom: 1px solid #e5e5e5;
    box-sizing: border-box;
  }
  .items-table.-orderTabs .cell:before {
    font-weight: 700;
  }
  .items-table.-orderTabs .cell:nth-child(n) {
    width: 100%;
  }
}
.items-table.-userSelection .cell:first-child() {
  min-width: 0;
}
.items-table.-userSelection .cell:nth-child(5) {
  min-width: 8rem;
}
.items-table.-userSelection .head {
  background: #2c2c46;
  color: white;
  font-weight: 700;
}
.items-table.-userSelection .row {
  background-color: white;
}
.items-table.-userSelection .cell {
  line-height: 4rem;
  padding: 0 1rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 10rem;
}
.items-table.-userSelection .cell.-userEmail {
  max-width: 17rem;
}
.items-table.-userSelection .cell.-userStatus {
  font-weight: 700;
  position: relative;
  padding-left: 2.8rem;
}
.items-table.-userSelection .cell.-userStatus:after {
  position: absolute;
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  top: 50%;
  left: 1.6rem;
  transform: translate(0, -50%);
  border-radius: 50%;
}
.items-table.-userSelection .cell.-Active {
  color: #31a853;
}
.items-table.-userSelection .cell.-Active:after {
  background: #31a853;
}
.items-table.-userSelection .cell.-Inactive {
  color: #b62d2c;
}
.items-table.-userSelection .cell.-Inactive:after {
  background: #b62d2c;
}
.items-table.-userManagement .head {
  background: #2c2c46;
  color: white;
}
.items-table.-userManagement .row {
  background-color: white;
}
.items-table.-userManagement .row .icon.-editRow {
  width: 2rem;
  float: right;
  margin: 1rem 0.5rem 0 0;
  cursor: pointer;
}
.items-table.-userManagement .cell {
  line-height: 4rem;
  padding: 0 1rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 10rem;
}
.items-table.-userManagement .cell.-userEmail {
  max-width: 17rem;
}
.items-table.-userManagement .cell.-userStatus {
  font-weight: 700;
  position: relative;
  padding-left: 2.8rem;
}
.items-table.-userManagement .cell.-userStatus:after {
  position: absolute;
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  top: 50%;
  left: 1.6rem;
  transform: translate(0, -50%);
  border-radius: 50%;
}
.items-table.-userManagement .cell.-Active {
  color: #31a853;
}
.items-table.-userManagement .cell.-Active:after {
  background: #31a853;
}
.items-table.-userManagement .cell.-Inactive {
  color: #b62d2c;
}
.items-table.-userManagement .cell.-Inactive:after {
  background: #b62d2c;
}
@media (max-width: 1180px) {
  .items-table.-userManagement .head .cell:last-child {
    width: 0;
    max-width: 0;
    min-width: 0;
  }
}
@media (max-width: 1000px) {
  .items-table.-userManagement .head {
    display: none;
  }
  .items-table.-userManagement .row {
    display: table-row;
    margin-bottom: 1.5rem;
    display: block;
  }
  .items-table.-userManagement .cell {
    display: block;
  }
  .items-table.-userManagement .cell:before {
    display: inline-block;
    margin-right: 1rem;
    content: "" attr(data-label) ":";
  }
  .items-table.-userManagement .cell {
    line-height: 3.5rem;
    max-width: 100%;
  }
  .items-table.-userManagement .cell.-userEmail {
    max-width: 100%;
  }
  .items-table.-userManagement .cell.-userStatus {
    padding-left: 1rem;
  }
  .items-table.-userManagement .cell.-userStatus:before {
    margin-right: 1.8rem;
  }
  .items-table.-userManagement .cell.-userStatus:after {
    left: 6rem;
  }
  .items-table.-userManagement .cell:before {
    font-weight: 700;
    color: #030303;
  }
  .items-table.-userManagement .row {
    box-shadow: 0 2px 4px -3px rgba(0, 0, 0, 0.68);
    padding: 0.5rem;
    border-left: 3px solid #2383bc;
  }
  .items-table.-userManagement .row .icon.-editRow {
    width: 2.1rem;
    height: 100%;
    display: block;
    float: none;
    position: absolute;
    right: 0;
    top: 0;
    margin: 0;
    padding: 0 0.9rem;
    background: #eaeaea;
  }
}
.items-table.-notificationManagement .head {
  background: #2c2c46;
  color: white;
}
.items-table.-notificationManagement .row {
  background-color: white;
}
.items-table.-notificationManagement .row .icon.-editRow {
  width: 2rem;
  float: right;
  margin: 1rem 0.5rem 0 0;
  fill: #2383bc;
  cursor: pointer;
}
.items-table.-notificationManagement .cell {
  line-height: 4rem;
  padding: 0 1rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  width: 10%;
}
.items-table.-notificationManagement .cell:nth-child(1),
.items-table.-notificationManagement .cell:nth-child(2) {
  line-height: 1.6rem;
  white-space: normal;
}
.items-table.-notificationManagement .cell:nth-child(1) {
  width: 25%;
}
.items-table.-notificationManagement .cell:nth-child(2) {
  width: 50%;
}
@media (max-width: 1180px) {
  .items-table.-notificationManagement .head .cell:last-child {
    width: 0;
    max-width: 0;
    min-width: 0;
  }
}
@media (max-width: 1000px) {
  .items-table.-notificationManagement .head {
    display: none;
  }
  .items-table.-notificationManagement .row {
    display: table-row;
    margin-bottom: 1.5rem;
    display: block;
  }
  .items-table.-notificationManagement .cell {
    display: block;
  }
  .items-table.-notificationManagement .cell:before {
    display: inline-block;
    margin-right: 1rem;
    content: "" attr(data-label) ":";
  }
  .items-table.-notificationManagement .cell {
    line-height: 3.5rem;
    max-width: 100%;
  }
  .items-table.-notificationManagement .cell:before {
    font-weight: 700;
    color: #030303;
  }
  .items-table.-notificationManagement .row {
    box-shadow: 0 2px 4px -3px rgba(0, 0, 0, 0.68);
    padding: 0.5rem;
    border-left: 3px solid #2383bc;
  }
  .items-table.-notificationManagement .row .icon.-editRow {
    width: 2.1rem;
    height: 100%;
    display: block;
    float: none;
    position: absolute;
    right: 0;
    top: 0;
    margin: 0;
    padding: 0 0.9rem;
    background: #eaeaea;
  }
}

shell-header {
  width: calc(100% - 2 *3.4rem);
  margin: 0 auto;
  order: 0;
  flex: 0 1 auto;
  align-self: auto;
}
shell-header.-title {
  border-bottom: 1px solid #dedede;
}
shell-header .view-title {
  margin: 0;
  float: left;
}
shell-header .user-actions {
  float: right;
}
shell-header .user-notifications {
  position: relative;
}
shell-header .user-id {
  display: inline-block;
}
shell-header .user-id .dropdown-button .icon:last-child() {
  width: 1rem;
}

.view-title {
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 6.5rem;
  letter-spacing: -0.1rem;
}

.user-actions {
  align-items: center;
  padding: 1rem 0;
}
.user-actions__organization {
  display: flex;
  align-items: center;
  font-weight: 600;
  padding: 0 0.8rem;
}

.separator {
  display: inline-block;
  background: #2c2c46;
}
.separator--vertical {
  width: 1px;
  height: 1em;
  margin: 0 8px;
  vertical-align: middle;
}

.user-help {
  display: none;
  cursor: pointer;
}
.user-help > .-help {
  vertical-align: middle;
}

.user-notifications {
  cursor: pointer;
  display: none;
}
.user-notifications > .-bell {
  width: 2rem;
  height: 2rem;
  vertical-align: middle;
}
.user-notifications > .badge {
  position: absolute;
  top: 0rem;
  right: 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
  font-size: 1.1rem;
  color: #fff;
  text-align: center;
  background-color: #2383bc;
  border-radius: 50%;
  border: 1px solid #fff;
}

.user-id {
  cursor: pointer;
}
.user-id .-person {
  vertical-align: -0.4rem;
  margin-right: 0.3rem;
}
.user-id .-filledArrow {
  width: 0.8rem;
  height: 0.8rem;
  margin-left: 0.3rem;
  transform: rotate(90deg);
}
.user-id button {
  position: relative;
}
.user-id indago-popover {
  background-color: #222236;
  width: 20rem;
  right: 10px;
  padding: 0.5rem 1.5rem;
  display: flex;
  flex-direction: column;
}
.user-id indago-popover:after {
  left: calc(100% - 2rem);
}
.user-id indago-popover .item {
  color: #fff;
  display: block;
  cursor: pointer;
  font-weight: 600;
  line-height: 4rem;
  flex: 1;
}
@media (max-width: 1180px) {
  .user-id indago-popover .item {
    flex: 0 1 50%;
  }
}
.user-id indago-popover .item:hover {
  color: #b9ddf2;
}
.user-id indago-popover .item:hover .icon {
  fill: #389eda;
}
.user-id indago-popover .item > .icon {
  fill: #2383bc;
  vertical-align: sub;
  margin-right: 0.5rem;
}

.nav-bar {
  position: relative;
  background-color: #222236;
  color: #2383bc;
}

@media print {
  .nav-bar-container {
    display: none !important;
  }
}
.nav-bar-container.expanded {
  width: 27rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: width 0.3s ease-in-out;
}
.nav-bar-container.expanded nav {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding-bottom: 5rem;
  scrollbar-width: thin;
  scrollbar-color: #44446c #222236;
}
.nav-bar-container.expanded nav::-webkit-scrollbar {
  width: 4px;
}
.nav-bar-container.expanded nav::-webkit-scrollbar-track {
  background: #222236;
}
.nav-bar-container.expanded nav::-webkit-scrollbar-thumb {
  background-color: #44446c;
  border-radius: 2px;
}
.nav-bar-container.expanded .logo-container.-full {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease-in-out;
}
.nav-bar-container.expanded .logo-container.-symbol {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out 0.3s;
}
.nav-bar-container.expanded .menu-item {
  overflow: hidden;
}
.nav-bar-container.expanded .sub-menu {
  max-height: 0px;
  transition: max-height 0.4s ease-in-out, visibility 0.4s ease-in-out;
}
.nav-bar-container.collapsed {
  width: 6.5rem;
  transition: width 0.3s ease-in-out;
}
.nav-bar-container.collapsed .logo-container.-full {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
  width: 10px;
  overflow: hidden;
}
.nav-bar-container.collapsed .logo-container.-symbol {
  width: 100%;
  height: 6.5rem;
  text-align: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease-in-out;
}
.nav-bar-container.collapsed .groupName {
  display: none;
}
.nav-bar-container.collapsed .sub-menu {
  position: fixed;
  left: 6.5rem;
  top: 6.5rem;
  width: 250px;
  box-shadow: 1px 2px 4px 0px rgba(0, 0, 0, 0.4);
  padding: 0.7rem;
  max-height: 0px;
  overflow-y: auto;
  transition: max-height 0.4s ease-in-out;
  scrollbar-width: thin;
  scrollbar-color: #44446c #2c2c46;
}
.nav-bar-container.collapsed .sub-menu::-webkit-scrollbar {
  width: 4px;
}
.nav-bar-container.collapsed .sub-menu::-webkit-scrollbar-thumb {
  background-color: #44446c;
  border-radius: 2px;
}
.nav-bar-container.collapsed .menu-item.-expanded .sub-menu {
  max-height: calc(100vh - 6.5rem);
}
.nav-bar-container.collapsed .icon.-expander {
  display: none;
}
.nav-bar-container.collapsed nav {
  position: absolute;
  top: 65px;
  left: 0;
  width: 100%;
}
.nav-bar-container.collapsed .menu-item {
  overflow: visible;
  text-align: center;
}
.nav-bar-container.collapsed .menu-item.-active:after {
  content: "";
  position: absolute;
  top: 1.4rem;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 7px 6px 0;
  border-color: transparent #2383bc transparent transparent;
}
.nav-bar-container.collapsed .itemWrapper {
  padding-left: 0;
}
.nav-bar-container.collapsed .sub-menu > .item {
  padding-left: 1.5rem;
  line-height: 3.5rem;
}
.nav-bar-container.collapsed .sub-menu > .item .bullet {
  margin-right: 1rem;
}
.nav-bar-container .navExpander {
  color: #b9b8d7;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 6.5rem;
  height: 5rem;
  cursor: pointer;
  background-color: #404065;
}
.nav-bar-container .navExpander > .-doubleArrow {
  fill: #b9b8d7;
  padding: 1.8rem 2.5rem;
  margin: 0;
  width: 1.5rem;
  height: 1.5rem;
}
.nav-bar-container .navExpander > .-expanded {
  transform: rotate(-180deg);
  transition: all 0.4s ease-in-out;
}
.nav-bar-container .navExpander > .-collapsed {
  transform: rotate(0deg);
  transition: all 0.4s ease-in-out;
}

.logo-container {
  background: #38385c;
  /* Old browsers */
  background: -moz-linear-gradient(top, #38385c 0%, #282842 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #38385c), color-stop(100%, #282842));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #38385c 0%, #282842 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #38385c 0%, #282842 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #38385c 0%, #282842 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #38385c 0%, #282842 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#000000",GradientType=0 );
  /* IE6-9 */
  border-bottom: 1px solid #383859;
}
.logo-container > .logo {
  box-sizing: border-box;
}
.logo-container.-full {
  overflow: hidden;
}
.logo-container.-full > .logo {
  padding: 2rem 2.8rem;
  height: 14.6rem;
}
.logo-container.-symbol {
  position: absolute;
  top: 0;
  left: 0;
}
.logo-container.-symbol > .logo {
  padding: 1.5rem;
  width: auto;
  height: 100%;
}

.menu-item {
  cursor: pointer;
  line-height: 4rem;
  font-weight: 600;
  border-bottom: 1px solid #383859;
  position: relative;
}
.menu-item > .itemWrapper {
  padding-left: 1.7rem;
  display: block;
  color: #b9b8d7;
  white-space: nowrap;
}
.menu-item > .itemWrapper > .icon {
  fill: #b9b8d7;
  width: 2rem;
  height: 1.8rem;
  margin: 0 0.5rem -0.4rem 0;
}
.menu-item > .itemWrapper > .-expander {
  margin: 15px 20px 0px 10px;
  position: absolute;
  right: 0;
  line-height: 2.2rem;
  width: 10px;
  height: 10px;
  fill: #b9b8d7;
  -webkit-transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
}
.menu-item > .itemWrapper:hover {
  background: #1a1a2a;
}
.menu-item.-active .-group {
  fill: #2383bc;
}
.menu-item.-active .groupName {
  color: #389eda;
}
.menu-item.-expanded .sub-menu {
  max-height: fit-content;
  visibility: visible;
}
.menu-item.-expanded .-expander {
  transform: rotate(90deg);
}

.sub-menu {
  background: #2c2c46;
  border-left: 2px solid #1b6591;
  z-index: 8;
  text-align: left;
  visibility: hidden;
  overflow: hidden;
}
.sub-menu > .item {
  color: #b9b8d7;
  display: block;
  padding-left: 2.5rem;
  font-weight: 600;
  white-space: nowrap;
}
.sub-menu > .item.-active {
  color: #389eda;
}
.sub-menu > .item.-active .bullet {
  background: #2383bc;
}
.sub-menu > .item .bullet {
  background: #4a4a75;
  border-radius: 50%;
  width: 0.5rem;
  height: 0.5rem;
  display: inline-block;
  margin: 0 1.5rem 0.2rem 0;
}

.select-labeled {
  font-size: inherit;
}

slab-list {
  float: left;
  line-height: 28px;
  font-size: 1.4rem;
  padding: 0rem 2rem;
  border-left: 1px solid #e0e0e0;
  margin: 1rem;
  display: table;
}

.slablist-header,
.slablist-content {
  display: table-row;
}
.slablist-header > .cell,
.slablist-content > .cell {
  display: table-cell;
  padding: 0 2.2rem;
}

.slablist-content:nth-child(even) {
  background-color: #f7f7f7;
}

.tab-container {
  border-bottom: 1px solid #2c2c46;
  margin: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  row-gap: 0.8rem;
}
.tab-container > .tabItem {
  margin-right: 1rem;
  padding: 0.3rem 1rem;
  font-weight: 700;
  position: relative;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}
.tab-container > .tabItem.-disabled {
  color: #8e8e8e;
}
.tab-container > .tabItem.-active {
  color: #2383bc;
  border-bottom: 3px solid #2383bc;
}
.tab-container > .tabItem.-active:after {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #2383bc;
}
.tab-container > .tabItem.-hasSearchResults:before {
  content: "!";
  color: white;
  font-weight: 700;
  font-size: 1.3rem;
  text-align: center;
  position: absolute;
  top: -0.3rem;
  right: -0.3rem;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 50%;
  background: #2383bc;
}
.tab-container.-orderDetail {
  margin: 1rem 0 1.5rem 0rem;
}

.work-center {
  text-align: center;
  border-radius: 3px;
  line-height: 3rem;
  box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.4);
  font-weight: 700;
}
.work-center:last-child .plus:after {
  display: none;
}
.work-center .icon.-lock {
  margin-right: 0;
  width: 1.3rem;
  height: 1.3rem;
  vertical-align: -1px;
  display: none;
}
.work-center.-lockedWc .icon.-lock {
  display: inline-block;
}
.work-center.-lockedWc .-workcenterStates .title {
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIGZpbGw9JyNiOWI4ZDcnIHZpZXdCb3g9JzAgLTMgMTYuNSAyNi42Jz48cGF0aCBkPSdNMTUuMSw4LjdoLTEuM1Y2YzAtMy4zLTIuNy02LTYtNnMtNiwyLjctNiw2djIuN0gwLjRDMC4yLDguNywwLDguOSwwLDkuMXYxMC44YzAsMSwwLjgsMS43LDEuNywxLjdoMTIuMWMxLDAsMS43LTAuOCwxLjctMS43VjkuMUMxNS41LDguOSwxNS4zLDguNywxNS4xLDguN3ogTTkuMSwxNy43YzAsMC4xLDAsMC4yLTAuMSwwLjNjLTAuMSwwLjEtMC4yLDAuMS0wLjMsMC4xSDYuOWMtMC4xLDAtMC4yLTAuMS0wLjMtMC4xYy0wLjEtMC4xLTAuMS0wLjItMC4xLTAuM2wwLjMtMi40QzYuMywxNC45LDYsMTQuNCw2LDEzLjljMC0xLDAuOC0xLjcsMS43LTEuN3MxLjcsMC44LDEuNywxLjdjMCwwLjYtMC4zLDEuMS0wLjcsMS40TDkuMSwxNy43eiBNMTEuMiw4LjdINC4zVjZjMC0xLjksMS41LTMuNCwzLjQtMy40czMuNCwxLjUsMy40LDMuNFY4Ljd6Jy8+PC9zdmc+") no-repeat;
  padding-left: 1.8rem;
  background-size: 1.5rem 1.9rem;
}
.work-center.-lockedWc .-workcenterStates .skip {
  pointer-events: none;
}
.work-center.-pending {
  background: #f7f7f7;
  /* Old browsers */
  background: -moz-linear-gradient(top, #f7f7f7 0%, #e6e6e6 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f7f7f7), color-stop(100%, #e6e6e6));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #f7f7f7 0%, #e6e6e6 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #f7f7f7 0%, #e6e6e6 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #f7f7f7 0%, #e6e6e6 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #f7f7f7 0%, #e6e6e6 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#000000",GradientType=0 );
  /* IE6-9 */
  border: 1px solid #bfbfbf;
  color: #5b5b5b;
}
.work-center.-pending .-lock {
  fill: #9c9c9c;
}
.work-center.-pending .plus {
  border-color: #bfbfbf;
}
.work-center.-completed {
  background: #b7f4a5;
  /* Old browsers */
  background: -moz-linear-gradient(top, #b7f4a5 0%, #9be099 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #b7f4a5), color-stop(100%, #9be099));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #b7f4a5 0%, #9be099 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #b7f4a5 0%, #9be099 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #b7f4a5 0%, #9be099 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #b7f4a5 0%, #9be099 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#000000",GradientType=0 );
  /* IE6-9 */
  border: 1px solid #91c15d;
  color: #386209;
}
.work-center.-completed .-lock {
  fill: #5d8c54;
}
.work-center.-completed .plus {
  border-color: #91c15d;
}
.work-center.-atLocation {
  background: #c5e7f9;
  /* Old browsers */
  background: -moz-linear-gradient(top, #c5e7f9 0%, #9fc8dc 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #c5e7f9), color-stop(100%, #9fc8dc));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #c5e7f9 0%, #9fc8dc 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #c5e7f9 0%, #9fc8dc 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #c5e7f9 0%, #9fc8dc 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #c5e7f9 0%, #9fc8dc 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#000000",GradientType=0 );
  /* IE6-9 */
  border: 1px solid #a1c7d5;
  color: #446774;
}
.work-center.-atLocation .-lock {
  fill: #7595a5;
}
.work-center.-atLocation .plus {
  border-color: #a1c7d5;
}
.work-center.-inProgress {
  background: #f7f08c;
  /* Old browsers */
  background: -moz-linear-gradient(top, #f7f08c 0%, #d3ce64 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f7f08c), color-stop(100%, #d3ce64));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #f7f08c 0%, #d3ce64 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #f7f08c 0%, #d3ce64 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #f7f08c 0%, #d3ce64 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #f7f08c 0%, #d3ce64 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#000000",GradientType=0 );
  /* IE6-9 */
  border: 1px solid #b4b051;
  color: #6f6a11;
}
.work-center.-inProgress .-lock {
  fill: #8a863c;
}
.work-center.-inProgress .plus {
  border-color: #b4b051;
}
.work-center.-skipped, .work-center.-disabled {
  background: rgba(230, 230, 230, 0.3);
  color: rgba(91, 91, 91, 0.4);
  border: 1px solid rgba(191, 191, 191, 0.3);
  box-shadow: none;
}
.work-center.-skipped .-lock, .work-center.-disabled .-lock {
  fill: #bdbdbd;
}
.work-center.-skipped .plus, .work-center.-disabled .plus {
  border-color: rgba(191, 191, 191, 0.3);
}
.work-center .wc-container {
  display: flex;
  flex-wrap: nowrap;
}
.work-center .wcName {
  padding: 0 0.3rem;
  flex: 1 0 auto;
  min-width: 5rem;
}
@media (max-width: 1865px) {
  .work-center .wcName {
    font-size: 1.3rem;
  }
}
.work-center .plus {
  border-left: 1px solid;
  width: 2rem;
  background: rgba(255, 255, 255, 0.3);
  font-size: 1.8rem;
  position: relative;
}
.work-center .plus:after {
  content: "";
  position: absolute;
  top: 1.3rem;
  right: -0.9rem;
  width: 0.5rem;
  height: 0.5rem;
  border-bottom: 1px solid #7f7f7f;
  border-right: 1px solid #7f7f7f;
  transform: rotate(-45deg);
}
@media (max-width: 1865px) {
  .work-center .plus {
    min-width: 3.5rem;
  }
}

work-center-item indago-popover {
  min-width: 215px;
  min-height: 192px;
  text-align: left;
}
work-center-item .state-list {
  margin: 0.5rem 1.8rem;
  cursor: pointer;
}
work-center-item .state-list > .state {
  position: relative;
  padding-left: 1.4rem;
  line-height: 2.7rem;
  font-weight: 600;
  white-space: nowrap;
}
work-center-item .state-list > .state:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  height: 7px;
  width: 7px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: rgba(185, 184, 215, 0.35);
}
work-center-item .state-list > .state:after {
  position: absolute;
  content: "";
  bottom: -9px;
  left: 3px;
  height: 18px;
  width: 1px;
  background: rgba(185, 184, 215, 0.2);
}
work-center-item .state-list > .state:last-child:after {
  display: none;
}
work-center-item .state-list > .state.-active:before {
  background-color: white;
}
work-center-item .state-list > .state.-active {
  color: white;
}
work-center-item .state-list .datewrapper {
  display: inline-block;
  margin-left: 0.3rem;
}
work-center-item .state-list .date {
  width: 10em;
  padding: 0;
  background: none;
  color: #389eda;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  box-shadow: none;
}
work-center-item .state-list .date::-ms-clear {
  display: none;
}
work-center-item .state-list .date.-noPermissions {
  color: white;
}
work-center-item .state-list .date:focus {
  background: none;
}
work-center-item .state-list .icon.-thinArrow {
  width: 0.8rem;
  height: 0.8rem;
  fill: #389eda;
  stroke: #389eda;
  stroke-width: 3px;
  transform: rotate(90deg);
  margin: 0px 0px 0px -3px;
}
work-center-item .skipped-workcenter {
  text-align: center;
  min-height: 142px;
}
work-center-item .skipped-workcenter > .icon {
  width: 3rem;
  height: 3rem;
  fill: #b9b8d7;
  margin-top: 1.5rem;
}
work-center-item .skipped-workcenter > .message {
  margin: 0 0 1rem 0;
}

selection-bar {
  background: #ffffff;
  /* Old browsers */
  background: -moz-linear-gradient(top, #ffffff 0%, #f5f5f5 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #f5f5f5));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #ffffff 0%, #f5f5f5 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #ffffff 0%, #f5f5f5 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #ffffff 0%, #f5f5f5 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #ffffff 0%, #f5f5f5 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#000000",GradientType=0 );
  /* IE6-9 */
  box-shadow: 0px 0px 1.8rem rgba(0, 0, 0, 0.35);
  max-height: 0rem;
  overflow: hidden;
  z-index: 4;
  transition: all 0.25s ease-in-out;
  margin-left: -23rem;
}
selection-bar > .wrapper {
  height: 9rem;
}
selection-bar .content {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s linear 0.15s;
  z-index: 5;
}
selection-bar.-hasSelection {
  max-height: 9rem;
}
selection-bar.-hasSelection .content {
  opacity: 1;
  visibility: visible;
  display: block;
  position: fixed;
  left: 50%;
  bottom: 2.6rem;
  transform: translateX(-50%);
}
selection-bar .selectionCount {
  display: inline-block;
  font-size: 1.7rem;
  margin: 0 1rem 0 0.4rem;
}
selection-bar .selectionCount > .number {
  color: #2383bc;
  font-weight: 700;
  font-size: 1.9rem;
  min-width: 2.2rem;
  display: inline-block;
  text-align: right;
  margin-right: 0.5rem;
  margin-top: -0.1rem;
  vertical-align: middle;
}
selection-bar .selectionCount > .text {
  vertical-align: middle;
}
selection-bar .main-button {
  vertical-align: middle;
}

.select-all {
  display: inline-block;
  border-radius: 50%;
  border: 2px solid #2383bc;
  padding: 0.4rem 0.4rem 0.2rem;
  cursor: pointer;
  vertical-align: middle;
  position: relative;
  /*Should be removed in the future*/
}
.select-all > .select {
  cursor: pointer;
}
.select-all .icon {
  fill: #2383bc;
}
.select-all.-allSelected {
  background: #2383bc;
}
.select-all.-allSelected .icon {
  fill: #fff;
}
.select-all:hover .tooltip {
  visibility: visible;
}

.tooltip {
  visibility: hidden;
  width: 80px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  top: -130%;
  left: -100%;
}
.tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}

.orderitem-summary {
  background: #ffffff;
  height: 100%;
  width: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.orderitem-summary > .openDetails {
  background-color: #222236;
  cursor: pointer;
  line-height: 0;
  width: 2.2rem;
  height: 100%;
}
.orderitem-summary > .openDetails > .icon {
  fill: #fff;
  width: 1rem;
  height: 1rem;
  margin: 1.7rem 0.6rem;
}
.orderitem-summary.-onHold {
  border: 1px solid #f6b4c8;
  background: #fdf4f7;
}
.orderitem-summary.-isDirectional {
  border: 1px solid #ffbb4d;
  background: #fff6e8;
}
.orderitem-summary order-number {
  white-space: nowrap;
}
.orderitem-summary .content {
  display: flex;
  flex-wrap: nowrap;
  flex: 1 0 0;
  position: relative;
  width: calc(100% - 7rem);
  align-items: center;
}
.orderitem-summary .orderitem-cell {
  margin: 0 0.6rem;
}
.orderitem-summary .orderitem-cell.-actions {
  padding: 0;
  width: 3.9rem;
  margin: 0 0 0 auto;
}
.orderitem-summary.-hasAlerts {
  box-shadow: 0 0 0 1px #f7a3a3 inset;
  background: #fff3f3;
  background: -moz-linear-gradient(top, #fff3f3 0%, #ffeaea 100%);
  background: -webkit-linear-gradient(top, #fff3f3 0%, #ffeaea 100%);
  background: linear-gradient(to bottom, #fff3f3 0%, #ffeaea 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#fff3f3", endColorstr="#ffeaea",GradientType=0 );
}
.orderitem-summary.-hasAlerts .-mfr {
  color: #c36565;
}
.orderitem-summary.-hasAlerts .-mfr .icon {
  fill: #c36565;
}
.orderitem-summary.-hasAlerts .orderNumber {
  position: relative;
}

.orderitem-detail {
  max-height: 0px;
  overflow: hidden;
  box-sizing: border-box;
  width: 100%;
  padding: 0 4rem;
  background: linear-gradient(90deg, #222236 2.4rem, #fff 2.4rem) no-repeat;
  position: relative;
}
.orderitem-detail.-expanded {
  max-height: 400rem;
}

.order-info {
  float: left;
  margin-right: 2rem;
  margin-bottom: 1.5rem;
}
.order-info > .cell {
  margin: 1.5rem 0;
  display: flex;
  align-items: center;
}
.order-info > .cell:first-child {
  margin-top: 0;
}
.order-info > .cell strong {
  margin-right: 0.3rem;
}
.order-info .icon {
  margin-right: 0.4rem;
  width: 1.7rem;
  height: 1.7rem;
}

.order-timeline {
  float: left;
  padding-left: 2rem;
  margin-bottom: 1.5rem;
  border-left: 1px solid #e0e0e0;
}
.order-timeline > .title {
  margin: 0 0 1rem 0;
}

.date-cell {
  padding-right: 4rem;
  float: left;
  text-align: center;
  position: relative;
  max-width: 8rem;
}
.date-cell > .iconWrapper {
  position: relative;
  display: inline-block;
  border: 1px solid #c7c7c7;
  height: 3.5rem;
  width: 3.5rem;
  border-radius: 50%;
  line-height: 3rem;
  background: #fff;
  z-index: 2;
}
.date-cell > .iconWrapper .icon {
  vertical-align: middle;
}
.date-cell > .name {
  font-weight: 700;
  max-width: 12rem;
  margin: 0.5rem 0;
  line-height: 1.5rem;
}
.date-cell:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  top: 1.8rem;
  border-bottom: 1px dashed #c7c7c7;
  z-index: 1;
}
.date-cell:first-of-type:after {
  left: 50%;
  width: 50%;
}
.date-cell:last-of-type:after {
  right: 50%;
  width: 50%;
}
.date-cell:only-of-type:after {
  display: none;
}

.orderitem-info {
  float: left;
  width: 11rem;
  font-size: 1.4rem;
  padding: 1rem 1.5rem 1rem 4rem;
  line-height: 3rem;
  position: relative;
}
.orderitem-info > .cell .icon {
  vertical-align: sub;
}

.order-selector {
  position: absolute;
  top: 0rem;
  left: -2.2rem;
  width: 24px;
  height: 100%;
  z-index: 1;
  opacity: 0;
  padding: 14px 4px;
  box-sizing: border-box;
}
.order-selector .wrapper {
  position: relative;
}

.orderitem-cell {
  font-size: 1.4rem;
}
.orderitem-cell .orderType .icon {
  width: 1.8rem;
  height: 1.8rem;
}
.orderitem-cell .icon {
  vertical-align: sub;
  margin-right: 0.3rem;
  width: 1.5rem;
  height: 1.5rem;
}
.orderitem-cell.-color {
  flex: 0 0 6rem;
}
.orderitem-cell.-note {
  flex: 0 0 2.7rem;
  text-align: left;
  padding-right: 0px;
  margin-right: 0px;
}
.orderitem-cell.-order-attributes {
  padding-left: 0px;
  margin-left: 0px;
}
.orderitem-cell.-branch {
  flex: 0 0 9.3rem;
}
.orderitem-cell.-branchWithAddress {
  flex: 1 1 28rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.orderitem-cell.-date {
  flex: 0 0 7.3rem;
}
.orderitem-cell.-date.-completion {
  flex: 0 0 9.7rem;
}
.orderitem-cell.-leadTime {
  flex: 0 0 4.7rem;
}
.orderitem-cell.-inventoryStatus {
  flex: 0 0 7.8rem;
  white-space: nowrap;
}
.orderitem-cell.-flag {
  flex: 0 0 2.3rem;
  border: 0;
}
.orderitem-cell.-pSOrderFlag {
  flex: 0 0 2rem;
}
.orderitem-cell.-pSOrderFlag > .onHold {
  border: 0;
}
.orderitem-cell.-orderFlag {
  flex: 0 0 15rem;
}
.orderitem-cell.-orderFlag > .onHold {
  border: 0;
}
.orderitem-cell.-colorEdgeCombo {
  flex: 0 0 54rem;
}
.orderitem-cell.-colorEdgeCombo span {
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.orderitem-cell.-workcenters {
  flex: 1 1 auto;
  min-width: 70rem;
  position: relative;
}
.orderitem-cell.-workcenters > .scrollArrow {
  position: absolute;
  background: -moz-linear-gradient(left, white 0%, rgba(255, 255, 255, 0) 100%);
  background: -webkit-linear-gradient(left, white 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#00ffffff",GradientType=1 );
  top: 0.2rem;
  width: 8rem;
  height: 4.3rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 1865px) {
  .orderitem-cell.-workcenters > .scrollArrow {
    width: 12rem;
  }
}
.orderitem-cell.-workcenters > .scrollArrow.-left {
  left: 0;
}
.orderitem-cell.-workcenters > .scrollArrow.-right {
  right: 0;
  transform: scaleX(-1);
}
.orderitem-cell.-workcenters .arrowIcon {
  background: #2383bc;
  border-radius: 50%;
  width: 1.8rem;
  height: 1.8rem;
  margin: 1.2rem 0;
  transform: scaleX(-1);
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.7);
  pointer-events: auto;
}
@media (max-width: 1865px) {
  .orderitem-cell.-workcenters .arrowIcon {
    width: 2.3rem;
    height: 2.3rem;
  }
}
.orderitem-cell.-workcenters .arrowIcon > .icon {
  fill: white;
  stroke: white;
  stroke-width: 4px;
  width: 0.8rem;
  height: 0.8rem;
  margin: 0.5rem;
}
@media (max-width: 1865px) {
  .orderitem-cell.-workcenters .arrowIcon > .icon {
    width: 1rem;
    height: 1rem;
    margin: 0.7rem;
  }
}
.orderitem-cell.-workcenters.-hasMoreLeft .scrollArrow.-left {
  opacity: 1;
  visibility: visible;
}
.orderitem-cell.-workcenters.-hasMoreRight .scrollArrow.-right {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1865px) {
  .orderitem-cell.-workcenters {
    width: 100%;
    box-sizing: border-box;
  }
}
.orderitem-cell.-workcenters__work-center-schedule {
  min-width: 0;
}
.orderitem-cell.-measure {
  flex: 0 0 8.5rem;
}
.orderitem-cell.-pSMeasure {
  flex: 0 0 6.9rem;
}
.orderitem-cell .-measure-font {
  font-size: 1rem;
}
.orderitem-cell.-issueSource {
  flex: 1 1 27rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.orderitem-cell.-builder {
  flex: 1 1 29rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.orderitem-cell.-actions .-disabled {
  opacity: 0.65;
  pointer-events: none;
}
.orderitem-cell.-disabled {
  opacity: 0.65;
  pointer-events: none;
}
.orderitem-cell > .workcenter-list {
  display: flex;
  width: 100%;
  margin: 0.5rem 0;
  padding: 0.3rem 0;
  /*  
      This is an IE/Edge hack to compensate for variations in length of the text/characters
      https://stackoverflow.com/questions/30900154/workaround-for-issue-with-ie-scrollwidth
  */
  padding-right: 1px;
  overflow: hidden;
}
.orderitem-cell > .workcenter-list > .work-center {
  flex: 1 0 auto;
  margin-right: 1.3rem;
}
.orderitem-cell > .workcenter-list > .work-center:last-child {
  margin-right: 0;
}
.orderitem-cell > .workcenter-list > .work-center:last-child:after {
  display: none;
}
.orderitem-cell > .workcenter-list > .on-hold {
  cursor: default;
}

/* AB#36106. The Planned Completion Date, filled with its branch's color.
 *
 * Shared by every screen that draws an order row, because the element is one element and its
 * appearance must not drift between them.
 *
 * The background and the text color are written INLINE by the element, not here. They come from
 * the branch, so they cannot be a stylesheet's business; what lives here is the shape the color
 * is poured into. */
.lead-time-indicator {
  /* Bare by default. A screen that never draws the indicator gets exactly the markup it had
     before this story: no box, no padding, no reserved space.
     See `-reserved` below for why that is a screen-level decision and not a branch-level one. */
  white-space: nowrap;
  /* THE BOX IS RESERVED ON EVERY ROW OF A SCREEN THAT DRAWS THE INDICATOR, whether or not that
   * row's branch has opted in. This is the rule that keeps the column aligned, and it is worth
   * stating because two earlier attempts got it wrong in opposite directions.
   *
   * Reserving nothing was the first attempt: a screen shows rows from several branches at once,
   * so a padded date on one row and an unpadded date on the next put the two at different offsets
   * in the same column and the column stopped lining up. Coloring one branch must not move
   * another branch's text.
   *
   * Reserving it on the BASE rule was the second: that also padded the Work Center Production
   * Schedule, which never draws an indicator at all, so a screen the story explicitly excludes
   * had its completion-date column and everything right of it shift for nothing.
   *
   * Keying it to the screen's own opt-in satisfies both. Within a screen every row reserves the
   * same box; a screen that opted out reserves nothing. */
  /* Announced by a screen reader, invisible on screen. Same declaration as indago-pill's own
     __sr-only; there is no global helper in this codebase, and each component that needs one
     declares it, so this follows the house pattern rather than introducing a new global. */
}
.lead-time-indicator.-reserved {
  display: inline-flex;
  align-items: center;
  /* Border-box, so the 1px border added below is absorbed by the padding instead of adding
     2px on top of it. Without this the pill grows past $completion-date-cell-width, which is
     sized from the padding alone. */
  box-sizing: border-box;
  /* 1.2rem horizontal is the application's own figure for a pill of this kind, from
     `indago-pill--attention`'s compact-label. The vertical figure is larger than that pill's
     0.4rem and the font stays at the row's 1.4rem rather than dropping to the pill's 1.2rem,
     because this pill holds a DATE that has to line up with the Installation Date beside it:
     two dates at different sizes in adjacent columns reads as a mistake.

     $completion-date-cell-width is derived from this padding. Change one and the other is
     wrong. */
  padding: 0.6rem 1.2rem;
  /* Matches the row's own icon so the filled date sits on the same baseline as the plain text
     in the cells either side of it. */
  line-height: 1.5rem;
  border-radius: 0.5rem;
  /* Transparent rather than absent, so an opted-out branch occupies the box without painting
     it. The border is the same story: AB#36106's palette pairs every fill with a border, so
     the box needs one rather than none, and transparent keeps it invisible until `-on` gives
     it a real color inline. */
  background-color: transparent;
  border: 1px solid transparent;
  /* The gap between the glyph and the date belongs to THIS element, not to the host cell.
   *
   * Each screen previously spaced them its own way: `.orderitem-cell .icon` uses a 0.3rem
   * margin, `.manufacturing-order-cell .icon` 0.4rem, and the Production Schedule cell used a
   * flex `gap` between two children of the cell. Once the icon and the date became children
   * of this element instead, the Production Schedule's gap stopped applying entirely and its
   * glyph sat flush against the date, while the other two kept their margins - three
   * spacings for one shared element, which is the drift this element exists to prevent.
   *
   * So the margins are zeroed and one gap is set here. */
  gap: 0.6rem;
}
.lead-time-indicator.-reserved .icon,
.lead-time-indicator.-reserved [indago-icon] {
  margin-right: 0;
  margin-left: 0;
}
.lead-time-indicator.-on {
  /* The icon is grey by default, set by the row. On a filled date it has to ride the same
     ink as the text beside it or it disappears into the color. */
}
.lead-time-indicator.-on .icon,
.lead-time-indicator.-on [indago-icon] {
  color: inherit;
  fill: currentColor;
}
.lead-time-indicator__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
  white-space: nowrap;
}

.order-flag {
  display: inline-block;
}
.order-flag > .icon {
  vertical-align: text-top;
}
.order-flag.rush > .icon {
  fill: #b62d2c;
  width: 2rem;
  height: 2rem;
}
.order-flag.bump > .icon {
  fill: #50b4cc;
}
.order-flag.onHold > .icon {
  fill: #c13e66;
}

.main-button {
  background: #494949;
  border-radius: 2rem;
  box-shadow: 0px 5px 6px -4px rgba(0, 0, 0, 0.4);
  padding: 0 2rem;
  transition: box-shadow 0.15s linear;
}
.main-button > .icon {
  fill: #fff;
  vertical-align: middle;
  margin-right: 0.3rem;
  margin-top: -0.3rem;
  width: 1.5rem;
  height: 1.5rem;
}
.main-button > .label {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}
.main-button.-plus {
  display: inline-flex;
  gap: 0.8rem;
  margin-top: 11px;
}
.main-button.-plus svg {
  fill: #fafefd;
}
.main-button.-plus icon {
  display: flex;
  align-self: center;
  width: 1.4rem;
}
.main-button.-primary {
  background: #3c82b1;
  /* Old browsers */
  background: -moz-linear-gradient(top, #3c82b1 0%, #1f5e93 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #3c82b1), color-stop(100%, #1f5e93));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #3c82b1 0%, #1f5e93 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #3c82b1 0%, #1f5e93 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #3c82b1 0%, #1f5e93 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #3c82b1 0%, #1f5e93 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#000000",GradientType=0 );
  /* IE6-9 */
}
.main-button.-primary:hover {
  background: #2c95dc;
  /* Old browsers */
  background: -moz-linear-gradient(top, #2c95dc 0%, #1a73be 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #2c95dc), color-stop(100%, #1a73be));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #2c95dc 0%, #1a73be 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #2c95dc 0%, #1a73be 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #2c95dc 0%, #1a73be 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #2c95dc 0%, #1a73be 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#000000",GradientType=0 );
  /* IE6-9 */
}
.main-button.-primary:active {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.4), inset 0px 2px 2px 0px rgba(0, 0, 0, 0.5);
}
.main-button.-primary.-disabled {
  background: #bbb;
  /* Old browsers */
  background: -moz-linear-gradient(top, #bbb 0%, #9a9a9a 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #bbb), color-stop(100%, #9a9a9a));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #bbb 0%, #9a9a9a 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #bbb 0%, #9a9a9a 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #bbb 0%, #9a9a9a 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #bbb 0%, #9a9a9a 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#000000",GradientType=0 );
  /* IE6-9 */
  box-shadow: none;
  cursor: not-allowed;
}
.main-button.-flatPrimary {
  background: #2383bc;
}
.main-button.-flatPrimary > .label {
  color: #fff;
}
.main-button.-flatPrimary.-disabled {
  cursor: not-allowed;
  box-shadow: 0 0 0px 1px rgba(16, 16, 16, 0.3) inset;
}
.main-button.-flatPrimary.-disabled .icon, .main-button.-flatPrimary.-disabled .label {
  color: rgba(16, 16, 16, 0.3);
  fill: rgba(16, 16, 16, 0.3);
}
.main-button.-transparent {
  background: none;
  box-shadow: none;
  box-shadow: 0 0 0px 1px #2383bc inset;
}
.main-button.-transparent > .label {
  text-shadow: none;
  color: #2383bc;
}
.main-button.-negativeTransparent {
  background: none;
  box-shadow: none;
  box-shadow: 0 0 0px 1px rgba(255, 255, 255, 0.6) inset;
}
.main-button.-negativeTransparent > .label {
  text-shadow: none;
  color: rgba(255, 255, 255, 0.9);
}
.main-button.-no-border {
  box-shadow: none !important;
}
.main-button.-largeSize {
  line-height: 3.5rem;
}
.main-button.-normalSize {
  line-height: 3rem;
}
.main-button.-smallSize {
  line-height: 2.5rem;
}
.main-button.-withSpinner {
  align-self: center;
  width: 100%;
  height: 4.6rem;
  border-radius: 4.5rem;
  margin-top: 2rem;
  transition: all 0.3s ease-in-out;
  position: relative;
  background: linear-gradient(to bottom, #3c82b1 1%, #1f5e93 50%, #4a9bd2 50%, #4a9bd2 100%);
  background-size: 200%;
  -webkit-background-size: 200%;
}
.main-button.-withSpinner .label {
  transition: all 0.3s ease-in-out;
  display: block;
}
.main-button.-withSpinner:not(.-loading):hover {
  background: #2c95dc;
  /* Old browsers */
  background: -moz-linear-gradient(top, #2c95dc 0%, #1a73be 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #2c95dc), color-stop(100%, #1a73be));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #2c95dc 0%, #1a73be 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #2c95dc 0%, #1a73be 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #2c95dc 0%, #1a73be 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #2c95dc 0%, #1a73be 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#000000",GradientType=0 );
  /* IE6-9 */
}
.main-button.-withSpinner.-loading {
  background-position-y: 100%;
  box-shadow: none;
  width: 4.6rem;
}
.main-button.-withSpinner.-loading .label {
  transform: translateY(-3rem);
  opacity: 0;
  visibility: hidden;
}
.main-button.-withSpinner.-loading:hover {
  cursor: default;
}
@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}
.main-button.-withSpinner.-loading:before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.5rem;
  height: 2.5rem;
  margin-top: -1.25rem;
  margin-left: -1.25rem;
  border-radius: 50%;
  border: 3px solid #4a9bd2;
  border-top-color: #fff;
  animation: spinner 0.6s linear infinite;
}

.e-toolbar .e-toolbar-items {
  display: flex;
  justify-content: right;
}
.e-toolbar .e-toolbar-items #grid-excel-export {
  display: flex;
  align-items: center;
  line-height: 3rem;
  box-shadow: none;
  box-shadow: 0 0 0px 1px #2383bc inset;
  border-radius: 50rem;
  padding: 0 2rem;
  color: #2383bc;
  font-weight: 600;
  text-transform: uppercase;
}
.e-toolbar .e-toolbar-items #grid-excel-export > span {
  text-shadow: none;
  color: #2383bc;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
}
.e-toolbar .e-toolbar-items #grid-excel-export:hover, .e-toolbar .e-toolbar-items #grid-excel-export:focus {
  background-color: inherit;
  color: inherit;
}
.e-toolbar .e-toolbar-items .e-tbar-btn-text {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
}
.e-toolbar .e-toolbar-items .e-custom-excel-icon {
  display: flex;
  justify-content: center;
  min-width: auto !important;
}
.e-toolbar .e-toolbar-items .e-custom-excel-icon::before {
  content: "";
  width: 10px;
  height: 10px;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTguMS4xLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjwhLS0gTGljZW5zZTogQ0MwLiBNYWRlIGJ5IFNWRyBSZXBvOiBodHRwczovL3d3dy5zdmdyZXBvLmNvbS9zdmcvOTc5ODcvc3RyZXRjaGluZy1iZWZvcmUtZXhlcmNpc2luZyAtLT4KPHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCAyMS43IDIxLjciIGZpbGw9IiMyMzgzYmMiPgo8Zz4KCTxnPgoJCTxwYXRoIGQ9Ik0yMSwyLjVoLTcuNlY1SDE1djEuN2gtMS43djEuN0gxNVYxMGgtMS43djEuN0gxNXYxLjdoLTEuN1YxNUgxNXYxLjdoLTEuN3YyLjVIMjFjMC40LDAsMC43LTAuMywwLjctMC43VjMuMgogICAgICAgIEMyMS43LDIuOCwyMS40LDIuNSwyMSwyLjV6IE0yMCwxNi43aC0zLjNWMTVIMjBWMTYuN3ogTTIwLDEzLjRoLTMuM3YtMS43SDIwVjEzLjR6IE0yMCwxMGgtMy4zVjguM0gyMFYxMHogTTIwLDYuN2gtMy4zVjVIMjBWNi43egogICAgICAgIE0wLDE5LjNsMTIuNSwyLjRWMEwwLDIuNFYxOS4zeiBNMi42LDYuNmgyLjNsMS4yLDIuNWMwLjEsMC4yLDAuMiwwLjQsMC4zLDAuN2gwYzAtMC4yLDAuMS0wLjQsMC4zLTAuN0w4LDYuNmgyLjFsLTIuNSw0LjJsMi42LDQuMwogICAgICAgIGwtMi4zLDBsLTEuNS0yLjhjLTAuMS0wLjEtMC4xLTAuMy0wLjItMC42aDBjMCwwLjEtMC4xLDAuMy0wLjIsMC42bC0xLjUsMi43SDIuM0w1LDEwLjlMMi42LDYuNnoiIC8+Cgk8L2c+CjwvZz4KPC9zdmc+Cg==");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-right: 0.25rem;
}

.custom-checkbox > .label {
  background: #2383bc;
  border-radius: 50%;
  cursor: pointer;
  width: 1.5rem;
  height: 1.5rem;
  position: relative;
  display: block;
}
.custom-checkbox > .label:after {
  content: "";
  width: 5px;
  height: 2px;
  position: absolute;
  top: 5px;
  left: 4px;
  border: 2px solid #FFF;
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
  opacity: 0;
}
.custom-checkbox > .standardCheckbox {
  display: none;
}
.custom-checkbox > .standardCheckbox:checked + .label:after {
  opacity: 1;
}

.list-toolbar {
  display: grid;
  grid-template-columns: max-content 1fr;
  margin-bottom: 1rem;
}
.list-toolbar > .numberOfItems {
  font-weight: 600;
  margin-top: 1rem;
  display: inline-block;
  height: 1.3rem;
}
.list-toolbar > .numberOfItems .-clearResults {
  top: 0.2rem;
  left: 15rem;
  margin-left: 1rem;
}
.list-toolbar > .rightBlock {
  gap: 1rem;
  justify-content: right;
  display: flex;
  align-items: center;
}
.list-toolbar > .facilityBanner {
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 6.5rem;
  letter-spacing: -0.1rem;
}
.list-toolbar > .facilityBlock {
  gap: 1rem;
  float: right;
  display: flex;
  align-items: center;
  margin-left: auto;
}
.list-toolbar .main-button.-openFilters {
  position: relative;
  cursor: pointer;
}
.list-toolbar .main-button.-flatPrimary:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 0 0.7rem 0.7rem 0.7rem;
  border-color: transparent transparent #2383bc transparent;
}
.list-toolbar .label-dropdown {
  margin: 0 1rem 0 1rem;
}
.list-toolbar .label-dropdown label {
  margin-right: 0.5rem;
}
.list-toolbar.-searchApplied .search-bar {
  right: 4rem;
}
.list-toolbar .-disabled {
  pointer-events: none;
}

@media (max-width: 1865px) {
  .list-toolbar {
    grid-template-columns: 1fr;
    row-gap: 1rem;
  }

  .list-toolbar > .rightBlock {
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    padding-right: 0;
  }
}
filter-criteria {
  grid-column: 1/-1;
  display: block;
  position: relative;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.filter-container {
  transition: max-height 0.3s ease-in-out;
  display: block;
  margin-top: 1.5rem;
}
.filter-container.-collapsed {
  max-height: 0;
}

.filter-menu {
  background: #e8e8e8;
  border-top: 1px solid #2383bc;
  border-bottom: 1px solid #2383bc;
  display: flex;
  flex-wrap: wrap;
}

.filter-block {
  padding: 1.7rem;
  border-right: 1px solid #d4d4d4;
  border-bottom: 1px solid #d4d4d4;
  min-width: 12rem;
  max-width: 17rem;
  flex: 1;
}
@media (max-width: 1865px) {
  .filter-block {
    min-width: 20rem;
    max-width: 23rem;
  }
}
@media (max-width: 1400px) {
  .filter-block {
    min-width: 10rem;
    max-width: 18rem;
  }
}
.filter-block > .title {
  font-weight: 700;
  margin: 0 0 1rem 0;
}
.filter-block .inputField {
  margin-bottom: 0.5rem;
  width: 100%;
  position: relative;
}
.filter-block .inputField > input {
  width: 100%;
  box-sizing: border-box;
  height: 3.7rem;
}
.filter-block .dropdownField {
  width: 100%;
  max-width: 30rem;
}

.checkbox-label {
  line-height: 2.3rem;
}
.checkbox-label > .checkbox {
  cursor: pointer;
}
.checkbox-label > .label {
  cursor: pointer;
  vertical-align: 2px;
}

.filter-actions {
  text-align: center;
}
.filter-actions > .wrapper {
  background: #2383bc;
  border-radius: 0 0 4px 4px;
  display: inline-block;
  padding: 0.6rem 1.6rem;
}
.filter-actions > .wrapper .removeFilter {
  color: #fff;
  margin: 0 1.3rem 0 0.5rem;
  cursor: pointer;
}

.filter-by-bar {
  max-height: 220px;
  margin-bottom: 1.5rem;
}
.filter-by-bar > .filter-by-menu {
  background: #e8e8e8;
  display: flex;
  min-width: 10rem;
  border-top: 1px solid #2383bc;
  border-bottom: 1px solid #2383bc;
  padding: 2rem;
}
.filter-by-bar > .filtering-by {
  background: #2383bc;
  border-radius: 0 0 4px 4px;
  display: inline-block;
  padding: 0.6rem 1.6rem;
  text-align: center;
}

.pop-over {
  opacity: 0;
  transition: opacity 0.2s linear 0.35s;
  position: absolute;
  font-weight: 400;
  background-color: #2c2c46;
  border-radius: 0.4rem;
  color: #b9b8d7;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.3);
  z-index: 11;
  /*transform:translateY(10%);*/
  cursor: pointer;
}
.pop-over > .wrapper .header {
  background: #222236;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #535385;
  font-size: 1.5rem;
  border-radius: 0.4rem 0.4rem 0 0;
  line-height: 3.2rem;
}
.pop-over > .wrapper .header .title {
  text-transform: uppercase;
  font-weight: 700;
}
.pop-over > .wrapper .header .orderNumber {
  float: right;
  font-weight: 600;
}
.pop-over > .wrapper .footer {
  border-top: 1px solid #535385;
  margin: 0.2rem 1.5rem;
  text-align: right;
  padding: 1rem 0;
}
.pop-over > .wrapper .footer .skip {
  float: right;
  color: #389eda;
  font-weight: 700;
}
.pop-over > .wrapper .footer .icon {
  fill: #389eda;
  width: 1rem;
  height: 1rem;
}
.pop-over > .wrapper .footer .main-button {
  margin-left: 1rem;
}
.pop-over:before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1rem;
}
.pop-over.-bottom:before {
  bottom: -1rem;
}
.pop-over.-top:before {
  top: -1rem;
}
.pop-over:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
}
.pop-over.-bottom:after {
  bottom: -0.9rem;
  border-style: solid;
  border-width: 1rem 1rem 0 1rem;
  border-color: #2c2c46 transparent transparent transparent;
}
.pop-over.-top:after {
  top: -0.9rem;
  border-style: solid;
  border-width: 0 1rem 1rem 1rem;
  border-color: transparent transparent #222236 transparent;
}
.pop-over.-left:after {
  top: 1.4rem;
  left: -0.5rem;
  border-style: solid;
  border-width: 0.8rem 1rem 0.8rem 0;
  border-color: transparent #222236 transparent transparent;
}
.pop-over.-top.-left:after {
  top: -0.9rem;
  left: 2rem;
  border-style: solid;
  border-width: 0 1rem 1rem 1rem;
  border-color: transparent transparent #222236 transparent;
}
.pop-over.-top.-right:after {
  top: -0.9rem;
  left: auto;
  right: 1rem;
  border-style: solid;
  border-width: 0 1rem 1rem 1rem;
  border-color: transparent transparent #222236 transparent;
}
.pop-over.-notes {
  width: 325px;
  text-align: left;
  transition: opacity 0.2s linear;
}
.pop-over.-notes .notes {
  width: 90%;
  height: 70px;
  box-sizing: border-box;
  margin: 1rem 1.5rem 0.5rem;
  resize: none;
  font-size: 1.4rem;
  padding-top: 0.4rem;
  line-height: 1.8rem;
}
.pop-over.-notes .footer {
  border: 0;
}
.pop-over.-open {
  visibility: visible;
  opacity: 1;
}
.pop-over.-closed {
  visibility: hidden;
  opacity: 0;
}
.pop-over.-searchOrders {
  width: 13rem;
  color: white;
  padding: 1.3rem;
}
.pop-over.-searchOrders .icon {
  position: absolute;
  right: 0.6rem;
  top: 0.6rem;
  fill: #2383bc;
  width: 1.2rem;
  height: 1.2rem;
}
.pop-over__permissions {
  display: flex;
  left: 19rem;
  top: -0.5rem;
  padding-bottom: 1rem;
  transform: translateY(-11rem);
}
.pop-over__permissions .permission-container {
  display: flex;
  margin: 0.1rem 1.6rem;
  grid-gap: 1.6rem;
}
.pop-over__permissions .flex-column {
  display: flex;
  flex-direction: column;
}
.pop-over__permissions.pop-over.-left:after {
  bottom: 1.4rem;
  top: auto;
}
.pop-over__permissions .-report.wrapper {
  min-width: 45rem;
}

permission-popover > div {
  display: contents;
}

.toggle-onHold > .icon {
  vertical-align: sub;
  fill: #c13e66;
}

.filter-bar {
  background-color: #ededed;
  line-height: 4.5rem;
  display: flex;
}
.filter-bar > .label {
  flex: 0 0 9rem;
  background: #2383bc;
  color: #fff;
  padding: 0 1rem;
  margin-right: 0.5rem;
  align-self: stretch;
  display: flex;
  align-items: center;
}
.filter-bar > .groupsContainer {
  flex: 1;
}
.filter-bar > .clearFilter {
  padding: 0 1rem;
  vertical-align: middle;
  font-weight: bold;
  flex: 0 0 5.5rem;
  color: #2383bc;
  cursor: pointer;
  align-self: stretch;
  display: flex;
  align-items: center;
  border-left: 1px solid #d9d9d9;
  background: #eaeaea;
}

.filter-group {
  display: inline-block;
  font-weight: 600;
  margin-left: 1rem;
}
.filter-group > .cell {
  border: 1px solid #a1a1a1;
  border-radius: 2rem;
  margin-right: 0.5rem;
  display: inline-block;
  padding: 0 0.5rem 0 0.8rem;
  line-height: 2.5rem;
}
.filter-group .name {
  margin-right: 0.3rem;
}
.filter-group .icon {
  fill: #fff;
  width: 0.8rem;
  height: 0.8rem;
  vertical-align: sub;
  background: #2383bc;
  border-radius: 50%;
  cursor: pointer;
  padding: 5px;
}

.loading-spinner {
  background: #c5c5c5;
  border-radius: 50%;
  height: 70px;
  width: 70px;
  position: relative;
}
.loading-spinner:before, .loading-spinner:after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.loading-spinner:before {
  animation: rotate 1s linear infinite;
  background: linear-gradient(0deg, #f7f7f7 50%, rgba(247, 247, 247, 0.9) 100%) 0% 0%, linear-gradient(90deg, rgba(247, 247, 247, 0.9) 0%, rgba(247, 247, 247, 0.6) 100%) 100% 0%, linear-gradient(180deg, rgba(247, 247, 247, 0.6) 0%, rgba(247, 247, 247, 0.3) 100%) 100% 100%, linear-gradient(360deg, rgba(247, 247, 247, 0.3) 0%, rgba(247, 247, 247, 0) 100%) 0% 100%;
  background-repeat: no-repeat;
  background-size: 50% 50%;
  top: -1px;
  bottom: -1px;
  left: -1px;
  right: -1px;
}
.loading-spinner:after {
  background: url(../../Images/indago-symbol.svg) no-repeat 50% 50% #f7f7f7;
  background-size: 65%;
  top: 4%;
  bottom: 4%;
  left: 4%;
  right: 4%;
}
.loading-spinner.white:after {
  background: url(../../Images/indago-symbol.svg) no-repeat 50% 50% #ffffff;
  background-size: 65%;
  top: 4%;
  bottom: 4%;
  left: 4%;
  right: 4%;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.loading-container {
  display: flex;
  justify-content: center;
  height: 50%;
  flex-direction: column;
  gap: 5rem;
}

.loading-container-text {
  display: inline-block;
  align-self: flex-start;
  font-size: 1.6em;
  font-weight: 700;
  color: #b9b8d7;
  align-self: center;
}

.typed-out {
  overflow: hidden;
  width: 0;
  white-space: nowrap;
  animation: typing 1.8s infinite;
  animation-timing-function: ease-in-out;
  border-bottom: 2px solid #b9b8d7;
}

@keyframes typing {
  0% {
    width: 0;
  }
  60% {
    width: 100%;
  }
  100% {
    width: 100%;
  }
}
.logo-animation .logo {
  width: 90px;
  height: 90px;
  position: absolute;
  left: 50%;
  top: 50%;
  animation: flip 3.5s steps(1, start) infinite;
}
.logo-animation .firstPath,
.logo-animation .secondPath {
  position: absolute;
  width: 100%;
  height: 100%;
  stroke-dasharray: 502px;
  stroke-dashoffset: 502px;
  opacity: 0;
}
.logo-animation .firstPath {
  animation: firstPath 3.5s ease-in-out infinite;
}
.logo-animation .secondPath {
  transform: rotate(45deg);
  animation: secondPath 3.5s ease-in-out infinite;
}
.logo-animation .circlePath {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(10deg);
  width: 88%;
  height: 88%;
  stroke-dasharray: 385px;
  stroke-dashoffset: 385px;
  animation: circlePath ease-in-out 3.5s infinite;
}
.logo-animation .fullSymbol {
  position: absolute;
  width: 90px;
  height: 90px;
  opacity: 0;
  fill: #fff;
  animation: fullSymbol ease-in-out 3.5s infinite;
}
.logo-animation .loadingIndicator {
  font-family: Source Sans Pro;
  font-size: 16px;
  line-height: 25px;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 100%);
  animation: text 3.5s ease-in-out infinite;
}

@keyframes firstPath {
  5% {
    opacity: 1;
  }
  30% {
    stroke-dashoffset: 0px;
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  69% {
    opacity: 0;
  }
  70% {
    stroke-dashoffset: 0px;
  }
  75% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    stroke-dashoffset: -502px;
    opacity: 0;
  }
}
@keyframes secondPath {
  10% {
    stroke-dashoffset: 502px;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  35% {
    stroke-dashoffset: 0px;
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  75% {
    stroke-dashoffset: 0px;
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    stroke-dashoffset: -502px;
    opacity: 0;
  }
}
@keyframes circlePath {
  7% {
    stroke-dashoffset: 385px;
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  40% {
    stroke-dashoffset: 0px;
    opacity: 1;
  }
  45% {
    opacity: 0;
  }
  80% {
    stroke-dashoffset: 0px;
    opacity: 0;
  }
  85% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    stroke-dashoffset: -385px;
    opacity: 0;
  }
}
@keyframes fullSymbol {
  0% {
    fill: #8585ad;
  }
  25% {
    opacity: 0;
  }
  35% {
    opacity: 1;
  }
  50% {
    fill: #fff;
  }
  80% {
    opacity: 1;
  }
  95% {
    opacity: 0;
  }
  100% {
    fill: #8585ad;
  }
}
@keyframes text {
  0% {
    opacity: 0;
    color: #8585ad;
  }
  60% {
    opacity: 1;
    color: #fff;
  }
  100% {
    opacity: 0;
    color: #8585ad;
  }
}
@keyframes flip {
  49% {
    transform: translate3d(-50%, -100%, 0) rotate(202.5deg);
  }
  50% {
    transform: translate3d(-50%, -100%, 0) rotate(22.5deg);
  }
  100% {
    transform: translate3d(-50%, -100%, 0) rotate(22.5deg);
  }
}
order-detail-tabs {
  padding-bottom: 5rem;
}
order-detail-tabs .detailsAndTimeline {
  margin-top: 1rem;
  overflow: hidden;
}
order-detail-tabs .colors {
  column-width: 35rem;
  column-gap: 3rem;
  column-fill: auto;
  height: 100%;
}
order-detail-tabs .colors .color {
  line-height: 2.8rem;
  white-space: nowrap;
}
order-detail-tabs .colors .measure {
  font-weight: bold;
}
order-detail-tabs .colors .icon {
  width: 1.5rem;
  height: 1.5rem;
  vertical-align: -1px;
}
order-detail-tabs .slab-reservations {
  columns: 4;
  column-fill: auto;
  height: 100%;
}
@media (max-width: 1685px) {
  order-detail-tabs .slab-reservations {
    columns: 3;
  }
}
@media (max-width: 1180px) {
  order-detail-tabs .slab-reservations {
    columns: 2;
  }
}
order-detail-tabs .slab-reservations .item {
  display: inline-block;
  width: 100%;
  line-height: 1.7rem;
  margin-bottom: 0.6rem;
}
order-detail-tabs .slab-reservations .item .stockId {
  font-weight: 700;
  display: block;
}
order-detail-tabs .slab-reservations .item .color {
  font-style: italic;
}
order-detail-tabs .tabWrapper {
  width: 100%;
  height: 100%;
  overflow-y: auto;
}
order-detail-tabs .documents-tab th:last-child {
  width: 15rem;
}
order-detail-tabs .documents-tab .indago-table__cell--actions .icon {
  fill: #1a1a2a;
  width: 1.8rem;
  height: 1.8rem;
}
order-detail-tabs .documents-tab .download-spinner {
  flex: 0 0 0;
}
order-detail-tabs .documents-tab .download-spinner .loading-spinner {
  height: 25px;
  width: 25px;
  margin: 0 1.35rem;
}
order-detail-tabs .documents-tab table.indago-table th {
  top: 4.6rem !important;
}
order-detail-tabs .documents-tab__list-toolbar {
  padding-bottom: 1.6rem;
  display: flex;
  justify-content: space-between;
  position: sticky;
  top: 0;
  background: white;
  margin-top: 0.5rem;
}
order-detail-tabs .documents-tab__list-toolbar .primary-flat-button {
  width: fit-content;
}
order-detail-tabs .documents-tab__list-toolbar .primary-flat-button--reload {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
order-detail-tabs .documents-tab__list-toolbar .primary-flat-button--reload > div {
  display: flex;
}
order-detail-tabs .documents-tab__list-toolbar .primary-flat-button--reload svg {
  fill: #2383bc;
  width: 1.5rem;
}
order-detail-tabs .documents-tab .documents-table .indago-table__cell--actions > div {
  gap: 1.6rem;
}
order-detail-tabs .documents-tab .documents-table .indago-table__cell--actions > div button {
  min-width: 5.2rem;
}
order-detail-tabs .documents-tab__list-metadata {
  display: flex;
  gap: 0.4rem;
  align-self: center;
}
order-detail-tabs .documents-tab__list-metadata__count {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 1.5rem;
  max-height: 1.5rem;
}
order-detail-tabs .documents-tab__list-right {
  display: flex;
  gap: 2.4rem;
  align-items: center;
}
order-detail-tabs .documents-tab__list-right .validation-error-list {
  padding: 0;
}
order-detail-tabs .hold-history-comments {
  min-width: 500px;
  max-width: 500px;
  overflow-wrap: break-word;
}
order-detail-tabs .indago-table__list--cutouts {
  list-style: none;
  margin: 0;
  padding: 0;
}

.line-inputField {
  position: relative;
  min-width: 25rem;
}
.line-inputField > .input {
  background: #FFF;
  color: #2383bc;
  width: 100%;
  height: 3.5rem;
  border: none;
  padding: 1rem 0.2rem;
  box-shadow: inset 0px -1px 0px 0px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
}
.line-inputField > .input:focus ~ .label, .line-inputField > .input:valid ~ .label {
  top: -0.8rem;
  left: 0;
  font-size: 1.2rem;
  color: #2383bc;
}
.line-inputField > .input:focus ~ .horizontalBar:after {
  width: 100%;
}
.line-inputField > .label {
  color: #363636;
  position: absolute;
  pointer-events: none;
  left: 0;
  top: 1rem;
  transition: 0.2s ease all;
}
.line-inputField .horizontalBar {
  position: relative;
}
.line-inputField .horizontalBar:after {
  content: "";
  height: 2px;
  width: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  background: #2383bc;
  transition: 0.2s ease all;
}
.line-inputField.-withIcon .label {
  left: 2.5rem;
}
.line-inputField.-withIcon .icon {
  position: absolute;
  top: 0.9rem;
  left: 0;
  fill: #505050;
}
.line-inputField.-withIcon > .input {
  padding-left: 2.5rem;
}
.line-inputField.-withIcon > .input:focus ~ .icon {
  fill: #2383bc;
}

.default-table {
  /*Styles for the table used in the Order Detail Tabs (Order Management and Production Schedule*/
}
.default-table > thead {
  color: #fafefd;
  background-color: #2c2c46;
}
.default-table > thead th {
  padding: 1rem 2rem;
  font-weight: 600;
  text-align: left;
}
.default-table > tbody tr:nth-of-type(even) {
  background-color: #f2f2f2;
}
.default-table > tbody td {
  padding: 1rem 2rem;
}
.default-table.-orderTabs {
  margin-bottom: 20px;
  width: 99%;
}
.default-table.-orderTabs th:last-child,
.default-table.-orderTabs td:last-child {
  width: 99%;
}
.default-table.-orderTabs th,
.default-table.-orderTabs td {
  white-space: nowrap;
}

.alert-message {
  visibility: hidden;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 999;
  border: 1px solid;
  box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.15);
  opacity: 0;
  top: 2%;
  transition: all 0.3s ease-in-out;
}
.alert-message > .icon.-messageType {
  background-position: 1.6rem 1.6rem;
  height: 5rem;
  width: 5rem;
  float: left;
}
.alert-message > .text {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 1.6rem 2.8rem 1.8rem 1.8rem;
  display: inline-block;
}
.alert-message > .icon.-close {
  width: 1rem;
  height: 1rem;
  cursor: pointer;
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  opacity: 0.5;
}
.alert-message.-show {
  opacity: 1;
  top: 1%;
  visibility: visible;
}
.alert-message.-success {
  background: #e2f6e8;
  color: #31a853;
  border-color: #31a853;
}
.alert-message.-success > .icon.-messageType {
  background-image: url("data:image/svg+xml;utf8,<svg fill='white' xmlns='http://www.w3.org/2000/svg'><path d='M16.9,0L8.1,10.1L3.3,5.5L0,8.7l8.1,7.2L20.4,2.8L16.9,0z'/></svg>");
  background-color: #31a853;
}
.alert-message.-success > .icon.-close {
  fill: #31a853;
}
.alert-message.-failure {
  background: #f9e8e8;
  color: #b62d2c;
  border-color: #b62d2c;
  width: 30rem;
}
.alert-message.-failure > .icon.-messageType {
  background-image: url("data:image/svg+xml;utf8,<svg fill='white' xmlns='http://www.w3.org/2000/svg'><path d='M16.9,0L8.1,10.1L3.3,5.5L0,8.7l8.1,7.2L20.4,2.8L16.9,0z'/></svg>");
  background-color: #b62d2c;
}
.alert-message.-failure > .icon.-close {
  fill: #b62d2c;
}

.date-time-picker {
  display: block;
  position: relative;
  height: 100%;
}
.date-time-picker > header {
  background: #222236;
  border-bottom: 1px solid #535385;
  border-radius: 0.4rem 0.4rem 0 0;
  line-height: 3.5rem;
  display: flex;
  align-items: center;
}
.date-time-picker > header > div {
  width: 50%;
  text-align: center;
}
.date-time-picker > header .icon {
  fill: #b9b8d7;
  width: 1.6rem;
  height: 1.6rem;
}
.date-time-picker > header .icon.-active {
  fill: #389eda;
}
.date-time-picker > section {
  position: relative;
  height: 192px;
}
.date-time-picker > section .clock {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #2c2c46;
}
.date-time-picker > section .table-layout {
  display: table;
  width: 100%;
  font-size: 3rem;
}
.date-time-picker > section .increment, .date-time-picker > section .values, .date-time-picker > section .decrement {
  display: table-row;
}
.date-time-picker > section .increment > div, .date-time-picker > section .values > div, .date-time-picker > section .decrement > div {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}
.date-time-picker > section .increment > div > i, .date-time-picker > section .values > div > i, .date-time-picker > section .decrement > div > i {
  padding: 1rem;
}
.date-time-picker > section .increment > div > i:hover(), .date-time-picker > section .values > div > i:hover(), .date-time-picker > section .decrement > div > i:hover() {
  background-color: lightgray;
}
.date-time-picker > section .values > div:last-child() span {
  padding: 1rem;
}
.date-time-picker > section .values > div:last-child() span:hover() {
  background-color: lightgray;
}

.inputField.-withClear > input {
  padding-right: 3rem;
  text-overflow: ellipsis;
}
.inputField.-withClear > .-clear {
  position: absolute;
  top: 0.9rem;
  right: 0.5rem;
  cursor: pointer;
  background: #2383bc;
  border-radius: 50%;
}
.inputField.-withClear > .-clear .icon {
  width: 0.8rem;
  height: 0.8rem;
  margin: 0.5rem;
  fill: white;
}

.orderdetail-panel {
  z-index: 13;
  background: #ffffff;
  /* Old browsers */
  background: -moz-linear-gradient(top, #ffffff 0%, #f5f5f5 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #f5f5f5));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #ffffff 0%, #f5f5f5 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #ffffff 0%, #f5f5f5 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #ffffff 0%, #f5f5f5 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #ffffff 0%, #f5f5f5 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#000000",GradientType=0 );
  /* IE6-9 */
  padding: 0 2rem;
  -webkit-overflow-scrolling: touch;
  position: fixed;
  left: 0;
  bottom: -25rem;
  width: 100%;
  height: 23.5rem;
  box-shadow: 0px 0px 1.8rem rgba(0, 0, 0, 0.35);
  box-sizing: border-box;
  display: flex;
  transition: all 0.4s ease-in-out;
}
.orderdetail-panel.-displayed {
  bottom: 0;
}
.orderdetail-panel.-expanded {
  bottom: 0;
  height: 65vh;
}
.orderdetail-panel > .close,
.orderdetail-panel > .expand {
  cursor: pointer;
  position: absolute;
  top: 1.3rem;
  right: 3rem;
  text-transform: uppercase;
  color: #2383bc;
  font-weight: 600;
  z-index: 6;
}
.orderdetail-panel > .close > .icon,
.orderdetail-panel > .expand > .icon {
  fill: #2383bc;
  width: 1.3rem;
  height: 1.3rem;
  vertical-align: middle;
}
.orderdetail-panel > .close > .label,
.orderdetail-panel > .expand > .label {
  font-size: 1.5rem;
  vertical-align: bottom;
  margin-left: 0.3rem;
}
.orderdetail-panel > .expand {
  right: 5rem;
}
.orderdetail-panel > .expand > .icon {
  width: 1.5rem;
  height: 1.5rem;
}
.orderdetail-panel > .orderId {
  width: 20rem;
  height: 19rem;
  border: 1px solid #dbdbdb;
  border-radius: 4px;
  margin: 1.5rem 2.5rem 0 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #2c2c46;
}
.orderdetail-panel > .orderId > .mfr {
  font-weight: 700;
  font-size: 2rem;
  border-bottom: 1px solid #e3e3e3;
  padding-bottom: 0.8rem;
  margin-bottom: 0.8rem;
}
.orderdetail-panel > .orderId > .type {
  font-size: 1.7rem;
  font-weight: 600;
}
.orderdetail-panel > .orderId > .type > .icon {
  width: 2rem;
  height: 2rem;
  float: left;
  margin-right: 0.5rem;
  margin-top: -0.2rem;
}
.orderdetail-panel > .orderId > .issueSource {
  font-style: italic;
  font-size: 1.3rem;
  margin: 0.5rem 0.5rem 0 0.5rem;
  line-height: 1.5rem;
  width: 100%;
}
.orderdetail-panel > .orderId > .runName {
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.5rem;
  margin-left: 0.5rem;
}
.orderdetail-panel > order-detail-tabs {
  width: calc(100% - 24rem);
}
@media (max-width: 1550px) {
  .orderdetail-panel.-expanded {
    height: 75vh;
  }
}
@media (max-width: 1280px) {
  .orderdetail-panel.-expanded {
    height: 85vh;
  }
}
@media (max-width: 1400px) {
  .orderdetail-panel {
    height: 29rem;
    bottom: -30rem;
  }
  .orderdetail-panel .tab-container {
    padding: 1rem 0;
  }
  .orderdetail-panel .tab-container .tabItem {
    padding: 0.9rem 1rem;
  }
  .orderdetail-panel > .orderId {
    position: absolute;
    top: 0;
    left: 2rem;
    margin: 0;
    border: 0;
    width: calc(100% - 4rem);
    height: 4.5rem;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    background: whitesmoke;
    border-radius: 0 0 4px 4px;
  }
  .orderdetail-panel > .orderId > .mfr {
    border: 0;
    font-size: 1.7rem;
    margin: 0 2rem 0 1.5rem;
    padding: 0;
  }
  .orderdetail-panel > .orderId > .type {
    font-size: 1.6rem;
    margin: 0;
  }
  .orderdetail-panel > .orderId > .issueSource {
    margin-top: 0;
    margin-left: 1.5rem;
    width: auto;
  }
  .orderdetail-panel > order-detail-tabs {
    margin-top: 4rem;
    width: 100%;
  }
  .orderdetail-panel > order-detail-tabs .tabWrapper {
    height: 18rem;
  }
  .orderdetail-panel.-expanded > order-detail-tabs .tabWrapper {
    height: 100%;
  }
}

.edit-route-dialog {
  height: 57rem;
  position: relative;
}
.edit-route-dialog ux-dialog-body {
  width: 65vw;
  height: 60rem;
  min-width: 90rem;
  padding: 1rem 3rem;
  box-sizing: border-box;
  font-size: 1.4rem;
}
.edit-route-dialog header {
  text-align: center;
}
.edit-route-dialog header .title {
  font-size: 2.83rem;
  font-weight: 400;
  border-bottom: 1px solid #d4d4d4;
  padding-bottom: 1rem;
}
.edit-route-dialog header .title > .orderNumber {
  color: #2383bc;
}
.edit-route-dialog header .title .pieceMark {
  color: #2383bc;
}
.edit-route-dialog header .description {
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 3.5rem;
}
.edit-route-dialog .editRouteWrapper {
  display: flex;
  padding: 1rem 0 8rem;
  min-height: 21.6rem;
  overflow: auto;
}
.edit-route-dialog .editRouteWrapper .add-route {
  border: 1px solid #2383bc;
  border-radius: 50%;
  flex: 0 0 1.8rem;
  line-height: 2.5rem;
  height: 1.8rem;
  cursor: pointer;
  margin-top: 0.7rem;
}
.edit-route-dialog .editRouteWrapper .add-route > .icon {
  fill: #2383bc;
  padding: 0.4rem;
  box-sizing: border-box;
}
.edit-route-dialog .editRouteWrapper .add-route.-selected {
  background-color: #2383bc;
}
.edit-route-dialog .editRouteWrapper .add-route.-selected > .icon {
  fill: white;
}
.edit-route-dialog .editRouteWrapper .workcenter-list {
  display: inline-flex;
  flex: 1 0 auto;
  margin: 0 1.4rem;
  height: 4rem;
}
.edit-route-dialog .editRouteWrapper .workcenter-list > .work-center {
  flex: 1 1 auto;
  position: relative;
  margin-right: 2rem;
  min-width: 10rem;
  align-content: center;
}
.edit-route-dialog .editRouteWrapper .workcenter-list > .work-center:last-child {
  margin-right: 0;
}
.edit-route-dialog .editRouteWrapper .workcenter-list > .work-center:after {
  content: "";
  position: absolute;
  top: 1.6rem;
  right: -1.3rem;
  width: 6px;
  height: 6px;
  border-bottom: 1px solid #7f7f7f;
  border-right: 1px solid #7f7f7f;
  transform: rotate(-45deg);
}
.edit-route-dialog .editRouteWrapper .workcenter-list > .work-center:last-child:after {
  display: none;
}
.edit-route-dialog .editRouteWrapper .workcenter-list .legend {
  position: absolute;
  bottom: -22rem;
  grid-gap: 1.6rem;
  display: flex;
  width: fit-content;
}
.edit-route-dialog .editRouteWrapper .workcenter-list .legend > div {
  display: inline-flex;
  font-weight: 400;
  font-size: 1.5rem;
  align-items: center;
  color: #444444;
  min-width: 18rem;
}
.edit-route-dialog .editRouteWrapper .workcenter-list .legend > div:before {
  content: "";
  width: 16px;
  height: 16px;
}
.edit-route-dialog .editRouteWrapper .workcenter-list .legend div:first-child:before {
  background-color: #ededed;
}
.edit-route-dialog .editRouteWrapper .workcenter-list .legend div:last-child:before {
  background-color: #ababb5;
}
.edit-route-dialog .editRouteWrapper .workcenter-list .close {
  background: #2383bc;
  border-radius: 50%;
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 1.8rem;
  height: 1.8rem;
  cursor: pointer;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}
.edit-route-dialog .editRouteWrapper .workcenter-list .close .icon {
  fill: white;
  width: 0.8rem;
  height: 1.8rem;
  vertical-align: top;
}
.edit-route-dialog .editRouteWrapper .workcenter-list .add-route {
  position: absolute;
  bottom: -4.5rem;
  right: -2.2rem;
}
.edit-route-dialog .editRouteWrapper .workcenter-list .add-route:after {
  content: "";
  position: absolute;
  top: -2.8rem;
  left: 0.8rem;
  width: 1px;
  height: 2rem;
  border-left: 1px dashed #bababa;
}
.edit-route-dialog .editRouteWrapper .workcenter-list .date-container {
  position: absolute;
  bottom: -14.8rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  font-size: 1.5rem;
  font-weight: 400;
  color: #030303;
}
.edit-route-dialog .editRouteWrapper .workcenter-list .date-container span {
  align-self: center;
  width: 100%;
}
.edit-route-dialog .editRouteWrapper .workcenter-list .date-container-expected {
  background-color: #ededed;
}
.edit-route-dialog .editRouteWrapper .workcenter-list .date-container-completed {
  background-color: #ababb5;
}
.edit-route-dialog .work-area-selection h3 {
  font-weight: 600;
  border-bottom: 1px solid #d4d4d4;
  margin: 1rem 0;
  line-height: 3.5rem;
}
.edit-route-dialog .work-area-selection__items {
  max-height: 8.4rem;
  overflow-y: auto;
}
.edit-route-dialog .work-area-selection .item {
  display: inline-block;
  background-color: #2c2c46;
  border: 1px solid #514f8d;
  border-radius: 4px;
  margin: 0.5rem 0.25rem;
  color: white;
  font-weight: 600;
  line-height: 3rem;
  padding: 0 3rem;
  cursor: pointer;
}
.edit-route-dialog__loadingOverlay {
  position: absolute;
  inset: 0;
  background-color: var(--overlay-background);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  text-align: center;
}
.edit-route-dialog__loadingOverlay .edit-route-dialog__loadingContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: white;
  font-weight: 600;
}
.edit-route-dialog__loadingOverlay .edit-route-dialog__loadingContent indago-loading-spinner {
  transform: scale(0.75);
}

.actionItem-row {
  background: white;
  margin: 0.3rem 0;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  height: 4rem;
  justify-content: space-between;
}
.actionItem-row > .cell {
  padding: 0 1rem;
}
.actionItem-row > .cell.-orderNumber {
  color: #2383bc;
  font-weight: 700;
  font-size: 1.7rem;
}
.actionItem-row > .cell.-description {
  font-weight: 600;
}
.actionItem-row > .cell.-username {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: 1rem;
}
.actionItem-row > .cell.-username > .icon {
  margin-right: 0.5rem;
  width: 1.6rem;
  height: 1.6rem;
}
.actionItem-row > .cell.-user {
  min-width: 35rem;
  max-width: 35rem;
}
.actionItem-row > .cell.-user .-username {
  display: flex;
  gap: 0.4rem;
}
.actionItem-row > .cell.-separator {
  padding: 0;
  opacity: 0.7;
}

.actionsHistory-dialog ux-dialog-body {
  height: 50vh;
  width: 60vw;
  min-width: 90rem;
  padding: 1rem 4rem;
  box-sizing: border-box;
  font-size: 1.4rem;
  overflow-y: auto;
}
.actionsHistory-dialog header {
  text-align: center;
}
.actionsHistory-dialog header .title {
  font-size: 2.83rem;
  font-weight: 400;
  border-bottom: 1px solid #d4d4d4;
  padding-bottom: 1rem;
}
.actionsHistory-dialog header .title > .orderNumber {
  color: #2383bc;
}
.actionsHistory-dialog .actionHistoryWrapper .actionItem-row {
  background: #f6f6f6;
}

.change-request-dialog ux-dialog-header {
  border: 0;
}
.change-request-dialog ux-dialog-body {
  width: 75rem;
  min-height: 50rem;
  position: relative;
  padding: 0;
}
.change-request-dialog ux-dialog-footer button.-reject {
  background: linear-gradient(to bottom, #aa4347 0%, #82312e 100%);
}
.change-request-dialog ux-dialog-footer button.-reject:hover {
  background: linear-gradient(to bottom, #c06064 0%, #a83f3b 100%);
}
.change-request-dialog ux-dialog-footer button.-approve {
  background: linear-gradient(to bottom, #389b48 0%, #267933 100%);
}
.change-request-dialog ux-dialog-footer button.-approve:hover {
  background: linear-gradient(to bottom, #49bd5c 0%, #32a043 100%);
}
.change-request-dialog .orderSearch-bar {
  background-color: #3b3b4b;
  width: 100%;
  padding: 2rem;
  box-sizing: border-box;
}
.change-request-dialog .orderSearch-bar .searchWrapper {
  width: 80%;
  position: relative;
  margin: 0 auto;
}
.change-request-dialog .orderSearch-bar .indagoIcon {
  position: absolute;
  left: 1.7rem;
  top: 1.5rem;
}
.change-request-dialog .orderSearch-bar .indagoIcon .icon {
  fill: #808080;
}
.change-request-dialog .orderSearch-bar .searchInput {
  width: 93%;
  font-size: 1.6rem;
  padding: 1.3rem 0 1.3rem 4.4rem;
  box-sizing: content-box;
}
.change-request-dialog .orderSearch-bar .-searchButton {
  position: absolute;
  right: 0.6rem;
  top: 0.7rem;
}
.change-request-dialog .selected-order {
  margin: 2rem;
}
.change-request-dialog .searchResults {
  margin: 2rem;
  height: 74%;
}
.change-request-dialog .results-container {
  overflow-y: auto;
  height: 88%;
}
.change-request-dialog .selectable-order {
  border: 1px solid #e4e4e4;
  box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  margin-top: 0.8rem;
  padding: 1.5rem;
}
.change-request-dialog .selectable-order:hover {
  border: 1px solid #2383bc;
  box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.5);
}
.change-request-dialog .selectable-order > .highlight {
  color: #2383bc;
  font-weight: 700;
}
.change-request-dialog .requestBody header {
  border-bottom: 1px solid #d4d4d4;
  color: #030303;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
}
.change-request-dialog .requestBody header .orderIdentification {
  font-size: 2rem;
}
.change-request-dialog .requestBody header .orderType {
  font-size: 1.8rem;
  float: right;
  font-weight: 600;
}
.change-request-dialog .requestBody header .icon {
  vertical-align: -2px;
}
.change-request-dialog .requestBody header .emphasis {
  font-weight: 700;
}
.change-request-dialog .request-type {
  background-color: #f3f3f3;
  border: 1px solid #ccc;
  display: flex;
  align-items: stretch;
  position: relative;
}
.change-request-dialog .request-type.-rush {
  border-color: #b62d2c;
}
.change-request-dialog .request-type.-rush .requestTypeIcon .icon {
  fill: #b62d2c;
}
.change-request-dialog .request-type.-rush .requestTypeIcon:after {
  border-right: 1px solid #b62d2c;
}
.change-request-dialog .request-type.-bump {
  border-color: #50b4cc;
}
.change-request-dialog .request-type.-bump .requestTypeIcon .icon {
  fill: #50b4cc;
}
.change-request-dialog .request-type.-bump .requestTypeIcon:after {
  border-right: 1px solid #50b4cc;
}
.change-request-dialog .request-type .-override {
  text-decoration: line-through;
}
.change-request-dialog .request-type .column {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 0;
}
.change-request-dialog .request-type .column .text {
  color: #4b4b4b;
  font-weight: 600;
  margin: 0.7rem 0;
}
.change-request-dialog .request-type .column .date {
  color: #808080;
  font-size: 2.2rem;
  margin: 0.5rem 0;
}
.change-request-dialog .request-type .column .date .calendar {
  margin-left: 1rem;
}
.change-request-dialog .request-type .column .form {
  margin-bottom: 0.7rem;
}
.change-request-dialog .request-type .column .form input {
  width: 8.5rem;
  text-align: center;
}
.change-request-dialog .request-type .requestTypeIcon {
  position: relative;
  background-color: #f3f3f3;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.change-request-dialog .request-type .requestTypeIcon::after {
  content: "";
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
}
.change-request-dialog .request-type .requestTypeIcon .iconWrapper {
  position: relative;
  margin: 0 0.5rem;
  display: inline-block;
  width: 6.5rem;
  text-align: center;
}
.change-request-dialog .request-type .requestTypeIcon .iconWrapper .icon {
  width: 2.5rem;
  height: 2.5rem;
  margin: 8px 0;
  position: relative;
  z-index: 2;
  padding: 0 5px;
  background-color: #f3f3f3;
}
.change-request-dialog .request-type .requestTypeIcon .iconWrapper:after, .change-request-dialog .request-type .requestTypeIcon .iconWrapper:before {
  content: "";
  position: absolute;
  z-index: 1;
}
.change-request-dialog .request-type .requestTypeIcon .iconWrapper:after {
  background: #cccccc;
  width: 100%;
  height: 3px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.change-request-dialog .request-type .requestTypeIcon .iconWrapper:before {
  border-top: 3px solid #cccccc;
  border-right: 3px solid #cccccc;
  width: 0.7rem;
  height: 0.7rem;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.change-request-dialog .wrapper {
  margin-top: 2rem;
  overflow: hidden;
}
.change-request-dialog .wrapper .order-details {
  float: left;
  width: 48%;
}
.change-request-dialog .wrapper .order-details .tab-container {
  margin: 0 0 1.6rem 0;
}
.change-request-dialog .wrapper .order-details .orderInfo-tab {
  display: flex;
  flex-wrap: wrap;
}
.change-request-dialog .wrapper .order-details .orderInfo-tab .element {
  flex: 0 0 50%;
  margin: 0.5rem 0;
  line-height: 2rem;
}
.change-request-dialog .wrapper .order-details .orderInfo-tab .element:first-child {
  flex: 0 0 100%;
}
.change-request-dialog .wrapper .order-details .orderInfo-tab .label {
  font-weight: 600;
}
.change-request-dialog .wrapper .order-details .orderItem-tab {
  height: 21rem;
  overflow-y: auto;
}
.change-request-dialog .wrapper .order-details .orderItem-tab .orderItem {
  background: #f2f2f2;
  padding: 1rem 1.3rem;
  margin-bottom: 0.6rem;
  line-height: 2.1rem;
  margin-right: 0.2rem;
  font-size: 1.4rem;
}
.change-request-dialog .wrapper .order-details .orderItem-tab .orderItem .element span:first-child {
  font-weight: 600;
}
.change-request-dialog .wrapper .changeRequest-summary .element {
  margin-bottom: 0.6rem;
  line-height: 2.1rem;
  font-size: 1.4rem;
}
.change-request-dialog .wrapper .changeRequest-summary .element span:first-child {
  font-weight: 600;
}
.change-request-dialog .wrapper .changeRequest-details {
  float: right;
  width: 49%;
  display: flex;
  flex-wrap: wrap;
}
.change-request-dialog .wrapper .changeRequest-details .element {
  flex: 0 0 46%;
  margin: 0.8rem 0;
}
.change-request-dialog .wrapper .changeRequest-details .element.-wide {
  flex: 0 0 100%;
}
.change-request-dialog .wrapper .changeRequest-details .element:first-child {
  margin-right: 1rem;
}
.change-request-dialog .wrapper .changeRequest-details label {
  font-weight: 600;
  display: block;
  margin-bottom: 0.7rem;
}
.change-request-dialog .wrapper .changeRequest-details .select,
.change-request-dialog .wrapper .changeRequest-details .textarea {
  width: 100%;
}
.change-request-dialog .wrapper .changeRequest-details .textarea {
  height: 6rem;
}
.change-request-dialog .wrapper .changeRequest-details input[type=checkbox] + label {
  display: inline;
}
.change-request-dialog .wrapper .changeRequest-details input[type=checkbox]:disabled + label {
  color: #9a9a9a;
}
.change-request-dialog .confirmationWrapper {
  margin-top: 3rem;
}
.change-request-dialog .confirmationWrapper .title {
  font-size: 2.1rem;
  color: #595959;
  font-weight: 600;
  margin: 2rem 0;
}
.change-request-dialog .confirmationWrapper .title span {
  font-weight: 700;
}
.change-request-dialog .confirmationWrapper.-approve .title span {
  color: #267933;
}
.change-request-dialog .confirmationWrapper.-reject .title span {
  color: #aa4347;
}
.change-request-dialog .confirmationWrapper.-reject .form label {
  font-weight: 600;
  display: block;
  color: #4b4b4b;
  margin-bottom: 1rem;
}
.change-request-dialog .confirmationWrapper.-reject .form textarea {
  width: 100%;
  height: 12rem;
}
.change-request-dialog .bumpConfirmationWrapper {
  margin-top: 4rem;
}
.change-request-dialog .bumpConfirmationWrapper h2 {
  color: #595959;
  font-weight: 600;
  font-size: 1.9rem;
}
.change-request-dialog .bumpConfirmationWrapper strong {
  color: #2383bc;
}

.cancel-dialog ux-dialog-header {
  border: 0;
}
.cancel-dialog ux-dialog-body {
  min-height: 25rem;
  position: relative;
  padding-left: 1rem;
}
.cancel-dialog .cancel-element {
  flex: 0 0 46%;
  margin: 0.8rem 0;
}
.cancel-dialog .cancel-element.-wide {
  flex: 0 0 100%;
}
.cancel-dialog .cancel-element:first-child {
  margin-right: 1rem;
}
.cancel-dialog .cancel-label {
  font-weight: 600;
  display: block;
  margin-bottom: 0.7rem;
}
.cancel-dialog .cancel-select,
.cancel-dialog .cancel-textarea {
  width: 100%;
}
.cancel-dialog .cancel-textarea {
  height: 6rem;
}

.change-request-dialog-asset ux-dialog-header {
  border: 0;
}
.change-request-dialog-asset ux-dialog-body {
  /* width: 100rem;*/
  width: 70rem;
  min-height: 50rem;
  position: relative;
  padding: 0;
}
.change-request-dialog-asset .details-header {
  margin-bottom: 0rem;
  margin-right: 1rem;
  margin-left: 2rem;
  background-color: #f7f7f7;
}
.change-request-dialog-asset .details-line {
  margin-right: 2rem;
  margin-left: 2rem;
  background-color: #d4d4d4;
  border: 1px inset;
}
.change-request-dialog-asset .header-line {
  background-color: #f7f7f7;
}
.change-request-dialog-asset .label-capacity {
  margin-left: 2rem;
}
.change-request-dialog-asset .capacityBlock {
  gap: 1rem;
  float: right;
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: 2rem;
}
.change-request-dialog-asset ux-dialog-footer {
  padding: initial;
}
.change-request-dialog-asset ux-dialog-footer button.-reject {
  background: linear-gradient(to bottom, #aa4347 0%, #82312e 100%);
}
.change-request-dialog-asset ux-dialog-footer button.-reject:hover {
  background: linear-gradient(to bottom, #c06064 0%, #a83f3b 100%);
}
.change-request-dialog-asset ux-dialog-footer button.-approve {
  background: linear-gradient(to bottom, #389b48 0%, #267933 100%);
}
.change-request-dialog-asset ux-dialog-footer button.-approve:hover {
  background: linear-gradient(to bottom, #49bd5c 0%, #32a043 100%);
}
.change-request-dialog-asset .orderSearch-bar {
  background-color: #3b3b4b;
  width: 100%;
  padding: 2rem;
  box-sizing: border-box;
}
.change-request-dialog-asset .orderSearch-bar .searchWrapper {
  width: 80%;
  position: relative;
  margin: 0 auto;
}
.change-request-dialog-asset .orderSearch-bar .indagoIcon {
  position: absolute;
  left: 1.7rem;
  top: 1.5rem;
}
.change-request-dialog-asset .orderSearch-bar .indagoIcon .icon {
  fill: #808080;
}
.change-request-dialog-asset .orderSearch-bar .searchInput {
  width: 93%;
  font-size: 1.6rem;
  padding: 1.3rem 0 1.3rem 4.4rem;
  box-sizing: content-box;
}
.change-request-dialog-asset .orderSearch-bar .-searchButton {
  position: absolute;
  right: 0.6rem;
  top: 0.7rem;
}
.change-request-dialog-asset .selected-order {
  /*margin: 2rem;*/
}
.change-request-dialog-asset .searchResults {
  margin: 2rem;
  height: 74%;
}
.change-request-dialog-asset .results-container {
  overflow-y: auto;
  height: 88%;
}
.change-request-dialog-asset .selectable-order {
  border: 1px solid #e4e4e4;
  box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  /*margin-top: .8rem;*/
  padding: 1.5rem;
}
.change-request-dialog-asset .selectable-order:hover {
  border: 1px solid #2383bc;
  box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.5);
}
.change-request-dialog-asset .selectable-order > .highlight {
  color: #2383bc;
  font-weight: 700;
}
.change-request-dialog-asset .requestBody header {
  border-bottom: 1px solid #d4d4d4;
  color: #030303;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
}
.change-request-dialog-asset .requestBody header .orderIdentification {
  font-size: 2rem;
}
.change-request-dialog-asset .requestBody header .orderType {
  font-size: 1.8rem;
  float: right;
  font-weight: 600;
}
.change-request-dialog-asset .requestBody header .icon {
  vertical-align: -2px;
}
.change-request-dialog-asset .requestBody header .emphasis {
  font-weight: 700;
}
.change-request-dialog-asset .request-type {
  background-color: #f3f3f3;
  border: 1px solid #ccc;
  display: flex;
  align-items: stretch;
  position: relative;
}
.change-request-dialog-asset .request-type.-rush {
  border-color: #b62d2c;
}
.change-request-dialog-asset .request-type.-rush .requestTypeIcon .icon {
  fill: #b62d2c;
}
.change-request-dialog-asset .request-type.-rush .requestTypeIcon:after {
  border-right: 1px solid #b62d2c;
}
.change-request-dialog-asset .request-type.-bump {
  border-color: #50b4cc;
}
.change-request-dialog-asset .request-type.-bump .requestTypeIcon .icon {
  fill: #50b4cc;
}
.change-request-dialog-asset .request-type.-bump .requestTypeIcon:after {
  border-right: 1px solid #50b4cc;
}
.change-request-dialog-asset .request-type .-override {
  text-decoration: line-through;
}
.change-request-dialog-asset .request-type .column {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 0;
}
.change-request-dialog-asset .request-type .column .text {
  color: #4b4b4b;
  font-weight: 600;
  margin: 0.7rem 0;
}
.change-request-dialog-asset .request-type .column .date {
  color: #808080;
  font-size: 2.2rem;
  margin: 0.5rem 0;
}
.change-request-dialog-asset .request-type .column .date .calendar {
  margin-left: 1rem;
}
.change-request-dialog-asset .request-type .column .form {
  margin-bottom: 0.7rem;
}
.change-request-dialog-asset .request-type .column .form input {
  width: 8.5rem;
  text-align: center;
}
.change-request-dialog-asset .request-type .requestTypeIcon {
  position: relative;
  background-color: #f3f3f3;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.change-request-dialog-asset .request-type .requestTypeIcon::after {
  content: "";
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
}
.change-request-dialog-asset .request-type .requestTypeIcon .iconWrapper {
  position: relative;
  margin: 0 0.5rem;
  display: inline-block;
  width: 6.5rem;
  text-align: center;
}
.change-request-dialog-asset .request-type .requestTypeIcon .iconWrapper .icon {
  width: 2.5rem;
  height: 2.5rem;
  margin: 8px 0;
  position: relative;
  z-index: 2;
  padding: 0 5px;
  background-color: #f3f3f3;
}
.change-request-dialog-asset .request-type .requestTypeIcon .iconWrapper:after, .change-request-dialog-asset .request-type .requestTypeIcon .iconWrapper:before {
  content: "";
  position: absolute;
  z-index: 1;
}
.change-request-dialog-asset .request-type .requestTypeIcon .iconWrapper:after {
  background: #cccccc;
  width: 100%;
  height: 3px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.change-request-dialog-asset .request-type .requestTypeIcon .iconWrapper:before {
  border-top: 3px solid #cccccc;
  border-right: 3px solid #cccccc;
  width: 0.7rem;
  height: 0.7rem;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.change-request-dialog-asset .wrapper {
  margin-top: 2rem;
  overflow: hidden;
}
.change-request-dialog-asset .wrapper .order-details {
  float: left;
  width: 48%;
}
.change-request-dialog-asset .wrapper .order-details .tab-container {
  margin: 0 0 1.6rem 0;
}
.change-request-dialog-asset .wrapper .order-details .orderInfo-tab {
  display: flex;
  flex-wrap: wrap;
}
.change-request-dialog-asset .wrapper .order-details .orderInfo-tab .element {
  flex: 0 0 50%;
  margin: 0.5rem 0;
  line-height: 2rem;
}
.change-request-dialog-asset .wrapper .order-details .orderInfo-tab .element:first-child {
  flex: 0 0 100%;
}
.change-request-dialog-asset .wrapper .order-details .orderInfo-tab .label {
  font-weight: 600;
}
.change-request-dialog-asset .wrapper .order-details .orderItem-tab {
  height: 21rem;
  overflow-y: auto;
}
.change-request-dialog-asset .wrapper .order-details .orderItem-tab .orderItem {
  background: #f2f2f2;
  padding: 1rem 1.3rem;
  margin-bottom: 0.6rem;
  line-height: 2.1rem;
  margin-right: 0.2rem;
  font-size: 1.4rem;
}
.change-request-dialog-asset .wrapper .order-details .orderItem-tab .orderItem .element span:first-child {
  font-weight: 600;
}
.change-request-dialog-asset .wrapper .changeRequest-summary .element {
  margin-bottom: 0.6rem;
  line-height: 2.1rem;
  font-size: 1.4rem;
}
.change-request-dialog-asset .wrapper .changeRequest-summary .element span:first-child {
  font-weight: 600;
}
.change-request-dialog-asset .wrapper .changeRequest-details {
  float: right;
  width: 49%;
  display: flex;
  flex-wrap: wrap;
}
.change-request-dialog-asset .wrapper .changeRequest-details .element {
  flex: 0 0 46%;
  margin: 0.8rem 0;
}
.change-request-dialog-asset .wrapper .changeRequest-details .element.-wide {
  flex: 0 0 100%;
}
.change-request-dialog-asset .wrapper .changeRequest-details .element:first-child {
  margin-right: 1rem;
}
.change-request-dialog-asset .wrapper .changeRequest-details label {
  font-weight: 600;
  display: block;
  margin-bottom: 0.7rem;
}
.change-request-dialog-asset .wrapper .changeRequest-details .select,
.change-request-dialog-asset .wrapper .changeRequest-details .textarea {
  width: 100%;
}
.change-request-dialog-asset .wrapper .changeRequest-details .textarea {
  height: 6rem;
}
.change-request-dialog-asset .wrapper .changeRequest-details input[type=checkbox] + label {
  display: inline;
}
.change-request-dialog-asset .wrapper .changeRequest-details input[type=checkbox]:disabled + label {
  color: #9a9a9a;
}
.change-request-dialog-asset .confirmationWrapper {
  margin-top: 3rem;
}
.change-request-dialog-asset .confirmationWrapper .title {
  font-size: 2.1rem;
  color: #595959;
  font-weight: 600;
  margin: 2rem 0;
}
.change-request-dialog-asset .confirmationWrapper .title span {
  font-weight: 700;
}
.change-request-dialog-asset .confirmationWrapper.-approve .title span {
  color: #267933;
}
.change-request-dialog-asset .confirmationWrapper.-reject .title span {
  color: #aa4347;
}
.change-request-dialog-asset .confirmationWrapper.-reject .form label {
  font-weight: 600;
  display: block;
  color: #4b4b4b;
  margin-bottom: 1rem;
}
.change-request-dialog-asset .confirmationWrapper.-reject .form textarea {
  width: 100%;
  height: 12rem;
}
.change-request-dialog-asset .bumpConfirmationWrapper {
  margin-top: 4rem;
}
.change-request-dialog-asset .bumpConfirmationWrapper h2 {
  color: #595959;
  font-weight: 600;
  font-size: 1.9rem;
}
.change-request-dialog-asset .bumpConfirmationWrapper strong {
  color: #2383bc;
}
.change-request-dialog-asset .error-description {
  padding: 1rem 1rem;
}
.change-request-dialog-asset .footer-button {
  margin-right: 0.5rem;
}

.change-request-asset-details {
  margin-top: 0rem;
  margin-bottom: 0rem;
  margin-right: 1rem;
  margin-left: 1rem;
}
.change-request-asset-details input {
  width: calc(100% - 2rem);
}
.change-request-asset-details textarea {
  margin: 0;
  resize: none;
}
.change-request-asset-details .widefield {
  margin-top: 0;
  line-height: 1.2;
  height: 100%;
}
.change-request-asset-details label {
  margin: 0;
  align-self: center;
}
.change-request-asset-details .formGroup:nth-child(2) {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.change-request-asset-details .generalForm {
  display: grid;
  grid-template-columns: fit-content(10rem) fit-content(27rem) fit-content(0);
  grid-gap: 3rem;
  padding: 2rem;
  /*outline: 2px solid #1a65b0;*/
  background-color: #f7f7f7;
}
.change-request-asset-details .generalForm span {
  align-self: center;
}
.change-request-asset-details .generalForm button {
  height: 3rem;
}
.change-request-asset-details .generalForm .userActions {
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.change-request-asset-details .generalForm .formGroup .activeField {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.change-request-asset-details .generalForm .formGroup .activeField label {
  border: none;
}
.change-request-asset-details .generalForm .formGroup .activeField input[type=checkbox] {
  width: fit-content;
}
.change-request-asset-details .generalForm .formGroup .fieldtitle__bold {
  line-height: 2rem;
  font-weight: 700;
  font-size: 1.4rem;
}
.change-request-asset-details .generalForm .formGroup__auditDetails {
  display: grid;
  color: white;
  background: #2c2c46;
  row-gap: 3rem;
  padding: 2rem 2rem;
}
.change-request-asset-details .generalForm .formGroup__auditDetails :first-child,
.change-request-asset-details .generalForm .formGroup__auditDetails :nth-child(3n+4) {
  grid-column: -1;
}
.change-request-asset-details .generalForm .formGroup__auditDetails div {
  display: flex;
  flex-direction: column;
}
.change-request-asset-details .generalForm .formGroup__auditDetails div span {
  align-self: baseline;
}
.change-request-asset-details .generalForm .formGroup__auditDetails span.datefield {
  font-weight: 700;
  color: #b9b8d7;
}
.change-request-asset-details .generalForm .formGroup__auditDetails label.fieldtitle, .change-request-asset-details .generalForm .formGroup__auditDetails indago-select-options.widefield > label {
  border-bottom: 1px solid #b9b8d7;
  max-width: 15rem;
  margin-bottom: 0.7rem;
  align-self: baseline;
}
@media screen and (max-width: 1000px) {
  .change-request-asset-details .generalForm .formGroup__auditDetails {
    max-width: 15rem;
  }
}
.change-request-asset-details .generalForm .formGroup__entityDetails {
  display: grid;
  grid-template-columns: 1fr 2fr;
  padding: 2rem 2rem;
  grid-column-gap: 3rem;
}
.change-request-asset-details .generalForm .formGroup__entityDetails .fieldtitle, .change-request-asset-details .generalForm .formGroup__entityDetails indago-select-options.widefield > label {
  grid-column: 1;
}
.change-request-asset-details .generalForm .formGroup__entityDetails .fieldtitle :nth-child(1), .change-request-asset-details .generalForm .formGroup__entityDetails indago-select-options.widefield > label :nth-child(1) {
  grid-template-columns: -1;
}
.change-request-asset-details .generalForm .formGroup__entityDetails .fieldtitle:nth-child(1), .change-request-asset-details .generalForm .formGroup__entityDetails indago-select-options.widefield > label:nth-child(1) {
  grid-column: -1;
}
.change-request-asset-details .generalForm .formGroup__entityDetails span:first-of-type {
  min-width: 15rem;
}
.change-request-asset-details .generalForm .formGroup__entityDetails span.description {
  overflow-y: auto;
  max-height: 5rem;
  grid-row: 2/4;
  grid-column: -1;
  max-width: 40rem;
  min-width: 20rem;
  height: 100%;
}
.change-request-asset-details .generalForm__isEditing {
  /*grid-template-columns: minmax(10rem, 20rem) minmax(15rem, 35rem) fit-content(0);*/
  grid-template-columns: minmax(20rem, 20rem) minmax(20rem, 35rem) minmax(20rem, 55rem);
  grid-gap: 3rem;
}
.change-request-asset-details .generalForm__isEditing label {
  border: none;
  margin: 0.7rem;
}
.change-request-asset-details .generalForm__isEditing .formGroup__auditDetails {
  margin-top: 0%;
  margin-bottom: 0;
  margin-right: 1rem;
}
.change-request-asset-details .generalForm__isEditing .formGroup .select {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .change-request-asset-details .generalForm__isEditing {
    grid-template-columns: minmax(10rem, 25rem) minmax(15rem, 40rem) minmax(7rem, 45rem) minmax(10rem, 10rem);
  }
}
.change-request-asset-details .generalForm__isEditing_Location {
  grid-template-columns: minmax(10rem, 20rem) minmax(10rem, 20rem) minmax(10rem, 20rem);
  grid-gap: 3rem;
}
.change-request-asset-details .generalForm__isEditing_Location label {
  border: none;
  margin: 0.7rem;
  align-self: flex-start;
}
.change-request-asset-details .generalForm__isEditing_Location .formGroup__auditDetails {
  margin: auto;
}
.change-request-asset-details .generalForm__isEditing_Location .select {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .change-request-asset-details .generalForm__isEditing_Location {
    grid-template-columns: minmax(10rem, 25rem) minmax(15rem, 40rem) minmax(7rem, 45rem) minmax(10rem, 10rem);
  }
}

.assetCapcityGrid {
  border-collapse: collapse;
  width: 95%;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  line-height: 4rem;
  font-weight: 700;
}
.assetCapcityGrid thead > tr:nth-child(1) {
  background-color: #2c2c46;
}
.assetCapcityGrid th {
  color: #fafefd;
  font-weight: 400;
  text-align: left;
  padding: 0.7rem 1.6rem;
}
.assetCapcityGrid tbody tr:nth-of-type(odd) {
  background-color: #f2f2f2;
}
.assetCapcityGrid tbody tr.isDirectional {
  border: 1px solid #ffbb4d;
  background-color: #fff6e8;
}
.assetCapcityGrid tbody tr.onHold {
  border: 1px solid #f6b4c8;
  background-color: #fdf4f7;
}
.assetCapcityGrid tbody td {
  padding: 0.7rem 1.6rem;
}
.assetCapcityGrid tbody .select {
  width: 100%;
}
.assetCapcityGrid tbody .select option {
  background-color: #f5f5f5;
}
.assetCapcityGrid tbody .span {
  align-self: center;
}
.assetCapcityGrid tbody .fieldinput {
  width: 100%;
  height: 3.3rem;
  line-height: 100%;
  border: 1px solid #d0d0d0;
  box-shadow: 0px 3px 3px -3px rgba(0, 0, 0, 0.45);
  background: #f5f5f5;
  border-radius: 0;
  font-size: 1.5rem;
}

.expectedDatesTabGrid {
  border-collapse: collapse;
  width: 100%;
  font-size: 1.4rem;
}
.expectedDatesTabGrid thead {
  height: 1rem;
}
.expectedDatesTabGrid thead tr:nth-child(2) {
  background-color: #2c2c46;
}
.expectedDatesTabGrid th {
  color: white;
  font-weight: unset;
  text-align: center;
  padding: 0.7rem 1.2rem;
  height: 2.8rem;
}
.expectedDatesTabGrid headert {
  text-align: center;
  background-color: #e2e2e2;
  color: black;
}
.expectedDatesTabGrid tbody tr:nth-of-type(odd) {
  background-color: #f2f2f2;
}
.expectedDatesTabGrid tbody tr.isDirectional {
  border: 1px solid #ffbb4d;
  background-color: #fff6e8;
}
.expectedDatesTabGrid tbody tr.onHold {
  border: 1px solid #f6b4c8;
  background-color: #fdf4f7;
}
.expectedDatesTabGrid tbody tr {
  line-height: 0.1rem;
  height: 0.2rem;
}
.expectedDatesTabGrid tbody td {
  /*padding: 0.7rem 1.6rem; */
  text-align: center;
}
.expectedDatesTabGrid tbody td .grid-cell {
  justify-content: flex-start;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  padding: 0.4rem 0.8rem;
  color: #030303;
  padding: 0.4rem 0;
  text-align: center;
}
.expectedDatesTabGrid tbody td .grid-cell input {
  width: calc(100% - 1rem);
  border-width: 1px;
  height: 2.8rem;
  text-align: center;
  max-width: 3rem;
}
.expectedDatesTabGrid tbody td .grid-cell__user-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 6rem;
}
.expectedDatesTabGrid tbody td .grid-cell__user-actions div {
  cursor: pointer;
}
.expectedDatesTabGrid tbody td .grid-cell__user-actions icon {
  padding: 0.5rem;
  display: flex;
  cursor: pointer;
}
.expectedDatesTabGrid tbody td .grid-cell__user-actions icon .icon {
  width: auto;
}
.expectedDatesTabGrid tbody td .grid-cell input:disabled,
.expectedDatesTabGrid tbody td .grid-cell textarea:disabled {
  border-color: transparent;
  background-color: inherit;
  color: #030303;
}
.expectedDatesTabGrid tbody td .grid-cell textarea {
  resize: none;
  padding: 0.3rem;
  border: 1px solid #858585;
  box-shadow: none;
  vertical-align: middle;
  width: 100%;
  background-color: #ffffff;
  height: 3.2rem;
  align-self: center;
  max-width: 50rem;
  padding-top: 0.6rem;
}
.expectedDatesTabGrid tbody td .grid-cell:nth-child(6), .expectedDatesTabGrid tbody td .grid-cell:nth-child(11) {
  justify-content: center;
}
.expectedDatesTabGrid tbody .select {
  width: 100%;
}
.expectedDatesTabGrid tbody .select option {
  background-color: #f5f5f5;
}
.expectedDatesTabGrid tbody .span {
  align-self: center;
}
.expectedDatesTabGrid tbody .fieldinput {
  width: 5rem;
  height: 2.8rem;
  line-height: 100%;
  border: 1px solid #d0d0d0;
  box-shadow: 0px 3px 3px -3px rgba(0, 0, 0, 0.45);
  background: #f5f5f5;
  border-radius: 0;
  font-size: 1.4rem;
}

th.expectedDatesTabGridTitle {
  text-align: center;
  background-color: #ededed;
  color: black !important;
  height: 2.4rem !important;
  margin-left: 15%;
  margin-right: 25%;
  padding-top: 0.03rem;
  padding-bottom: 2rem;
  bottom: 50%;
  padding: 0;
}

.order-search-dialog ux-dialog-header {
  border: 0;
}
.order-search-dialog ux-dialog-body {
  width: 75rem;
  height: 48rem;
  position: relative;
  padding: 0;
}
.order-search-dialog .orderSearch-bar {
  background-color: #3b3b4b;
  width: 100%;
  padding: 2rem;
  box-sizing: border-box;
}
.order-search-dialog .orderSearch-bar .searchWrapper {
  width: 80%;
  position: relative;
  margin: 0 auto;
}
.order-search-dialog .orderSearch-bar .indagoIcon {
  position: absolute;
  left: 1.7rem;
  top: 1.5rem;
}
.order-search-dialog .orderSearch-bar .indagoIcon .icon {
  fill: #808080;
}
.order-search-dialog .orderSearch-bar .searchInput {
  width: 93%;
  font-size: 1.6rem;
  padding: 1.3rem 0 1.3rem 4.4rem;
  box-sizing: content-box;
}
.order-search-dialog .orderSearch-bar .-searchButton {
  position: absolute;
  right: 0.6rem;
  top: 0.7rem;
}
.order-search-dialog .selected-order {
  margin: 2rem;
}
.order-search-dialog .searchResults {
  margin: 2rem;
  height: 74%;
}
.order-search-dialog .results-container {
  overflow-y: auto;
  height: 88%;
}
.order-search-dialog .selectable-order {
  border: 1px solid #e4e4e4;
  box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  margin-top: 0.8rem;
  padding: 1.5rem;
}
.order-search-dialog .selectable-order:hover {
  border: 1px solid #2383bc;
  box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.5);
}
.order-search-dialog .selectable-order > .highlight {
  color: #2383bc;
  font-weight: 700;
}

.switch-toggle .switch {
  cursor: pointer;
  display: block;
}
.switch-toggle .checkbox {
  position: absolute;
  margin-left: -9999px;
  visibility: hidden;
}
.switch-toggle .switchBody {
  display: inline-block;
  position: relative;
  outline: none;
  user-select: none;
  width: 4.6rem;
  height: 2.2rem;
  border-radius: 3rem;
  border: 1px solid #2383bc;
  transition: background 0.3s;
  box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.2);
  vertical-align: middle;
  margin-right: 0.3rem;
}
.switch-toggle .switchBody:after {
  display: block;
  position: absolute;
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  margin: 0.2rem;
  background-color: #2383bc;
  border-radius: 100%;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4), 0 -5px 8px rgba(0, 0, 0, 0.15) inset;
  transition: all 0.3s;
}
.switch-toggle .switchText {
  font-weight: 600;
  vertical-align: middle;
  display: inline-block;
  width: 7rem;
}
.switch-toggle .checkbox:checked + .switchBody {
  background-color: #2383bc;
}
.switch-toggle .checkbox:checked + .switchBody:after {
  margin-left: 2.5rem;
  background-color: white;
}
.switch-toggle .checkbox ~ .switchText .on {
  display: none;
}
.switch-toggle .checkbox:checked ~ .switchText .off {
  display: none;
}
.switch-toggle .checkbox:checked ~ .switchText .on {
  display: inline;
  color: #2383bc;
  font-weight: 700;
}

/*Delete the component search-bar and rename this file to 'search-box' after changing all search-bars to search-boxes*/
.search-bar {
  cursor: pointer;
  margin: 0.2rem 1rem 0 1rem;
  border-bottom: 2px solid transparent;
}
.search-bar .form {
  width: 0;
  padding: 0.6rem 0;
  background: none;
  border: 0;
  transition: width 0.3s ease-in-out;
}
.search-bar .icon {
  vertical-align: sub;
  fill: #2383bc;
}
.search-bar.-expanded {
  border-color: #2383bc;
}
.search-bar.-expanded .form {
  width: 16rem;
}
.search-bar.-expanded .icon {
  fill: #2383bc;
}

.search-box {
  position: absolute;
  top: -1rem;
  right: 0;
  z-index: 10;
}
.search-box .searchWrapper {
  background: #efefef;
  /* Old browsers */
  background: -moz-linear-gradient(top, #efefef 0%, #e2e2e2 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #efefef), color-stop(100%, #e2e2e2));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #efefef 0%, #e2e2e2 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #efefef 0%, #e2e2e2 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #efefef 0%, #e2e2e2 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #efefef 0%, #e2e2e2 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#000000",GradientType=0 );
  /* IE6-9 */
  border-radius: 4px;
  position: absolute;
  top: -1.8rem;
  left: -31rem;
  width: 28rem;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0px 3px 7px -1px rgba(0, 0, 0, 0.3);
  padding: 1rem;
  border: 1px solid #2383bc;
  text-align: center;
}
.search-box .searchWrapper:after {
  content: "";
  position: absolute;
  top: 2rem;
  right: -1.2rem;
  width: 0;
  height: 0;
  border-top: 0.8rem solid transparent;
  border-bottom: 0.8rem solid transparent;
  border-left: 1.1rem solid #2383bc;
}
.search-box .form {
  width: 26rem;
  margin: 4px 0;
}
.search-box .main-button {
  height: 3.5rem;
  margin-top: 1rem;
  padding: 0 1rem;
}
.search-box .main-button.-loading {
  width: 3.5rem;
}
.search-box .icon {
  cursor: pointer;
  fill: #2383bc;
}
.search-box .validation-error-list {
  text-align: left;
  margin: 0;
  padding: 0.6rem 2.2rem;
}
.search-box .validation-warning-list {
  text-align: left;
  margin: 0;
  padding: 0.6rem 2.2rem;
  color: #928e1c;
  font-style: italic;
  font-weight: 700;
}
.search-box.-expanded .searchWrapper {
  opacity: 1;
  visibility: visible;
  left: -32rem;
}

.user-list {
  display: none;
}
.user-list.-active {
  display: flex;
}

production-schedule-settings {
  position: relative;
  margin: 0 2rem 0 1rem;
}
production-schedule-settings .settingsIcon svg {
  fill: #2383bc;
  cursor: pointer;
}

.production-schedule-settings-popover {
  width: 25rem;
  background-color: #2c2c46;
  color: #b9b8d7;
  border-top-color: #2c2c46;
  border-radius: 0.4rem;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.3);
}
.production-schedule-settings-popover .settingsGroup {
  padding: 1.5rem;
}
.production-schedule-settings-popover .settingsGroup .title {
  margin: 0 0 1rem 0;
}
.production-schedule-settings-popover .settingsGroup .description {
  font-style: italic;
  line-height: 1.8rem;
}
.production-schedule-settings-popover .settingsGroup select {
  background-color: transparent;
  box-shadow: none;
  border: 1px solid #2383bc;
  color: #2792d1;
  font-weight: 700;
  padding: 0.7rem;
  border-radius: 0.5rem;
  display: block;
  width: 100%;
  margin: 1rem 0;
}

ux-dialog.user-selection-dialog ux-dialog-body {
  min-height: 30vh;
  max-height: 60vh;
  overflow-x: hidden;
}
ux-dialog.user-selection-dialog ux-dialog-body .user-actions {
  padding: 0 0 1rem 0;
}

.user-search {
  position: relative;
}
.user-search .input {
  width: 22rem;
}
.user-search .userList {
  position: absolute;
  top: 3.6rem;
  left: 0;
  background: white;
  list-style: none;
  padding: 0;
  margin: 0;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.5) inset;
  width: 23.8rem;
  display: none;
  z-index: 12;
  text-align: left;
}
.user-search .userList.-active {
  display: block;
}
.user-search .userList .item {
  cursor: pointer;
  padding: 0.8rem 1rem;
}
.user-search .userList .item > span {
  display: inline-block;
  width: calc(100%);
  text-overflow: ellipsis;
  overflow: hidden;
}
.user-search .userList .item:hover {
  background: whitesmoke;
}

chart-date-range-picker > div {
  display: inline-block;
  background-color: #E6F2FA;
  color: #2383BC;
  font-weight: 600;
  padding: 0.7rem 2.8rem 0.7rem 1.4rem;
  border-radius: 3rem;
  cursor: pointer;
}
chart-date-range-picker > div:hover {
  box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.15), 0 0 1px 0 #389eda inset;
  background-color: #e4f2fa;
}

note-pop-over .toggle-notes > .icon {
  vertical-align: middle;
  height: 1.7rem;
  border: 1px solid #e0e0e0;
  border-right-width: 0px;
  border-radius: 4px 0px 0px 4px;
  padding: 0.6rem;
  margin: 0;
}
note-pop-over .toggle-notes > .icon:hover {
  background: #f2f2f2;
}
note-pop-over .toggle-notes > .icon.-inactive {
  fill: #c7c7c7;
}
note-pop-over .toggle-notes > .icon.-inactive:hover {
  fill: #bababa;
}
note-pop-over .notes {
  width: 300px;
  height: 70px;
  box-sizing: border-box;
  margin: 1rem 1.5rem 0.5rem;
  resize: none;
  font-size: 1.4rem;
  padding-top: 0.4rem;
  line-height: 1.8rem;
}

order-attributes-pop-over .toggle-order-attributes > .icon {
  vertical-align: middle;
  height: 1.7rem;
  border: 1px solid #e0e0e0;
  border-radius: 0 4px 4px 0;
  padding: 0.6rem;
  margin: 0;
}
order-attributes-pop-over .toggle-order-attributes > .icon:hover {
  background: #f2f2f2;
}
order-attributes-pop-over .toggle-order-attributes > .icon.-inactive svg {
  fill: #c7c7c7;
}
order-attributes-pop-over .-disabled {
  pointer-events: none;
}

.order-attributes-popover {
  min-width: 225px;
  text-align: left;
  background: #2c2c46;
  color: #b9b8d7;
  font-weight: 400;
  border-top-color: #2c2c46;
  border-radius: 0.4rem;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.3);
}
.order-attributes-popover ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.order-attributes-popover ul > li {
  position: relative;
  line-height: 2.5rem;
  font-weight: 600;
  border-bottom: 1px solid #535385;
  padding: 0.5rem 1.8rem 0.5rem 4rem;
}
.order-attributes-popover ul > li:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 20px;
  height: 7px;
  width: 7px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: rgba(185, 184, 215, 0.35);
}
.order-attributes-popover ul > li:last-child {
  border-bottom: none;
}

inventory-status .inventoryStatus {
  line-height: 3.4rem;
  height: 3.5rem;
  text-align: left;
  border-radius: 3px;
  box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.4);
  font-weight: 700;
  display: flex;
  align-items: center;
}
@media (max-width: 1865px) {
  inventory-status .inventoryStatus {
    line-height: 3.8rem;
    height: 3.8rem;
  }
}
inventory-status .inventoryStatus .icon {
  margin: 0;
  width: 2.5rem;
}
inventory-status .inventoryStatus .status {
  flex: 1 0 auto;
  margin-right: 0.7rem;
}
inventory-status .inventoryStatus .plus {
  margin-left: auto;
  border-left: 1px solid;
  width: 2rem;
  background: rgba(255, 255, 255, 0.3);
  font-size: 1.8rem;
  text-align: center;
}
@media (max-width: 1865px) {
  inventory-status .inventoryStatus .plus {
    width: 3.4rem;
  }
}
inventory-status .inventoryStatus.-NA {
  background: #f7f7f7;
  /* Old browsers */
  background: -moz-linear-gradient(top, #f7f7f7 0%, #e6e6e6 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f7f7f7), color-stop(100%, #e6e6e6));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #f7f7f7 0%, #e6e6e6 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #f7f7f7 0%, #e6e6e6 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #f7f7f7 0%, #e6e6e6 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #f7f7f7 0%, #e6e6e6 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#000000",GradientType=0 );
  /* IE6-9 */
  border: 1px solid #bfbfbf;
  color: #5b5b5b;
  min-width: 15rem;
}
inventory-status .inventoryStatus.-NA .plus {
  border-color: #bfbfbf;
}
inventory-status .inventoryStatus.-Received {
  background: #c5e7f9;
  /* Old browsers */
  background: -moz-linear-gradient(top, #c5e7f9 0%, #9fc8dc 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #c5e7f9), color-stop(100%, #9fc8dc));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #c5e7f9 0%, #9fc8dc 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #c5e7f9 0%, #9fc8dc 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #c5e7f9 0%, #9fc8dc 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #c5e7f9 0%, #9fc8dc 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#000000",GradientType=0 );
  /* IE6-9 */
  border: 1px solid #a1c7d5;
  color: #446774;
  min-width: 15rem;
}
inventory-status .inventoryStatus.-Received .plus {
  border-color: #a1c7d5;
}
inventory-status .inventoryStatus.-Reserved {
  background: #f7f08c;
  /* Old browsers */
  background: -moz-linear-gradient(top, #f7f08c 0%, #d3ce64 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f7f08c), color-stop(100%, #d3ce64));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #f7f08c 0%, #d3ce64 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #f7f08c 0%, #d3ce64 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #f7f08c 0%, #d3ce64 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #f7f08c 0%, #d3ce64 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#000000",GradientType=0 );
  /* IE6-9 */
  border: 1px solid #b4b051;
  color: #6f6a11;
  min-width: 15rem;
}
inventory-status .inventoryStatus.-Reserved .plus {
  border-color: #b4b051;
}
inventory-status .inventoryStatus.-Picked {
  background: #b7f4a5;
  /* Old browsers */
  background: -moz-linear-gradient(top, #b7f4a5 0%, #9be099 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #b7f4a5), color-stop(100%, #9be099));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #b7f4a5 0%, #9be099 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #b7f4a5 0%, #9be099 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #b7f4a5 0%, #9be099 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #b7f4a5 0%, #9be099 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#000000",GradientType=0 );
  /* IE6-9 */
  border: 1px solid #91c15d;
  color: #386209;
  min-width: 15rem;
}
inventory-status .inventoryStatus.-Picked .plus {
  border-color: #91c15d;
}
inventory-status .inventoryStatus.-CADComplete {
  background: #cd99e0;
  /* Old browsers */
  background: -moz-linear-gradient(top, #cd99e0 0%, #cd99e0 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #cd99e0), color-stop(100%, #cd99e0));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #cd99e0 0%, #cd99e0 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #cd99e0 0%, #cd99e0 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #cd99e0 0%, #cd99e0 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #cd99e0 0%, #cd99e0 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#000000",GradientType=0 );
  /* IE6-9 */
  border: 1px solid #a861c2;
  color: #634f80;
  min-width: 15rem;
}
inventory-status .inventoryStatus.-CADComplete .plus {
  border-color: #cd99e0;
}
inventory-status .inventoryStatus.-disabled {
  box-shadow: none;
  background: none;
  border: 0;
  color: inherit;
  pointer-events: none;
}
inventory-status .inventoryStatus.-disabled .plus {
  display: none;
}
inventory-status .inventoryStatus.-disabled + indago-popover {
  display: none;
}
inventory-status .inventoryStatus .icon.-lock {
  margin-right: 0;
  width: 1.3rem;
  height: 1.3rem;
  vertical-align: -1px;
  display: none;
}
inventory-status .inventoryStatus.-lockedIs .icon.-lock {
  display: inline-block;
}
inventory-status .inventoryStatus.-lockedIs + indago-popover .title {
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIGZpbGw9JyNiOWI4ZDcnIHZpZXdCb3g9JzAgLTMgMTYuNSAyNi42Jz48cGF0aCBkPSdNMTUuMSw4LjdoLTEuM1Y2YzAtMy4zLTIuNy02LTYtNnMtNiwyLjctNiw2djIuN0gwLjRDMC4yLDguNywwLDguOSwwLDkuMXYxMC44YzAsMSwwLjgsMS43LDEuNywxLjdoMTIuMWMxLDAsMS43LTAuOCwxLjctMS43VjkuMUMxNS41LDguOSwxNS4zLDguNywxNS4xLDguN3ogTTkuMSwxNy43YzAsMC4xLDAsMC4yLTAuMSwwLjNjLTAuMSwwLjEtMC4yLDAuMS0wLjMsMC4xSDYuOWMtMC4xLDAtMC4yLTAuMS0wLjMtMC4xYy0wLjEtMC4xLTAuMS0wLjItMC4xLTAuM2wwLjMtMi40QzYuMywxNC45LDYsMTQuNCw2LDEzLjljMC0xLDAuOC0xLjcsMS43LTEuN3MxLjcsMC44LDEuNywxLjdjMCwwLjYtMC4zLDEuMS0wLjcsMS40TDkuMSwxNy43eiBNMTEuMiw4LjdINC4zVjZjMC0xLjksMS41LTMuNCwzLjQtMy40czMuNCwxLjUsMy40LDMuNFY4Ljd6Jy8+PC9zdmc+") no-repeat;
  padding-left: 1.8rem;
  background-size: 1.5rem 1.9rem;
  background-position-y: center;
}
inventory-status indago-popover {
  min-width: 215px;
  text-align: left;
}
inventory-status indago-popover .datewrapper {
  display: inline-block;
  margin-left: 0.3rem;
}
inventory-status indago-popover .date {
  width: 10em;
  padding: 0;
  background: none;
  color: #389eda;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  box-shadow: none;
}
inventory-status indago-popover .icon.-thinArrow {
  width: 0.8rem;
  height: 0.8rem;
  fill: #389eda;
  stroke: #389eda;
  stroke-width: 3px;
  transform: rotate(90deg);
  margin: 0px 0px 0px -3px;
  cursor: pointer;
}
inventory-status indago-popover ul {
  margin: 0.5rem 1.8rem;
  padding: 0;
  list-style: none;
}
inventory-status indago-popover ul > li {
  cursor: pointer;
  position: relative;
  padding-left: 1.4rem;
  line-height: 2.5rem;
  font-weight: 600;
}
inventory-status indago-popover ul > li:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  height: 7px;
  width: 7px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: rgba(185, 184, 215, 0.35);
}
inventory-status indago-popover ul > li:after {
  position: absolute;
  content: "";
  bottom: -9px;
  left: 3px;
  height: 18px;
  width: 1px;
  background: rgba(185, 184, 215, 0.2);
}
inventory-status indago-popover ul > li:last-child:after {
  display: none;
}
inventory-status indago-popover ul > li .-active:before {
  background-color: white;
}
inventory-status indago-popover ul > li .-active {
  color: white;
  cursor: default;
}

.on-hold-popover {
  width: 280px;
  font-weight: 400;
  background-color: #2c2c46 !important;
  border-radius: 0.4rem;
  color: #b9b8d7;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.3);
  font-size: 1.4rem;
  border-top-color: #2c2c46 !important;
}
.on-hold-popover .shortContent {
  width: 50%;
  float: left;
  line-height: 2rem;
  padding: 1rem 0.5rem 0.5rem 1.5rem;
  box-sizing: border-box;
}
.on-hold-popover .wideContent {
  width: 100%;
  line-height: 2rem;
  padding: 0.5rem 1.5rem;
  box-sizing: border-box;
  clear: both;
}
.on-hold-popover .fieldName {
  color: #b9b8d7;
}
.on-hold-popover .text {
  font-size: 1.3rem;
  color: #fff;
}

.missing-piece-popover {
  width: 280px;
  font-weight: 400;
  background-color: #2c2c46 !important;
  border-radius: 0.4rem;
  color: #b9b8d7;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.3);
  font-size: 1.4rem;
  border-top-color: #2c2c46 !important;
}
.missing-piece-popover .shortContent {
  width: 100%;
  line-height: 2rem;
  padding: 1rem 0.5rem 0.5rem 1.5rem;
  box-sizing: border-box;
}
.missing-piece-popover .wideContent {
  width: 100%;
  line-height: 2rem;
  padding: 0.5rem 1.5rem;
  box-sizing: border-box;
  clear: both;
}
.missing-piece-popover .fieldName {
  color: #b9b8d7;
}
.missing-piece-popover .text {
  font-size: 1.3rem;
  color: #fff;
  overflow-wrap: break-word;
  word-break: break-word;
}
.missing-piece-popover footer.popover > span {
  cursor: pointer;
}

.toggle-missingPiece {
  cursor: pointer;
  display: inline-flex;
}

.in-house-remake-popover {
  --ihr-label-width: 10rem;
  width: fit-content !important;
  min-width: 0 !important;
  max-width: min(600px, calc(100vw - 3rem)) !important;
  font-weight: 400;
  background-color: #2c2c46 !important;
  border-radius: 0.4rem;
  color: #b9b8d7;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.3);
  font-size: 1.4rem;
  border-top-color: #2c2c46 !important;
}
.in-house-remake-popover header.popover .orderNumber {
  text-transform: uppercase;
}
.in-house-remake-popover .detail-body {
  box-sizing: border-box;
}
.in-house-remake-popover .detail-body > * + * {
  border-top: 1px solid #535385;
}
.in-house-remake-popover .pairRow {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  column-gap: 1.5rem;
  margin: 0 1.5rem;
  padding: 1rem 0;
}
.in-house-remake-popover .pair {
  display: grid;
  grid-template-columns: var(--ihr-label-width) minmax(0, 1fr);
  column-gap: 1rem;
  align-items: start;
  min-width: 0;
}
.in-house-remake-popover .fieldName {
  color: #b9b8d7;
  line-height: 2rem;
}
.in-house-remake-popover .text {
  color: #fff;
  line-height: 2rem;
  overflow-wrap: anywhere;
  min-width: 0;
  min-height: 2rem;
}
.in-house-remake-popover .detailGroup {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1.5rem;
  align-items: start;
  margin: 0 1.5rem;
  padding: 1rem 0;
  box-sizing: border-box;
}
.in-house-remake-popover .groupFields {
  display: flex;
  flex-direction: column;
  row-gap: 0.75rem;
  min-width: 0;
}
.in-house-remake-popover .comments {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.in-house-remake-popover .commentsText {
  max-width: 62ch;
}
.in-house-remake-popover footer.popover > span {
  cursor: pointer;
}

.toggle-inHouseRemake {
  cursor: pointer;
  display: inline-flex;
}

order-number {
  font-size: 1.7rem;
  color: #4a4a75;
  font-weight: 600;
  letter-spacing: -0.05rem;
  margin: 0 0.6rem;
  width: 9rem;
}
order-number .icon {
  width: 1.8rem;
  height: 1.8rem;
  margin-right: 0.3rem;
  vertical-align: sub;
}

.dimensions-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}
.dimensions-header .dimensions-toolbar {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-around;
  column-gap: 1.6rem;
}
.dimensions-header .dimensions-toolbar span {
  display: flex;
  gap: 0.4rem;
}
.dimensions-header .dimensions-toolbar .icon-button {
  display: flex;
  gap: 0.4rem;
  padding: unset;
}

.dimensions-table .indago-table th {
  background-color: #fcfcfc;
  font-weight: bold;
  font-size: 1.2rem;
  color: black;
}
.dimensions-table .indago-table td:first-child {
  background-color: #2c2c46;
  color: white;
  border: 1px solid #2c2c46;
}
.dimensions-table .indago-table thead {
  display: table-header-group !important;
}
.dimensions-table .indago-table tfoot {
  display: table-row-group !important;
}
.dimensions-table .indago-table tr {
  page-break-inside: avoid !important;
}
.dimensions-table .indago-table .numeric {
  text-align: right;
}
.dimensions-table .indago-table th:nth-child(4),
.dimensions-table .indago-table td:nth-child(4) {
  min-width: 11rem;
}
.dimensions-table .indago-table th:nth-child(5),
.dimensions-table .indago-table td:nth-child(5) {
  min-width: 8rem;
}
.dimensions-table .indago-table th:nth-child(6),
.dimensions-table .indago-table td:nth-child(6) {
  max-width: 10rem;
  white-space: normal;
}
.dimensions-table .indago-table .dimensions-icon:hover,
.dimensions-table .indago-table action-menu-item:hover {
  cursor: pointer;
}
.dimensions-table .indago-table .dimensions-icon.__image svg,
.dimensions-table .indago-table action-menu-item.__image svg {
  width: 2.1rem;
  height: 2.1rem;
}
.dimensions-table .indago-table .dimensions-icon.-disabled,
.dimensions-table .indago-table action-menu-item.-disabled {
  pointer-events: none;
}
.dimensions-table .indago-table .dimensions-icon.-disabled svg,
.dimensions-table .indago-table action-menu-item.-disabled svg {
  fill-opacity: 50%;
}

.add-piece-grid {
  display: grid;
  grid-template-columns: [col-start] 2fr 3fr 3fr 4fr;
  grid-column-gap: 1em;
  border: 1px solid #f0f0f0;
  outline: 2px solid #1a65b0;
  background-color: #f7f7f7;
  margin-bottom: 1em;
  padding-left: 1em;
}
.add-piece-grid input[type=number]::-webkit-inner-spin-button,
.add-piece-grid input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.add-piece-grid > div {
  padding: 0.5em;
}
.add-piece-grid div {
  display: flex;
  flex-direction: column;
  row-gap: 0.5em;
}
.add-piece-grid svg {
  display: block;
  margin: 0 auto;
  text-align: center;
  fill: white;
}
.add-piece-grid label {
  color: #2c2c46;
  font-weight: 700;
}
.add-piece-grid span {
  display: inline-flex;
}
.add-piece-grid input {
  width: 3em;
}
.add-piece-grid div:nth-child(1) {
  display: flex;
  align-items: center;
  flex-direction: row;
}
.add-piece-grid div:nth-child(1) label {
  margin-right: 1em;
}
.add-piece-grid div:nth-child(1) button {
  width: auto;
}
.add-piece-grid div:nth-child(1) input {
  width: 2.5em;
}
.add-piece-grid div:nth-child(2) {
  grid-column: col-start;
}
.add-piece-grid div:nth-child(6) {
  grid-column: -1;
}
.add-piece-grid div:nth-child(8) {
  grid-column: 2/4;
}
.add-piece-grid div:nth-child(9) {
  grid-column: -2;
}
.add-piece-grid button {
  width: 100%;
}
.add-piece-grid .btn-container {
  grid-row: 1/4;
  border-left: 1px dotted;
  justify-content: center;
  padding: 1em;
  margin-left: 5em;
}
.add-piece-grid .piece-selector-ctn {
  background-color: #1a65b0;
  transform: translate(-1.5em, -1px);
  width: 12em;
  padding-left: 2em;
}
.add-piece-grid .piece-selector-ctn label {
  color: white;
  text-transform: uppercase;
}
.add-piece-grid .piece-selector-ctn span {
  color: white;
  font-weight: 700;
  padding: 0 0.5em;
}
.add-piece-grid .measurement-container {
  background-color: white;
  flex-direction: row;
  justify-content: space-evenly;
  margin-bottom: 0.5em;
}
.add-piece-grid .measurement-container div:nth-child(1) {
  flex-direction: column;
}
.add-piece-grid .measurement-container div:nth-child(2) > div {
  row-gap: 0;
}
.add-piece-grid .measurement-container div:nth-child(2) > div label {
  font-weight: 500;
}
.add-piece-grid .measurement-container div:nth-child(3) {
  background-color: #2c2c46;
  justify-content: center;
}
.add-piece-grid .measurement-container div:nth-child(3) label {
  color: white;
  padding: 0 1em;
  font-weight: 500;
}
.add-piece-grid .measurement-container div:nth-child(3) span {
  font-size: 1.2em;
  color: white;
  align-self: center;
}

.dimensions-image-dialog {
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  max-height: 90dvh;
}
.dimensions-image-dialog .__flex {
  min-width: 30vw;
}
.dimensions-image-dialog ux-dialog-header,
.dimensions-image-dialog ux-dialog-body {
  padding-left: 2.4rem;
  padding-right: 2.4rem;
}
.dimensions-image-dialog ux-dialog-header {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}
.dimensions-image-dialog .piece-detail-grid {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto minmax(0, 1fr);
  column-gap: 3rem;
  row-gap: 0.8rem;
  padding: 2rem 0 1.5rem;
  line-height: 1.2;
  border-bottom: 1px solid #ededed;
  align-items: start;
}
.dimensions-image-dialog .piece-detail-grid .detail-label {
  font-weight: 700;
}
.dimensions-image-dialog .piece-detail-grid .detail-value {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}
.dimensions-image-dialog ux-dialog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2.4rem;
}
.dimensions-image-dialog ux-dialog-footer .errors {
  color: red;
  font-style: italic;
}
.dimensions-image-dialog .dialog-header-content {
  display: flex;
  font-size: 2rem;
  align-items: center;
  text-transform: uppercase;
  color: white;
  font-weight: 700;
  width: 100%;
  justify-content: space-between;
}
.dimensions-image-dialog .dialog-header-content .title {
  font-size: 2rem;
}
.dimensions-image-dialog .dialog-header-content .right-container {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.dimensions-image-dialog .dialog-header-content i svg {
  width: 4rem;
  height: 4rem;
}
.dimensions-image-dialog .upload-container {
  margin: 0rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-weight: 700;
  gap: 1rem;
  color: #2c2c46;
}
@keyframes placeHolderShimmer {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
.dimensions-image-dialog .upload-container-image {
  border: none;
  height: 100%;
  justify-content: center;
  display: flex;
}
.dimensions-image-dialog .upload-container-image img {
  max-height: calc(90vh - 42rem);
  max-height: calc(90dvh - 42rem);
  width: auto;
  height: auto;
  max-width: 75vw;
}
.dimensions-image-dialog .upload-container button {
  border-radius: 0;
}
.dimensions-image-dialog .upload-container button input {
  display: none;
}
.dimensions-image-dialog .upload-container img {
  width: 100%;
}
.dimensions-image-dialog .upload-container .fa-cloud-upload {
  color: #2c2c46;
}

.piece-label {
  width: 3in;
  height: 1in;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 0.5in 1fr 1fr 1fr;
  display: grid;
  opacity: 0;
  white-space: nowrap;
  overflow: hidden !important;
  margin: 1mm;
}
.piece-label div:nth-child(2),
.piece-label div:nth-child(3),
.piece-label div:nth-child(4),
.piece-label div:nth-child(5),
.piece-label div:nth-child(6),
.piece-label div:nth-child(8) {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.piece-label div:nth-child(2) {
  grid-column: 2/5;
  text-align: center;
}
.piece-label div:nth-child(3) {
  grid-column: 5/-1;
  justify-self: end;
}
.piece-label div:nth-child(4),
.piece-label div:nth-child(5) {
  grid-column: 1/-1;
}
.piece-label div:nth-child(5) {
  grid-column: 1/5;
}
.piece-label div:nth-child(6) {
  grid-column: 1/-2;
}
.piece-label div:nth-child(7) {
  grid-column: 5/-1;
  justify-self: end;
}
.piece-label div:nth-child(8) {
  grid-column: 1/-2;
}
.piece-label div:nth-child(9) {
  justify-self: end;
}
.piece-label div:nth-child(9) > span {
  font-weight: 700;
}
.piece-label canvas {
  height: 0.55in;
  width: 3in;
  transform: scale(1) !important;
}
.piece-label indago-barcode-generator {
  height: 100%;
  grid-column: 1/-1;
  display: flex;
  justify-content: center;
  margin-top: 1mm;
  overflow: hidden !important;
  width: 3in;
  height: 0.4in;
}
.piece-label indago-barcode-generator > div {
  overflow: hidden !important;
}

.label-container {
  display: contents;
}
.label-container compose {
  display: contents;
}

.piece-label-large-container {
  height: 3.9in;
  width: 6in;
  overflow: hidden !important;
  page-break-before: auto !important;
  page-break-after: auto !important;
  page-break-inside: avoid;
}

.piece-label-large {
  width: 152.4mm;
  opacity: 0;
}
.piece-label-large indago-barcode-generator {
  width: 2in;
  height: 0.55in;
}
.piece-label-large indago-barcode-generator div:first-child {
  height: 0.55in !important;
  overflow: hidden !important;
}
.piece-label-large canvas {
  width: 2in;
  height: 100%;
  transform: none !important;
}
.piece-label-large .large-label-head {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 13pt;
}
.piece-label-large .large-label-head div:first-child,
.piece-label-large .large-label-head div:nth-child(3) {
  width: 1.5in;
}
.piece-label-large .large-label-head .label-count {
  width: 1.5in;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: end;
}
.piece-label-large .large-label-image {
  margin-bottom: 1mm;
}
.piece-label-large .large-label-image img {
  object-fit: contain;
  width: 6in;
  height: 2in;
}
.piece-label-large .large-label-branch {
  text-align: center;
  font-size: 13pt;
  font-weight: bold;
  background-color: #ededed;
}
.piece-label-large .large-label-body {
  display: grid;
  grid-template-columns: minmax(11rem, 11rem) minmax(12rem, 12rem) minmax(9rem, 9rem) 1fr;
  font-size: 8pt;
  padding: 0.8rem;
  grid-gap: 0.4rem;
}
.piece-label-large .large-label-body > div {
  white-space: nowrap;
  overflow: hidden !important;
}
.piece-label-large .large-label-body div.label.-cutouts {
  grid-row: 6;
  grid-column: 3;
}
.piece-label-large .large-label-body div.-cutouts {
  grid-row: 6;
  grid-column: 4;
}
.piece-label-large .large-label-body div.-inspected-by {
  grid-row: 7;
}
.piece-label-large .large-label-body div:nth-child(even) {
  font-weight: 700;
}
.piece-label-large .large-label-body div:nth-child(11) {
  grid-column: 1;
}
.piece-label-large .large-label-body .grid-gap {
  padding-left: 1.8rem;
}
.piece-label-large .large-label-body div.multi-row {
  overflow: hidden !important;
  white-space: normal;
  text-overflow: ellipsis;
  max-height: 2rem;
  grid-row: span 2;
}

@media print {
  * {
    box-sizing: border-box;
  }

  .item-container > div {
    display: none;
  }

  .barcodeMeasureElement {
    display: none;
  }

  .barcodeMeasureElement {
    display: none;
  }

  .view-order-management {
    top: 0 !important;
  }

  .orderdetail-panel {
    position: absolute;
    height: 100% !important;
    box-shadow: none;
  }

  .nav-bar-container,
.tab-container,
.wrapper,
.list-toolbar,
a,
.-title,
.add-piece-grid,
.view-order-management indago-search-results-header {
    display: none;
  }

  .dimensions-header > label {
    display: none;
  }

  * {
    overflow: visible !important;
  }

  tr {
    page-break-inside: avoid;
    page-break-after: auto;
  }

  th {
    page-break-before: auto;
  }

  .dimensions-header {
    font-size: 1.5rem;
    font-weight: bold;
  }
  .dimensions-header .dimensions-toolbar > span:not(:first-child) {
    display: none;
  }
  .dimensions-header select {
    box-shadow: none;
    border: none;
    background: none;
  }

  .dimensions-table .indago-table th {
    font-size: 1.2rem;
  }
  .dimensions-table .indago-table td {
    font-size: 1.2rem;
  }
  .dimensions-table .indago-table td:nth-child(n+7) {
    text-align: center;
    width: 30px;
  }
  .dimensions-table .indago-table th:nth-last-child(-n+2) {
    display: none;
  }

  .dimensions-icon {
    display: none;
  }

  .piece-label,
.piece-label-large {
    opacity: 1;
  }
}
.page-break {
  page-break-after: always !important;
  height: 0;
}

.small-label-wrapper {
  display: contents;
}

.info-text {
  margin-bottom: 0.8rem;
}

.upload-wrapper {
  background-color: #f7f7f7;
  display: flex;
  flex-direction: column;
  width: 70rem;
  /* Works on Firefox */
  /* Works on Chrome, Edge, and Safari */
}
.upload-wrapper header {
  background-color: #1a1a2a;
  display: flex;
  justify-content: space-between;
  font-size: 1.5rem;
  align-items: center;
  padding: 1rem 1rem;
  text-transform: uppercase;
  color: white;
  font-weight: 700;
}
.upload-wrapper header .icon {
  width: 4rem;
  height: 4rem;
}
.upload-wrapper header .icon svg {
  height: auto;
  width: auto;
}
.upload-wrapper header div {
  display: flex;
  align-items: center;
  column-gap: 1rem;
}
.upload-wrapper .has-error {
  border: 1px solid red;
}
.upload-wrapper footer.has-error {
  justify-content: space-between;
  align-items: center;
  border: none;
}
.upload-wrapper button input {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.upload-wrapper footer {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  padding: 2rem;
}
.upload-wrapper span {
  min-width: 0;
  word-wrap: break-word;
}
.upload-wrapper select {
  min-width: 0;
}
.upload-wrapper * {
  scrollbar-width: thin;
  scrollbar-color: #2383bc #f7f7f7;
}
.upload-wrapper *::-webkit-scrollbar {
  width: 12px;
}
.upload-wrapper *::-webkit-scrollbar-track {
  background: #f7f7f7;
}
.upload-wrapper *::-webkit-scrollbar-thumb {
  background-color: #2383bc;
  border-radius: 20px;
  border: 3px solid #f7f7f7;
}
.upload-wrapper indago-loading-spinner {
  grid-column: 1/-1;
  min-height: 12rem;
}

.document-grid {
  padding: 0 2rem;
}

.document-grid,
.upload-grid-header,
.document-items-wrapper,
.upload-item > div {
  display: grid;
  grid-template-columns: 1.5fr 1.4fr 2fr 0.5fr 0.7fr;
  column-gap: 1rem;
  row-gap: 2rem;
  align-items: center;
}

.document-grid::before,
.document-grid::after {
  content: "";
  margin: 0 auto;
  width: 100%;
  border-bottom: 2px solid #2383bc;
  grid-column: 1/-1;
}

.document-grid.upload-complete::before {
  border-bottom: initial;
  padding-top: 2rem;
}

.add-document-btn.main-button.-largeSize {
  background: inherit;
  line-height: 2rem;
  padding: 2rem 0;
  margin: 2rem 10rem;
  outline: 2px dashed #1a1a2a;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.2rem;
}
.add-document-btn.main-button.-largeSize button {
  margin-bottom: 0.8rem;
}
.add-document-btn.main-button.-largeSize span:nth-child(1) {
  color: #fafefd;
  font-size: 1.5rem;
  font-weight: 700;
}
.add-document-btn.main-button.-largeSize span {
  display: block;
  color: #1a1a2a;
}

.upload-item {
  grid-column: 1/-1;
  font-size: 1.4rem;
}
.upload-item input {
  min-width: 0;
  padding: 0.5rem 0;
}
.upload-item select {
  padding: 0.5rem 2.5rem 0.5rem 0.5rem;
}
.upload-item .upload-result {
  display: flex;
  justify-self: center;
}
.upload-item .upload-result svg {
  fill-rule: evenodd;
  clip-rule: evenodd;
  width: 25px;
  height: 25px;
}

.upload-result.-success svg.icon {
  fill: green;
}

.upload-result.-failed svg.icon {
  fill: red;
}

.upload-grid-header {
  grid-column: 1/-1;
  font-weight: 700;
  font-size: 1.4rem;
}

.document-items-wrapper {
  min-height: 12rem;
  max-height: 25rem;
  overflow-y: auto;
}

.upload-item,
.upload-grid-header,
.document-items-wrapper {
  grid-column: 1/-1;
}

.file-size {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.description-popover header {
  color: #b9b8d7;
  font-size: 1.4rem;
}
.description-popover textarea {
  width: 300px;
  height: 70px;
  box-sizing: border-box;
  margin: 1rem 1.5rem 0.5rem;
  resize: none;
  font-size: 1.4rem;
  padding-top: 0.4rem;
  line-height: 1.8rem;
}
.description-popover footer {
  padding: 1rem;
  margin: 0;
  gap: 0;
  align-items: center;
}

.siteDetails {
  display: flex;
  justify-content: space-around;
  margin-top: 5rem;
  flex-direction: column;
}
.siteDetails input {
  width: calc(100% - 2rem);
}
.siteDetails textarea {
  margin: 0;
  resize: none;
}
.siteDetails label {
  margin: 0;
  align-self: center;
}
.siteDetails .formGroup:nth-child(2) {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.siteDetails .generalForm {
  display: grid;
  grid-template-columns: fit-content(10rem) fit-content(27rem) fit-content(0);
  grid-gap: 3rem;
  padding: 2rem;
  outline: 2px solid #1a65b0;
  background-color: #f7f7f7;
}
.siteDetails .generalForm span {
  align-self: center;
}
.siteDetails .generalForm button {
  height: 3rem;
}
.siteDetails .generalForm .userActions {
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.siteDetails .generalForm .formGroup .activeField {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.siteDetails .generalForm .formGroup .activeField label {
  border: none;
}
.siteDetails .generalForm .formGroup .activeField input[type=checkbox] {
  width: fit-content;
}
.siteDetails .generalForm .formGroup .fieldtitle__bold {
  line-height: 2rem;
  font-weight: 700;
  font-size: 1.4rem;
}
.siteDetails .generalForm .formGroup__auditDetails {
  display: grid;
  color: white;
  background: #2c2c46;
  row-gap: 3rem;
  padding: 2rem 2rem;
}
.siteDetails .generalForm .formGroup__auditDetails :first-child,
.siteDetails .generalForm .formGroup__auditDetails :nth-child(3n+4) {
  grid-column: -1;
}
.siteDetails .generalForm .formGroup__auditDetails div {
  display: flex;
  flex-direction: column;
}
.siteDetails .generalForm .formGroup__auditDetails div span {
  align-self: baseline;
}
.siteDetails .generalForm .formGroup__auditDetails span.datefield {
  font-weight: 700;
  color: #b9b8d7;
}
.siteDetails .generalForm .formGroup__auditDetails label.fieldtitle, .siteDetails .generalForm .formGroup__auditDetails indago-select-options.widefield > label {
  border-bottom: 1px solid #b9b8d7;
  max-width: 15rem;
  margin-bottom: 0.7rem;
  align-self: baseline;
}
@media screen and (max-width: 1000px) {
  .siteDetails .generalForm .formGroup__auditDetails {
    max-width: 15rem;
  }
}
.siteDetails .generalForm .formGroup__entityDetails {
  display: grid;
  grid-template-columns: 1fr 2fr;
  padding: 2rem 2rem;
  grid-column-gap: 3rem;
}
.siteDetails .generalForm .formGroup__entityDetails .fieldtitle, .siteDetails .generalForm .formGroup__entityDetails indago-select-options.widefield > label {
  grid-column: 1;
}
.siteDetails .generalForm .formGroup__entityDetails .fieldtitle :nth-child(1), .siteDetails .generalForm .formGroup__entityDetails indago-select-options.widefield > label :nth-child(1) {
  grid-template-columns: -1;
}
.siteDetails .generalForm .formGroup__entityDetails .fieldtitle:nth-child(1), .siteDetails .generalForm .formGroup__entityDetails indago-select-options.widefield > label:nth-child(1) {
  grid-column: -1;
}
.siteDetails .generalForm .formGroup__entityDetails span:first-of-type {
  min-width: 15rem;
}
.siteDetails .generalForm .formGroup__entityDetails span.description {
  overflow-y: auto;
  max-height: 5rem;
  grid-row: 2/4;
  grid-column: -1;
  max-width: 40rem;
  min-width: 20rem;
  height: 100%;
}
.siteDetails .generalForm__isEditing {
  grid-template-columns: minmax(10rem, 20rem) minmax(15rem, 35rem) fit-content(0);
  grid-gap: 3rem;
}
.siteDetails .generalForm__isEditing label {
  border: none;
  margin: 0.7rem;
}
.siteDetails .generalForm__isEditing .formGroup__auditDetails {
  margin: auto;
}
@media screen and (max-width: 768px) {
  .siteDetails .generalForm__isEditing {
    grid-template-columns: minmax(10rem, 25rem) minmax(15rem, 40rem) minmax(7rem, 45rem) minmax(10rem, 10rem);
  }
}

.indago-dialog {
  min-width: 75rem;
}
.indago-dialog ux-dialog-body {
  padding: 1rem 1.6rem;
}
.indago-dialog header {
  text-align: center;
}
.indago-dialog header .title {
  font-size: 2.83rem;
  font-weight: 400;
  border-bottom: 1px solid #d4d4d4;
  padding-bottom: 1rem;
}
.indago-dialog header .title > .orderNumber {
  color: #2383bc;
}
.indago-dialog label {
  font-size: 1.6rem;
}
.indago-dialog label span {
  margin-left: 0.4rem;
}
.indago-dialog__label {
  display: block;
  padding-bottom: 0.8rem;
  font-size: 1.6rem;
  font-weight: 600;
}
.indago-dialog__action-menu {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.6rem;
}

.indago-dialog-print-labels label:first-child {
  padding-right: 1.6rem;
}
.indago-dialog-print-labels label {
  padding-top: 0.4rem;
  display: inline-flex;
}
.indago-dialog-print-labels .indago-table thead th:nth-child(1) {
  width: 1rem;
}
.indago-dialog-print-labels .indago-table thead th:nth-child(2) {
  width: 7rem;
}
.indago-dialog-print-labels .indago-table thead th:nth-child(3) {
  max-width: 10rem;
}
.indago-dialog-print-labels .indago-table__header-container {
  max-height: 47rem;
  overflow-y: auto;
}
.indago-dialog-print-labels .indago-table__header {
  position: sticky;
  top: 0;
}

.indago-dialog-print-packet {
  display: block;
  min-width: 0;
  width: 110rem;
  max-width: calc(100vw - 6rem);
  box-sizing: border-box;
}
.indago-dialog-print-packet .indago-table {
  table-layout: fixed;
  width: 100%;
}
.indago-dialog-print-packet .indago-table .cell {
  padding: 0.9rem 2rem;
  vertical-align: top;
  word-break: break-word;
}
.indago-dialog-print-packet .indago-table thead .cell {
  word-break: normal;
  overflow-wrap: normal;
}
.indago-dialog-print-packet .indago-table th:nth-child(1),
.indago-dialog-print-packet .indago-table td:nth-child(1) {
  padding: 0.9rem 0;
  text-align: center;
  vertical-align: top;
}
.indago-dialog-print-packet .indago-table thead th:nth-child(1) {
  width: 5%;
}
.indago-dialog-print-packet .indago-table thead th:nth-child(2) {
  width: 14%;
}
.indago-dialog-print-packet .indago-table thead th:nth-child(3) {
  width: 21%;
}
.indago-dialog-print-packet .indago-table thead th:nth-child(4) {
  width: 9%;
}
.indago-dialog-print-packet .indago-table thead th:nth-child(5) {
  width: 30%;
}
.indago-dialog-print-packet .indago-table thead th:nth-child(6) {
  width: 21%;
}
.indago-dialog-print-packet .indago-table__header-container {
  max-height: 47rem;
  overflow-y: auto;
}
.indago-dialog-print-packet .indago-table__header {
  position: sticky;
  top: 0;
}

.indago-dialog-print-packet-error {
  min-width: 32rem;
  max-width: 44rem;
}

.dashboard-details-dialog-body {
  width: 455px;
  display: flex;
  flex-direction: column;
  padding: 24px 0px 30px 16px;
}
.dashboard-details-dialog-body .widefield {
  margin-top: 1rem;
  margin-bottom: 2.6rem;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.dashboard-details-dialog-body .description-input {
  width: 96%;
  resize: none;
}

.-actions button {
  position: relative;
}
.-actions indago-popover {
  background-color: #222236;
  width: -moz-fit-content;
  width: fit-content;
  right: 10px;
  padding: 0.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  font-family: "Source Sans Pro", sans-serif;
}
@media (max-width: 1180px) {
  .-actions indago-popover {
    width: 40rem;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.-actions indago-popover:after {
  left: calc(100% - 2rem);
}
.-actions indago-popover .item {
  color: #fff;
  display: block;
  cursor: pointer;
  font-weight: 600;
  line-height: 4rem;
  font-size: 1.4rem;
  flex: 1;
}
@media (max-width: 1180px) {
  .-actions indago-popover .item {
    flex: 0 1 50%;
  }
}
.-actions indago-popover .item:hover {
  color: #b9ddf2;
}
.-actions indago-popover .item:hover .icon {
  fill: #389eda;
}
.-actions indago-popover .item > .icon {
  fill: #2383bc;
  vertical-align: sub;
  margin-right: 0.5rem;
}

.layout-default {
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  background-color: #f7f7f7;
  color: #030303;
  font-size: 1.4rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
}
.layout-default .container {
  margin: 0;
  padding: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.layout-default .view-content {
  flex: 1 1 auto;
  position: relative;
  height: 100%;
  overflow: auto;
}

.view-home {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 1rem;
  bottom: 3.4rem;
  left: 3.4rem;
  right: 3.4rem;
}
.view-home .notifications-container {
  border: 1px solid #2383bc;
  width: 100%;
  margin-top: 3rem;
  margin-bottom: -2rem;
  background: #f1f1f1;
  padding: 0.7rem 2rem;
  color: #4f4f4f;
  box-sizing: border-box;
}
@media (max-width: 1180px) {
  .view-home .notifications-container {
    margin: 0;
  }
}
.view-home .notifications-container .notification {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid #d2d2d2;
  padding: 1.3rem 0;
}
.view-home .notifications-container .notification svg {
  fill: #2383bc;
}
.view-home .notifications-container .notification:last-child {
  border: 0;
}
.view-home .notifications-container .notification .iconWrapper {
  flex: 0 0 0;
  margin-top: 0.1rem;
}
.view-home .notifications-container .notification .messageWrapper {
  flex: 1 1 auto;
  flex-wrap: wrap;
  margin: 0 1.7rem;
}
.view-home .notifications-container .notification .main-button {
  flex: 0 0 5rem;
  margin: auto;
  cursor: pointer;
}
.view-home .notifications-container .notification .title {
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.view-home .notifications-container .notification .message {
  line-height: 1.8rem;
}
.view-home > .welcomeImage {
  box-shadow: 0px 25px 50px -10px #e6e6e6;
  margin: auto;
  max-width: 72rem;
}
@media (max-width: 1180px) {
  .view-home > .welcomeImage {
    max-width: 58rem;
  }
}
.view-home .versionInfo {
  position: absolute;
  bottom: 0;
  right: 0;
  text-transform: uppercase;
  color: #a7a7a7;
  font-weight: 700;
  font-size: 1.5rem;
}

.view-sign-in {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  font-size: 16px;
  display: flex;
  font-family: "Source Sans Pro", sans-serif;
}
.view-sign-in h1 {
  font-size: 40px;
  font-weight: 400;
}
.view-sign-in .logo {
  background-image: url("Images/login-background.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: auto;
}
.view-sign-in .logo img {
  height: 15rem;
  margin-right: 8rem;
}
.view-sign-in .container {
  width: 50%;
  overflow: auto;
  position: relative;
}
.view-sign-in .user-input {
  position: absolute;
  left: 8rem;
  top: 50%;
  transform: translateY(-70%);
  width: 30rem;
  display: flex;
  flex-direction: column;
}
.view-sign-in .line-inputField {
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.view-sign-in .owner-info {
  position: absolute;
  left: 8rem;
  bottom: 6rem;
  font-size: 12px;
  color: darkgray;
}

.view-user-management {
  position: absolute;
  top: 1rem;
  bottom: 4rem;
  left: 3.4rem;
  right: 3.4rem;
}
.view-user-management .user-actions {
  display: flex;
  align-items: center;
}
.view-user-management .user-actions .numberOfItems {
  font-weight: 700;
}
.view-user-management .user-actions .actionsWrapper {
  margin-left: auto;
}
.view-user-management .user-actions indago-select-options {
  margin: 0 2rem;
}
.view-user-management .user-actions indago-search-popover {
  display: inline-block;
  margin: 0 2rem;
  vertical-align: middle;
}
.view-user-management indago-search-results-header {
  margin: 1rem 0rem;
  display: flex;
}
.view-user-management .user-list-wrapper {
  overflow-x: hidden;
  height: 90%;
}

.userRolePermissionsDialog {
  min-width: 64rem;
}
.userRolePermissionsDialog .label-container {
  display: flex;
}
.userRolePermissionsDialog .label {
  width: 8rem;
}

.role-permissions-list {
  height: 28rem;
  overflow: auto;
  line-height: 2.4rem;
}

.role-permissions-element {
  padding: 0.4rem 0.8rem 0.4rem 0.8rem;
  margin-bottom: 0.4rem;
  background: #f2f2f2;
}

.sub-permissions {
  text-indent: 1.6rem;
}

.view-system-notifications {
  margin: 0 3.4rem;
}
.view-system-notifications .notification-actions {
  display: flex;
  align-items: center;
  padding: 1.5rem 0;
  font-size: 1.5rem;
  justify-content: space-between;
  min-height: 4rem;
}
.view-system-notifications .notification-actions .numberOfItems {
  font-weight: 700;
}
.view-system-notifications .notification-actions .actionsWrapper {
  margin-left: auto;
}
.view-system-notifications .notification-actions indago-select-options {
  margin: 0 2rem;
}
.view-system-notifications .notification-list-wrapper {
  min-height: 12rem;
  height: 30%;
}

.view-create-orders {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 1rem;
  bottom: 5rem;
  left: 3.4rem;
  right: 3.4rem;
}
.view-create-orders > .content {
  overflow-y: auto;
  padding-bottom: 1rem;
}
.view-create-orders .generalForm {
  width: 47rem;
}
.view-create-orders .generalForm .radio {
  line-height: 2rem;
  display: inline-block;
  margin-right: 2rem;
}
.view-create-orders .generalForm .radio input {
  width: auto;
  vertical-align: middle;
  cursor: pointer;
}
.view-create-orders .generalForm .radio label {
  cursor: pointer;
}
.view-create-orders .generalForm .formGroup {
  margin-top: 1.6rem;
}
.view-create-orders .generalForm .formGroup .shortField {
  width: 32%;
  float: left;
  margin-right: 0.2rem;
}
.view-create-orders .generalForm .formGroup .shortField input {
  width: 85%;
}
.view-create-orders .widefield {
  margin-top: 1.6rem;
}
.view-create-orders .heading-bar {
  background: #ededed;
  border-left: 2px solid #2383bc;
  line-height: 1.5rem;
  margin: 0.5rem 0;
}
.view-create-orders .heading-bar > .heading {
  font-size: 1.6rem;
  display: inline-block;
  font-weight: 400;
  margin-left: 1.5rem;
}
.view-create-orders .heading-bar > .main-button {
  float: right;
  margin: 0.8rem 0.5rem;
}
.view-create-orders .searchSalesOrder {
  border: 1px solid #ccc;
  padding: 1rem 1.8rem;
  margin: 1rem 0 1.5rem 0;
  display: inline-block;
  width: 47rem;
  line-height: 2rem;
}
.view-create-orders .searchSalesOrder .title {
  font-weight: 700;
  margin: 0.7rem 0;
  float: left;
}
.view-create-orders .searchSalesOrder .text {
  font-style: italic;
  margin: 0.7rem 0;
  float: left;
  width: 78%;
}
.view-create-orders .searchSalesOrder .main-button.-primary {
  margin: 0.2rem 0 0 1rem;
  float: left;
}
.view-create-orders .searchSalesOrder .main-button.-transparent {
  margin-left: 0.6rem;
}
.view-create-orders .searchSalesOrder .salesOrder {
  font-weight: 700;
  font-size: 2rem;
  color: #2383bc;
}
.view-create-orders .searchSalesOrder .stepTwo {
  clear: both;
}
.view-create-orders .orderTypeBt {
  background: #f7f7f7;
  /* Old browsers */
  background: -moz-linear-gradient(top, #f7f7f7 0%, #efefef 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f7f7f7), color-stop(100%, #efefef));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #f7f7f7 0%, #efefef 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #f7f7f7 0%, #efefef 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #f7f7f7 0%, #efefef 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #f7f7f7 0%, #efefef 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#000000",GradientType=0 );
  /* IE6-9 */
  border: 1px solid #c7c7c7;
  text-align: center;
  display: inline-block;
  border-radius: 4px;
  box-shadow: 0px 2px 3px -1px rgba(0, 0, 0, 0.2);
  padding: 1rem 1.5rem;
  min-width: 6rem;
  cursor: pointer;
  margin-right: 0.5rem;
}
.view-create-orders .orderTypeBt.-selected {
  background: white;
  border-color: #2383bc;
  box-shadow: 0px 3px 4px -1px rgba(0, 0, 0, 0.2);
}
.view-create-orders .orderTypeBt > .icon {
  fill: #2383bc;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.4rem;
}
.view-create-orders .orderTypeBt > .label {
  color: #2383bc;
  font-weight: 600;
  display: block;
  font-size: 1.5rem;
}
.view-create-orders .tabOrderItems {
  display: flex;
}
.view-create-orders .tabOrderItems .col-1 {
  flex: 0 0 35rem;
}
.view-create-orders .tabOrderItems .col-1 .blockTitle {
  background: #ededed;
  line-height: 4rem;
  font-weight: 700;
  padding-left: 1.2rem;
  margin-right: 1rem;
}
.view-create-orders .tabOrderItems .col-1 .shortfield {
  width: 49%;
}
.view-create-orders .tabOrderItems .col-1 .main-button {
  margin-top: 1.5rem;
  margin-right: 1rem;
  float: right;
}
.view-create-orders .tabOrderItems .col-1 .cutout-container {
  margin-right: 1rem;
}
.view-create-orders .tabOrderItems .col-1 .cutout-container select {
  width: 100%;
}
.view-create-orders .tabOrderItems .col-1 .cutout-container ul ul {
  list-style-type: disc;
}
.view-create-orders .tabOrderItems .col-1 .cutout-container .cutout-list {
  padding: 0;
}
.view-create-orders .tabOrderItems .col-1 .cutout-container .cutout-item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 1rem;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.view-create-orders .tabOrderItems .col-1 .cutout-container .cutout-item > div {
  flex-grow: 2;
}
.view-create-orders .tabOrderItems .col-1 .cutout-container .cutout-item__quantity input {
  padding: 0.8rem;
  height: 2rem;
  border: 1px solid #d0d0d0;
  box-shadow: 0px 3px 3px -3px rgba(0, 0, 0, 0.45);
  background: whitesmoke;
  transition: background 0.2s linear;
  width: 100%;
}
.view-create-orders .tabOrderItems .col-1 .cutout-container .cutout-item__quantity input:focus {
  outline: none;
  background-color: #fff;
}
.view-create-orders .tabOrderItems .col-1 .cutout-container .cutout-item input {
  box-sizing: border-box;
  height: 3.7rem;
  width: 100%;
}
.view-create-orders .tabOrderItems .col-1 .cutout-container .cutout-item > div.has-error .fieldtitle, .view-create-orders .tabOrderItems .col-1 .cutout-container .cutout-item > div.has-error indago-select-options.widefield > label {
  color: red;
}
.view-create-orders .tabOrderItems .col-1 .cutout-container .cutout-item > div.has-error input {
  border-color: red;
}
.view-create-orders .tabOrderItems .col-1 .cutout-container .cutout-add {
  cursor: pointer;
  padding: 1rem;
  text-align: center;
  border: 1px dashed black;
  border-radius: 5em;
}
.view-create-orders .tabOrderItems .col-1 .validation-error-list {
  width: 100%;
}
.view-create-orders .tabOrderItems .items-table {
  flex: 1;
  width: auto;
  margin: 0 0 0 2rem;
}
.view-create-orders .tabOrderItems .items-table .cell[data-label="Cutout Types"] {
  max-width: 25em;
}
.view-create-orders .tabOrderItems .items-table .icon {
  width: 1.2rem;
  height: 1.2rem;
  cursor: pointer;
}
.view-create-orders .tabOrderItems .items-table .head .cell:last-child {
  width: auto;
  min-width: 0;
}

.view-reservations {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 1rem;
  bottom: 5rem;
  left: 3.4rem;
  right: 3.4rem;
  overflow: auto;
}
.view-reservations > .form {
  width: 30rem;
}
.view-reservations select {
  width: 98%;
}
.view-reservations .main-button {
  float: right;
  margin: 2rem 0 0 1rem;
}

.view-action-history {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 1rem;
  bottom: 3.4rem;
  left: 3.4rem;
  right: 3.4rem;
}
.view-action-history indago-search-results-header {
  max-width: calc(100% - 23rem);
  line-height: 3rem;
}
.view-action-history indago-loading-spinner {
  flex: 1 0 auto;
}
.view-action-history indago-select-options {
  margin: 0;
}
.view-action-history .audit-actions {
  margin-bottom: 1rem;
}
.view-action-history .audit-actions header {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
}
.view-action-history .audit-actions header > *:nth-child(n+2) {
  margin-left: 1.5rem;
}
.view-action-history .audit-actions .listing-items {
  flex: 1;
}
.view-action-history .audit-actions .listing-items span {
  font-weight: 600;
}
.view-action-history .audit-actions [indago-icon=refresh] {
  cursor: pointer;
}
.view-action-history .audit-actions [indago-icon=refresh] svg {
  fill: #2383bc;
}
.view-action-history .audit-actions indago-search-popover form .wrapper {
  width: 34rem;
}
.view-action-history .audit-actions indago-search-popover form.-expanded .wrapper {
  left: -38rem;
}
.view-action-history .audit-actions indago-search-popover .inputField {
  position: relative;
}
.view-action-history .audit-actions indago-search-popover .inputField.-withClear {
  width: 49%;
  float: left;
  margin-right: 0.5rem;
}
.view-action-history .audit-actions indago-search-popover .inputField.-withClear .form {
  min-width: 1px;
}
.view-action-history .audit-actions indago-search-popover .inputField.-to {
  margin-right: 0;
}
.view-action-history .audit-actions indago-search-popover .inputField.-description {
  float: left;
  width: 100%;
}
.view-action-history .audit-actions indago-search-popover .form {
  width: 100%;
  box-sizing: border-box;
  height: 3.7rem;
  margin: 0 0 0.5rem 0;
}
.view-action-history .userList {
  width: 100%;
}

.view-unauthorized {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  font-size: 16px;
  display: flex;
  font-family: "Source Sans Pro", sans-serif;
  align-content: center;
  justify-content: center;
}
.view-unauthorized > .wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-content: center;
  justify-content: center;
}
.view-unauthorized .trafficLight {
  width: 10rem;
  height: 100%;
  margin: 0 5rem;
  position: relative;
}
.view-unauthorized .trafficLight .st0 {
  fill: #4F545B;
}
.view-unauthorized .trafficLight .st1 {
  fill: #1D2226;
}
.view-unauthorized .trafficLight .st2 {
  fill: #393F47;
}
.view-unauthorized .trafficLight .st3 {
  fill: #2D333A;
}
.view-unauthorized .trafficLight .st4 {
  fill: #444951;
}
.view-unauthorized .trafficLight .st5 {
  fill: #EF2E65;
}
.view-unauthorized .trafficLight .st6 {
  fill: #CC0E57;
}
.view-unauthorized .trafficLight .st7 {
  fill: #AAAAAA;
}
.view-unauthorized .trafficLight .st8 {
  fill: #7C7C7C;
}
.view-unauthorized .trafficLight .st9 {
  fill: #232528;
}
.view-unauthorized .trafficLight .st10 {
  fill: #3A3E42;
}
.view-unauthorized .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.view-unauthorized .content .title {
  color: #2c2c46;
  font-size: 3rem;
  font-weight: 400;
  margin-top: -15rem;
}
.view-unauthorized .content .text {
  margin-top: -1rem;
  color: #030303;
}

.view-role-management {
  position: absolute;
  top: 1rem;
  bottom: 3rem;
  left: 3.4rem;
  right: 3.4rem;
  display: flex;
}
.view-role-management .rolesMenu {
  flex: 0 0 23rem;
  position: relative;
}
.view-role-management .rolesMenu header {
  border-bottom: 1px solid #e0e0e0;
  height: 1.5rem;
  margin: 0.6rem 0;
  padding: 1rem 0;
  box-sizing: content-box;
}
.view-role-management .rolesMenu .title {
  display: inline-block;
  margin: 0;
}
.view-role-management .rolesMenu .addRole {
  cursor: pointer;
  color: #2383bc;
  font-weight: 700;
  float: right;
}
.view-role-management .rolesMenu .rolesList {
  list-style: none;
  padding: 0;
  margin: 0;
  height: calc(100% - 4.7rem);
  overflow-y: auto;
  overflow-x: hidden;
}
.view-role-management .rolesMenu .rolesList .role {
  cursor: pointer;
  line-height: 2.3rem;
  font-size: 1.5rem;
  padding: 1rem;
}
.view-role-management .rolesMenu .rolesList .role.-active {
  background: #ededed;
  color: #2383bc;
  font-weight: 700;
}
.view-role-management .rolesMenu .rolesList .role.-active::before {
  color: #2383bc;
}
.view-role-management .rolesMenu .rolesList .role::before {
  content: "•";
  color: #979797;
}
.view-role-management .rolesMenu .rolesList span {
  margin-left: 0.5rem;
}
.view-role-management .rolesMenu .rolesListMobile {
  display: none;
  position: absolute;
  left: 5rem;
  top: 0.8rem;
  padding: 0.8rem 3.5rem 0.8rem 0.8rem;
}
.view-role-management .roleView {
  flex: 1 0 auto;
  background: white;
  margin: 1.5rem 0 0 2.5rem;
  box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}
.view-role-management .roleView.-changesPending {
  box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.2), 0 0 0 1px #2383bc inset;
}
.view-role-management .roleView header {
  border-left: 5px solid #2c2c46;
  border-bottom: 1px solid #ededed;
  padding: 1.5rem;
}
.view-role-management .roleView header .title {
  display: inline-block;
  margin: 0;
  font-size: 2rem;
  font-weight: 600;
}
.view-role-management .roleView header .main-button {
  float: right;
  margin: -0.4rem 0.5rem;
}
.view-role-management .roleView .content {
  overflow-y: auto;
  padding: 2rem;
  display: flex;
}
.view-role-management .roleView .leftColumn {
  flex: 1 1 auto;
}
.view-role-management .roleView .rightColumn {
  flex: 0 0 38rem;
  margin-left: 3rem;
}
.view-role-management .roleView h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}
.view-role-management .roleView .permissionsList {
  list-style: none;
  padding: 0;
  margin: 0;
}
.view-role-management .roleView .permissionsList .permission {
  line-height: 3.5rem;
  border-bottom: 1px solid #ededed;
  cursor: pointer;
  position: relative;
}
.view-role-management .roleView .permissionsList .permission > .-permissionChanged {
  font-weight: bold;
  color: #2383bc;
}
.view-role-management .roleView .permissionsList .permission .iconWrapper {
  border: 1px solid #2383bc;
  border-radius: 50%;
  padding: 0 5px;
  margin-left: 0.5rem;
}
.view-role-management .roleView .permissionsList .permission .icon {
  fill: #2383bc;
  width: 0.8rem;
  height: 1rem;
}
.view-role-management .roleView .permissionsList .-permissionSubList {
  width: 29rem;
  left: 19rem;
  top: -0.5rem;
  padding-bottom: 1rem;
}
.view-role-management .roleView .permissionsList .-permissionSubList .item {
  display: inline-block;
  margin: 0.1rem 1.6rem;
  width: 30%;
}
.view-role-management .roleView .permissionsList input[type=checkbox] {
  float: left;
  margin-top: 1.1rem;
  margin-right: 0.5rem;
}
.view-role-management .roleView .permissionsList label {
  cursor: pointer;
  padding: 1rem 0;
}
.view-role-management .roleView .assignUsers {
  position: relative;
  background: whitesmoke;
  padding: 1.8rem;
  margin-bottom: 2rem;
}
.view-role-management .roleView .assignUsers .singleUser {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.view-role-management .roleView .assignUsers .singleUser .main-button {
  flex: 0 0 auto;
  margin-top: 0;
  float: none;
}
.view-role-management .roleView .assignUsers user-search,
.view-role-management .roleView .assignUsers .user-search {
  position: relative;
}
.view-role-management .roleView .assignUsers user-search .userList,
.view-role-management .roleView .assignUsers .user-search .userList {
  position: absolute;
  left: 0;
  right: 0;
}
.view-role-management .roleView .multiUser {
  display: flex;
  align-items: center;
}
.view-role-management .roleView .multiUser h4 {
  margin: 0;
  margin-right: 1rem;
  flex: 1;
}
.view-role-management .roleView .user {
  background: whitesmoke;
  display: flex;
  align-items: center;
  padding: 1.3rem;
}
.view-role-management .roleView .user > div {
  display: flex;
  flex-direction: column;
}
.view-role-management .roleView .user.-add {
  background: var(--surface-success-subtle);
}
.view-role-management .roleView .user.-remove {
  background: #ffe2e2;
  text-decoration: line-through;
}
.view-role-management .roleView .user .name {
  margin: 0 0.6rem;
}
.view-role-management .roleView .user .-close,
.view-role-management .roleView .user .-undo {
  min-width: 1.3rem;
  width: 1.3rem;
  height: 1.3rem;
  margin-left: auto;
}
.view-role-management .roleView .user .-close svg,
.view-role-management .roleView .user .-undo svg {
  fill: #2383bc;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
@media (max-width: 1000px) {
  .view-role-management {
    flex-direction: column;
    overflow-y: auto;
  }
  .view-role-management .addRole {
    margin-right: 2rem;
  }
  .view-role-management .rolesList {
    display: none;
  }
  .view-role-management .rolesMenu {
    order: 1;
    flex: 0 0 5rem;
  }
  .view-role-management .rolesMenu header {
    border: 0;
  }
  .view-role-management .rolesMenu .rolesListMobile {
    display: block;
  }
  .view-role-management .roleView {
    margin-left: 0;
  }
}
@media (max-width: 1400px) {
  .view-role-management .roleView {
    order: 2;
  }
  .view-role-management .roleView .content {
    flex-direction: column;
  }
  .view-role-management .roleView .leftColumn {
    order: 2;
  }
  .view-role-management .roleView .rightColumn {
    flex: 1 1 auto;
    margin-left: 0;
    order: 1;
    margin-bottom: 2.6rem;
  }
  .view-role-management .roleView header .title {
    font-size: 1.7rem;
    line-height: 2.2rem;
    max-width: 35rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .view-role-management .roleView header .main-button {
    padding: 0 1rem;
    line-height: 2.8rem;
    min-width: 6rem;
    margin: -0.4rem 0.2rem;
  }
  .view-role-management .roleView header .main-button > .label {
    font-size: 1.3rem;
  }
  .view-role-management .roleView .singleUser {
    background: none;
    padding: 0;
  }
  .view-role-management .assignedUsers {
    max-width: 38rem;
  }
}
.view-role-management .indago-separator {
  margin: 1rem 0;
}
.view-role-management .indago-separator::before, .view-role-management .indago-separator::after {
  border-bottom: 1px solid #d0d0d0;
}
.view-role-management .indago-separator span {
  font-style: italic;
}
.view-role-management .icon.-lock {
  height: 1.6rem;
  width: 1.6rem;
  fill: #4a4a75;
}
.view-role-management .icon.-active {
  fill: #2383bc;
}

chart-datepicker {
  display: inline-block;
}
chart-datepicker .button {
  background-color: #f1f8fc;
  color: #2383BC;
  font-weight: 600;
  padding: 0.825rem 1.4rem;
  border-radius: 3rem;
  transition: background 0.2s linear;
  cursor: pointer;
}
chart-datepicker .button:hover {
  box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.15), 0 0 1px 0 #389eda inset;
  background-color: #e4f2fa;
}

.view-dashboard-index > .tab-container {
  position: relative;
  margin-left: 3.4rem;
  margin-right: 3.4rem;
}
.view-dashboard-index .card footer button {
  float: right;
}
.view-dashboard-index .controls .orderStatus,
.view-dashboard-index .controls .workcenterState {
  margin-right: 2rem;
}
.view-dashboard-index .ct-chart-donut > .ct-series {
  stroke: #f7f7f7;
  stroke-width: 2px;
}
.view-dashboard-index .refreshIcon {
  position: absolute;
  right: 3.5rem;
  top: 1.7rem;
  cursor: pointer;
}
.view-dashboard-index .refreshIcon svg {
  fill: #2383bc;
}

.dashboard-detail {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3.4rem;
}
.dashboard-detail .detail-header {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: row-reverse;
}
.dashboard-detail .card button.border {
  display: none;
}

.view-orders-tab {
  position: absolute;
  top: 6rem;
  bottom: 0;
  left: 3.4rem;
  right: 3.4rem;
  padding-bottom: 2rem;
}
.view-orders-tab .card {
  min-height: 470px;
}
.view-orders-tab > .twoCardsInline {
  display: flex;
}
.view-orders-tab > .twoCardsInline > .card {
  flex: 50%;
}
@media (max-width: 1550px) {
  .view-orders-tab .twoCardsInline {
    flex-direction: column;
  }
  .view-orders-tab .twoCardsInline .card {
    width: auto;
  }
}

.view-production-tab {
  position: absolute;
  top: 6rem;
  bottom: 0;
  left: 3.4rem;
  right: 3.4rem;
  padding-bottom: 2rem;
}
.view-production-tab .card {
  min-height: 300px;
}
.view-production-tab production-composition .container {
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  min-height: 50rem;
}
@media (max-width: 1180px) {
  .view-production-tab production-composition .container {
    flex-direction: column;
  }
}

material-type .ct-chart-bar .ct-grid.ct-horizontal:first-of-type {
  stroke-opacity: 1;
}
material-type indago-legend {
  flex: 0 1 auto;
  flex-wrap: wrap-reverse;
  justify-content: flex-end;
}
material-type indago-legend span {
  margin-top: 0.5rem;
}
material-type indago-legend .legend-item-0:before {
  background-color: #454D82;
}
material-type indago-legend .legend-item-1:before {
  background-color: #556CAC;
}
material-type indago-legend .legend-item-2:before {
  background-color: #749FC3;
}
material-type indago-legend .legend-item-3:before {
  background-color: #83C5D8;
}
material-type indago-legend .legend-item-4:before {
  background-color: #A0D5CF;
}
material-type indago-legend .legend-item-5:before {
  background-color: #C4EFE1;
}
material-type indago-legend .legend-item-6:before {
  background-color: red;
}
material-type indago-legend .legend-item-7:before {
  background-color: blue;
}
material-type tooltip {
  z-index: 20;
}
material-type tooltip h3 {
  color: #838383;
  margin-top: 0;
  display: flex;
}
material-type tooltip h3 span:first-of-type {
  flex: 1 0 auto;
}
material-type tooltip ul {
  margin: 0;
  padding: 0;
}
material-type tooltip li {
  display: flex;
  text-align: right;
  margin-top: 0.5rem;
  color: #696969;
  font-weight: 800;
}
material-type tooltip li span:first-of-type {
  color: #707070;
  font-weight: 600;
  flex: 1 0 auto;
  padding-right: 1rem;
  text-align: left;
}
material-type tooltip li span:last-of-type {
  width: 3rem;
  padding-left: 1rem;
  color: #B7B7B7;
  font-weight: 800;
}

production-composition .gauge-container {
  flex: 1 1 auto;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 1180px) {
  production-composition .gauge-container {
    border-left: 0;
    border-top: 1px solid #ededed;
    margin-top: 3rem;
  }
}
production-composition production-composition-donut-chart {
  flex: 0 0 55rem;
  padding-top: 1rem;
}
@media (max-width: 1180px) {
  production-composition production-composition-donut-chart .ct-chart-donut {
    display: block;
    margin: 0 auto;
  }
}
@media (max-width: 1180px) {
  production-composition production-composition-donut-chart {
    flex: 0 0 100%;
  }
}
production-composition work-center-gauge {
  flex: 0 1 19.9%;
}
@media (max-width: 2300px) {
  production-composition work-center-gauge {
    flex: 0 1 24.9%;
  }
}
@media (max-width: 1865px) {
  production-composition work-center-gauge {
    flex: 0 1 32.9%;
  }
}
@media (max-width: 1550px) {
  production-composition work-center-gauge {
    flex: 0 1 49.8%;
  }
}
production-composition-donut-chart .ct-series-a .ct-slice-donut-solid {
  fill: rgba(0, 0, 0, 0.35);
}
production-composition-donut-chart .ct-slice-donut-solid.throughput_0 {
  fill: #872325;
}
production-composition-donut-chart .ct-slice-donut-solid.throughput_10 {
  fill: #9c4032;
}
production-composition-donut-chart .ct-slice-donut-solid.throughput_20 {
  fill: #c26441;
}
production-composition-donut-chart .ct-slice-donut-solid.throughput_30 {
  fill: #e78248;
}
production-composition-donut-chart .ct-slice-donut-solid.throughput_40 {
  fill: #f0a247;
}
production-composition-donut-chart .ct-slice-donut-solid.throughput_50 {
  fill: #ffb93f;
}
production-composition-donut-chart .ct-slice-donut-solid.throughput_60 {
  fill: #ffd042;
}
production-composition-donut-chart .ct-slice-donut-solid.throughput_70 {
  fill: #c5b635;
}
production-composition-donut-chart .ct-slice-donut-solid.throughput_80 {
  fill: #81a13a;
}
production-composition-donut-chart .ct-slice-donut-solid.throughput_90 {
  fill: #51973d;
}
production-composition-donut-chart .ct-slice-donut-solid.throughput_100 {
  fill: #28843e;
}
production-composition-donut-chart .ct-label {
  font-size: 1.6rem;
  fill: #797979;
}
production-composition-donut-chart .wc-label {
  font-weight: 700;
}
production-composition-donut-chart .measure-label {
  font-size: 1.4rem;
}
production-composition-donut-chart .wc-total {
  font-size: 1.7rem;
  fill: #bfbfbf;
}
production-composition-donut-chart .quantity-total {
  font-size: 3rem;
}
production-composition-donut-chart .uom-total {
  font-size: 2.1rem;
}
production-composition-donut-chart .ct-chart {
  position: relative;
  overflow: hidden;
}
production-composition-donut-chart .ct-chart .ct-chart-donut {
  z-index: 2;
  position: relative;
}
production-composition-donut-chart .ct-chart:after {
  content: "";
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 40rem;
  height: 9rem;
  z-index: 1;
  background: -moz-radial-gradient(center, ellipse cover, #515151 0%, rgba(126, 126, 126, 0.64) 21%, rgba(212, 212, 212, 0.29) 42%, rgba(255, 255, 255, 0) 59%);
  background: -webkit-radial-gradient(center, ellipse cover, #515151 0%, rgba(126, 126, 126, 0.64) 21%, rgba(212, 212, 212, 0.29) 42%, rgba(255, 255, 255, 0) 59%);
  background: radial-gradient(ellipse at center, #515151 0%, rgba(126, 126, 126, 0.64) 21%, rgba(212, 212, 212, 0.29) 42%, rgba(255, 255, 255, 0) 59%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#515151", endColorstr="#00ffffff",GradientType=1 );
}

.gauge-container {
  flex: 1 1 auto;
  align-content: flex-start;
  display: flex;
  flex-wrap: wrap;
  border-left: 1px solid #ededed;
}

work-center-gauge {
  flex: 0 1 19.93%;
  height: 25rem;
  border: 1px solid #ededed;
  border-left: 0;
  border-top: 0;
  box-sizing: content-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #696969;
}
@media (max-width: 2300px) {
  work-center-gauge {
    flex: 0 1 24.9%;
  }
}
@media (max-width: 1865px) {
  work-center-gauge {
    flex: 0 1 33.2%;
  }
}
work-center-gauge .workcenterName {
  font-weight: 400;
  font-size: 2.2rem;
  letter-spacing: -0.5px;
  margin: 2rem 0 1rem 0;
}
work-center-gauge .quantity {
  margin: 1.5rem 0 1.2rem;
  display: flex;
  align-items: center;
}
work-center-gauge .quantity .number {
  font-size: 3rem;
}
work-center-gauge .quantity .unit {
  font-size: 1.7rem;
  margin-left: 0.5rem;
}
work-center-gauge .extraInfo {
  align-self: stretch;
  display: flex;
  flex-wrap: nowrap;
  width: 80%;
  margin: 0 auto;
}
work-center-gauge .extraInfo .block {
  width: 50%;
  text-align: center;
}
work-center-gauge .extraInfo .block:first-of-type() {
  border-right: 1px solid #d9d9d9;
}
work-center-gauge .extraInfo .block div:nth-child(1) {
  margin: 0 0 0.8rem 0;
  opacity: 0.6;
}
work-center-gauge .extraInfo .block div:nth-child(2) {
  font-weight: 700;
  font-size: 1.7rem;
}
work-center-gauge .extraInfo .block .unit {
  font-size: 1.5rem;
}

work-center-state {
  flex: 1 1 auto;
  border-left: 1px solid #ededed;
}
work-center-state .ct-series.ct-series-a .ct-bar {
  stroke: #B8D7F3;
}
work-center-state .ct-series.ct-series-b .ct-bar {
  stroke: #2A80B9;
}
work-center-state .ct-bar {
  stroke-width: 16px;
}
work-center-state .ct-label {
  font-style: italic;
}
work-center-state .data-labels {
  position: relative;
  right: inherit;
  top: inherit;
  margin-bottom: 2rem;
}
work-center-state .data-labels span {
  margin: 0 2rem;
}
work-center-state .data-labels span.series-label-1:before {
  background-color: #B8D7F3;
}
work-center-state .data-labels span.series-label-2:before {
  background-color: #2A80B9;
}

work-center-completion div#work-center-completion .ct-bar {
  stroke-width: 32px;
}
work-center-completion div#work-center-completion.-small .ct-bar {
  stroke-width: 12px;
}
@media (min-width: 1024px) {
  work-center-completion div#work-center-completion.-small .ct-bar {
    stroke-width: 22px;
  }
}
work-center-completion div#work-center-completion.-medium .ct-bar {
  stroke-width: 8px;
}
@media (min-width: 1440px) {
  work-center-completion div#work-center-completion.-medium .ct-bar {
    stroke-width: 18px;
  }
}
work-center-completion div#work-center-completion.-large .ct-bar {
  stroke-width: 6px;
}
@media (min-width: 1440px) {
  work-center-completion div#work-center-completion.-large .ct-bar {
    stroke-width: 12px;
  }
}
work-center-completion header.legend {
  display: flex;
  margin-right: 25px;
}
work-center-completion indago-chart-toggle {
  flex: 1 0 auto;
}
work-center-completion indago-legend {
  flex: 0 1 auto;
  flex-wrap: wrap-reverse;
  justify-content: flex-end;
}
work-center-completion indago-legend span {
  margin-top: 0.5rem;
}
work-center-completion indago-legend .legend-item-0:before {
  background-color: #454D82;
}
work-center-completion indago-legend .legend-item-1:before {
  background-color: #556CAC;
}
work-center-completion indago-legend .legend-item-2:before {
  background-color: #749FC3;
}
work-center-completion indago-legend .legend-item-3:before {
  background-color: #83C5D8;
}
work-center-completion indago-legend .legend-item-4:before {
  background-color: #A0D5CF;
}
work-center-completion indago-legend .legend-item-5:before {
  background-color: #C4EFE1;
}
work-center-completion indago-legend .legend-item-6:before {
  background-color: red;
}
work-center-completion indago-legend .legend-item-7:before {
  background-color: blue;
}
work-center-completion indago-legend .legend-item-8:before {
  background-color: yellow;
}
work-center-completion tooltip {
  z-index: 20;
}
work-center-completion tooltip h3 {
  color: #838383;
  margin-top: 0;
  display: flex;
}
work-center-completion tooltip h3 span:first-of-type {
  flex: 1 0 auto;
}
work-center-completion tooltip ul {
  margin: 0;
  padding: 0;
}
work-center-completion tooltip ul.tooltip-total {
  border-top: 1px solid black;
  margin-top: 1rem;
}
work-center-completion tooltip li {
  display: flex;
  text-align: right;
  margin-top: 0.5rem;
  color: #696969;
  font-weight: 800;
}
work-center-completion tooltip li span:first-of-type {
  color: #707070;
  font-weight: 600;
  flex: 1 0 auto;
  padding-right: 1rem;
  text-align: left;
}
work-center-completion tooltip li span:last-of-type {
  width: 3rem;
  padding-left: 1rem;
  color: #B7B7B7;
  font-weight: 800;
}

.view-order-management {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 1rem;
  bottom: 0;
  left: 0;
  right: 0;
}
.view-order-management indago-search-results-header {
  margin: 1rem 3.4rem;
}
.view-order-management indago-loading-spinner {
  flex: 1 0 auto;
}
.view-order-management .orders {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  position: relative;
}
.view-order-management .-hasSelectedOrders .order-selector {
  opacity: 1;
  visibility: visible;
}
.view-order-management > .tab-container {
  position: relative;
  margin-left: 3.4rem;
  margin-right: 3.4rem;
}
.view-order-management .list-toolbar {
  padding: 0 3.4rem;
}
.view-order-management .list-toolbar .refreshIcon {
  margin: 0 0.5rem;
  cursor: pointer;
  height: 1.8rem;
}
.view-order-management .list-toolbar .refreshIcon .icon {
  fill: #2383bc;
}
.view-order-management .list-toolbar indago-banner {
  grid-column: 1/-1;
  margin-right: 1rem;
}
.view-order-management .list-age {
  font-style: italic;
  font-weight: normal;
  margin-left: 1rem;
}
.view-order-management .pagination-footer {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  padding: 1.2rem 3.4rem;
  border-top: 1px solid #bebebe;
  background: #f7f7f7;
}
.view-order-management .item-container {
  flex: 1 0 auto;
  padding: 0 3.4rem;
  display: block;
  position: relative;
  overflow-y: auto;
  height: 0px;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
.view-order-management .item-container .grouped-by {
  font-weight: 700;
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  margin-top: 2rem;
}
.view-order-management .item-container .grouped-by:after {
  position: absolute;
  top: 51%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #d4d4d4;
  margin-left: 1rem;
}
.view-order-management .lazy-load {
  background: #ededed;
  width: 100%;
  display: block;
  text-align: center;
  margin: 1rem 0;
}
.view-order-management .lazy-load .main-button {
  margin: 1rem 0;
}
.view-order-management .orderitem-cell.-inventoryStatus {
  flex: 0 0 12.6rem;
}
@media (max-width: 1000px) {
  .view-order-management .content.on-hold .orderitem-cell.-color, .view-order-management .content.on-hold .orderitem-cell.-branchWithAddress, .view-order-management .content.cancelled .orderitem-cell.-color, .view-order-management .content.cancelled .orderitem-cell.-branchWithAddress {
    display: none;
  }
}
@media (max-width: 1550px) {
  .view-order-management .orderitem-cell.-issueSource {
    display: none;
  }
}
@media (max-width: 1400px) {
  .view-order-management .orderitem-cell.-builder {
    display: none;
  }
}
@media (max-width: 1180px) {
  .view-order-management .orderitem-cell.-branchWithAddress {
    display: none;
  }
}

order-management-item,
design-management-item {
  display: block;
  margin: 2px 0;
  box-sizing: border-box;
  height: 4.6rem;
  position: relative;
  border: 1px solid #e0e0e0;
}
@media (hover) {
  order-management-item:hover,
design-management-item:hover {
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.25);
    z-index: 3;
  }
  order-management-item:hover .order-selector,
design-management-item:hover .order-selector {
    opacity: 1;
  }
}
order-management-item.-selected,
design-management-item.-selected {
  border: 1px solid #2383bc;
}
order-management-item.-selected .orderitem-summary,
design-management-item.-selected .orderitem-summary {
  background: #f4f9fd;
}
order-management-item.-onHold,
design-management-item.-onHold {
  border: 1px solid #f6b4c8;
}
order-management-item.-onHold .orderitem-summary,
design-management-item.-onHold .orderitem-summary {
  background: #faf4f6;
}

design-management-item {
  height: 100%;
  container-type: inline-size;
  container-name: dm-row;
}
design-management-item .design-item-buttons {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 0.8rem;
  white-space: nowrap;
  margin-left: auto;
}
design-management-item .design-item-buttons__action-menu {
  --action-menu-icon-size: 1.5rem;
  --action-menu-icon-color: #4a4a75;
}
design-management-item .orderitem-summary .openDetails {
  display: flex;
  height: 5.6rem;
  align-items: center;
}
design-management-item design-activity-tracker {
  margin: 0.4rem 0 0.4rem 0;
}
design-management-item .orderitem-cell.-workcenters {
  flex: 0 0 44rem;
  width: auto;
  min-width: 0 !important;
}
design-management-item .activity-tracker-container {
  width: 100%;
  min-width: 0;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}
design-management-item order-number {
  flex: 0 0 auto;
}
design-management-item .orderitem-cell.-branchWithAddress,
design-management-item .orderitem-cell.-builder {
  display: none;
  min-width: 0;
}
@container dm-row (min-width: 125.9rem) {
  design-management-item .orderitem-cell.-branchWithAddress {
    display: block;
  }
}
@container dm-row (min-width: 155.1rem) {
  design-management-item .orderitem-cell.-builder {
    display: block;
  }
}
design-management-item .orderitem-cell.-builder {
  flex: 1 1 8rem;
}
@container dm-row (max-width: 116.7rem) {
  design-management-item .orderitem-cell.-workcenters {
    flex: 1 1 44rem;
  }
}

order-management-item .-actions button {
  position: relative;
}
order-management-item .-actions indago-popover {
  background-color: #222236;
  width: 20rem;
  right: 10px;
  padding: 0.5rem 1.5rem;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1180px) {
  order-management-item .-actions indago-popover {
    width: 40rem;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
order-management-item .-actions indago-popover:after {
  left: calc(100% - 2rem);
}
order-management-item .-actions indago-popover .item {
  color: #fff;
  display: block;
  cursor: pointer;
  font-weight: 600;
  line-height: 4rem;
  flex: 1;
}
@media (max-width: 1180px) {
  order-management-item .-actions indago-popover .item {
    flex: 0 1 50%;
  }
}
order-management-item .-actions indago-popover .item:hover {
  color: #b9ddf2;
}
order-management-item .-actions indago-popover .item:hover .icon {
  fill: #389eda;
}
order-management-item .-actions indago-popover .item > .icon {
  fill: #2383bc;
  vertical-align: sub;
  margin-right: 0.5rem;
}

.siteMaintenance {
  padding: 0 3rem;
}
.siteMaintenance .userActions {
  display: flex;
  justify-content: flex-end;
  padding: 2rem;
  grid-gap: 1rem;
}
.siteMaintenance .itemsList {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.siteMaintenance .itemsList input {
  justify-self: center;
}
.siteMaintenance .itemsList div {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr 5fr minmax(5rem, 5rem);
  column-gap: 2rem;
  padding: 1.2rem;
}
.siteMaintenance .itemsList div:nth-child(1n+2) {
  background: white;
}
@media (hover) {
  .siteMaintenance .itemsList div:nth-child(1n+2):hover {
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.35);
    z-index: 3;
    cursor: pointer;
  }
}
.siteMaintenance .indago-grid .grid-header {
  padding: 1.2rem;
  background: #2c2c46;
}
.siteMaintenance .indago-grid .grid-header span.grid-cell {
  position: sticky;
  top: 0;
  align-self: center;
}
.siteMaintenance .export {
  right: 3rem;
  position: absolute;
}

.configuration {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 1rem;
  left: 0;
  right: 0;
  bottom: 0;
  margin-left: 3.4rem;
  margin-right: 3.4rem;
}
.configuration.-expected_dates table {
  white-space: nowrap;
}
.configuration indago-grid-table {
  overflow: auto;
}

indago-grid-table {
  overflow: auto;
}

indago-grid-table {
  overflow: auto;
}

.content-container {
  height: 100%;
  overflow: hidden;
}

.user-actions {
  display: flex;
  justify-content: end;
  min-height: 3rem;
  gap: 1rem;
}

.configuration-table .indago-grid {
  grid-template-columns: minmax(10rem, 10rem) minmax(25rem, 1fr) minmax(10rem, 1fr) minmax(20rem, 8fr) minmax(7rem, 7rem) minmax(10rem, 3fr) minmax(10rem, 4fr) minmax(10rem, 3fr) minmax(10rem, 4fr) minmax(7rem, 2fr);
}
.configuration-table .indago-grid .grid-header .grid-cell:nth-child(5) {
  justify-content: center;
}
.configuration-table .indago-grid .grid-header .grid-cell:last-child {
  width: 6rem;
}
.configuration-table .indago-grid .row.-configuration .grid-cell {
  padding: 0.4rem 0.8rem;
  color: #030303;
}
.configuration-table .indago-grid .row.-configuration .grid-cell input:disabled,
.configuration-table .indago-grid .row.-configuration .grid-cell textarea:disabled {
  border-color: transparent;
  background-color: inherit;
  color: #030303;
}
.configuration-table .indago-grid .row.-configuration .grid-cell textarea {
  resize: none;
  font-size: 1.4rem;
  padding: 0.3rem;
  border: 1px solid #858585;
  box-shadow: none;
  vertical-align: middle;
  width: 100%;
  background-color: #ffffff;
  height: 3.2rem;
  align-self: center;
  max-width: 50rem;
  padding-top: 0.6rem;
}
.configuration-table .indago-grid .row.-configuration .grid-cell:nth-child(6) {
  justify-content: center;
}
.configuration-table .indago-grid .grid-content .grid-cell input {
  width: calc(100% - 1rem);
  border-width: 1px;
  height: 2.8rem;
}
.configuration-table .indago-grid .grid-content .grid-cell input[type=checkbox] {
  height: 1.5rem;
}
.configuration-table .indago-grid .grid-content .grid-cell__user-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
}
.configuration-table .indago-grid .grid-content .grid-cell__user-actions div {
  cursor: pointer;
}
.configuration-table .indago-grid .grid-content .grid-cell__user-actions icon {
  padding: 0.5rem;
  display: flex;
  cursor: pointer;
}
.configuration-table .indago-grid .grid-content .grid-cell__user-actions icon .icon {
  width: auto;
}
.configuration-table.-workcenter .indago-grid {
  grid-template-columns: minmax(25rem, 1fr) minmax(10rem, 1fr) minmax(20rem, 8fr) minmax(7rem, 7rem) minmax(7rem, 7rem) minmax(10rem, 3fr) minmax(10rem, 4fr) minmax(10rem, 3fr) minmax(10rem, 4fr) minmax(7rem, 2fr);
}
.configuration-table.-workcenter .indago-grid .grid-header .grid-cell:nth-child(4),
.configuration-table.-workcenter .indago-grid .row.-configuration .grid-cell:nth-child(4) {
  justify-content: flex-end;
}
.configuration-table.-workcenter .indago-grid .row.-configuration .grid-cell:nth-child(4) input {
  text-align: right;
}
.configuration-table.-workcenter .indago-grid .row.-configuration .grid-cell:nth-child(4) input:not(:disabled) {
  direction: rtl;
  padding-right: 0.4rem;
}
.configuration-table.-workcenter .indago-grid .row.-configuration .grid-cell:nth-child(4) input:disabled {
  padding-right: 0;
  -moz-appearance: textfield;
  appearance: textfield;
}
.configuration-table.-workcenter .indago-grid .row.-configuration .grid-cell:nth-child(4) input:disabled::-webkit-inner-spin-button, .configuration-table.-workcenter .indago-grid .row.-configuration .grid-cell:nth-child(4) input:disabled::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.configuration-table.-workcenter .indago-grid .row.-configuration > .validation-error-list {
  grid-column: 1/-1;
}
.configuration-table.-capacity-units .indago-grid, .configuration-table.-capacity-timeframe .indago-grid {
  grid-template-columns: minmax(25rem, 1fr) minmax(10rem, 1fr) minmax(20rem, 8fr) minmax(7rem, 7rem) minmax(10rem, 3fr) minmax(10rem, 4fr) minmax(10rem, 3fr) minmax(10rem, 4fr) minmax(7rem, 2fr);
}
.configuration-table.-capacity-units .indago-grid .grid-header .grid-cell:nth-child(4), .configuration-table.-capacity-timeframe .indago-grid .grid-header .grid-cell:nth-child(4) {
  justify-content: center;
}
.configuration-table.-capacity-units .indago-grid .grid-header .grid-cell:nth-child(5), .configuration-table.-capacity-timeframe .indago-grid .grid-header .grid-cell:nth-child(5) {
  justify-content: flex-start;
}
.configuration-table.-capacity-units .indago-grid .row.-configuration .grid-cell:nth-child(4), .configuration-table.-capacity-timeframe .indago-grid .row.-configuration .grid-cell:nth-child(4) {
  justify-content: center;
}
.configuration-table.-capacity-units .indago-grid .row.-configuration .grid-cell:nth-child(6), .configuration-table.-capacity-timeframe .indago-grid .row.-configuration .grid-cell:nth-child(6) {
  justify-content: flex-start;
}
.configuration-table.-capacity-units .indago-grid .row.-configuration > .validation-error-list, .configuration-table.-capacity-timeframe .indago-grid .row.-configuration > .validation-error-list {
  grid-column: 1/-1;
}

.table-wrapper {
  height: calc(100% - 2 * 5.4rem);
  overflow-y: auto;
}
.table-wrapper thead {
  position: sticky;
  top: 0;
}

.card {
  margin: 0;
}
.card .content {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.card-numeric-content {
  font-size: 3.6rem;
  font-weight: 700;
}
.card-gridspan-2 {
  grid-column: auto/span 2;
}
.card-gridspan-4 {
  grid-column: auto/span 4;
}

.daily-accepted-report {
  position: absolute;
  width: calc(100% - 2 * 3.4rem);
  bottom: 0;
  top: 0;
  right: 0;
  left: 0;
  margin-left: 3.4rem;
  margin-right: 3.4rem;
  margin-top: 1.6rem;
}
.daily-accepted-report .list-toolbar {
  grid-column: 1/-1;
  font-size: 1.8rem;
  align-items: center;
}
.daily-accepted-report .list-toolbar .refreshIcon .icon {
  fill: #2383bc;
}
.daily-accepted-report .fab-errors section.content,
.daily-accepted-report .remake-orders section.content,
.daily-accepted-report .lead-time section.content {
  padding: 0 2rem;
}
.daily-accepted-report .card section.footer {
  display: none;
}
.daily-accepted-report .card .indago-grid .cell {
  display: flex;
  align-items: center;
  padding: 0.3rem 0.8rem;
  min-height: 2.9rem;
}
.daily-accepted-report .card .indago-grid .cell.-numeric {
  justify-content: flex-end;
  text-align: right;
}
.daily-accepted-report .card.-colors .indago-grid {
  grid-template-columns: 7fr 1fr 2fr;
}
.daily-accepted-report .card.-lead-time .indago-grid {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.daily-accepted-report .report-content.-daily-accepted-report {
  display: grid;
  grid-template-columns: repeat(6, auto);
  grid-template-rows: 14vh 30vh 36vh;
  grid-column-gap: 1.6rem;
  grid-row-gap: 0.8rem;
}
.daily-accepted-report .report-content.-daily-accepted-report indago-grid-table {
  height: 100%;
}
.daily-accepted-report .report-content.-daily-accepted-report .card.-sqft-accepted {
  grid-column: 1/3;
}
.daily-accepted-report .report-content.-daily-accepted-report .card.-total-orders {
  grid-column: 3/5;
}
.daily-accepted-report .report-content.-daily-accepted-report .card.-first-last-orders {
  grid-column: 5/7;
}
.daily-accepted-report .report-content.-daily-accepted-report .card.-colors {
  grid-column: 1/5;
}
.daily-accepted-report .report-content.-daily-accepted-report .card.-colors .grid-header .grid-cell:nth-child(2),
.daily-accepted-report .report-content.-daily-accepted-report .card.-colors .grid-header .grid-cell:nth-child(3) {
  justify-content: flex-end;
}
.daily-accepted-report .report-content.-daily-accepted-report .card.-lead-time {
  grid-column: 5/7;
}
.daily-accepted-report .report-content.-daily-accepted-report .card.-lead-time .grid-header .grid-cell:nth-child(2),
.daily-accepted-report .report-content.-daily-accepted-report .card.-lead-time .grid-header .grid-cell:nth-child(3),
.daily-accepted-report .report-content.-daily-accepted-report .card.-lead-time .grid-header .grid-cell:nth-child(4) {
  justify-content: flex-end;
}
.daily-accepted-report .report-content.-daily-accepted-report .card.-remake-orders {
  grid-column: 6;
}
.daily-accepted-report .report-content.-daily-accepted-report .card.-remake-orders .content > div,
.daily-accepted-report .report-content.-daily-accepted-report .card.-remake-orders indago-grid-table {
  height: 100%;
}
.daily-accepted-report .report-content.-daily-accepted-report .card.-remake-orders .indago-grid {
  grid-template-columns: 1fr;
}
.daily-accepted-report .report-content.-daily-accepted-report .card.-remake-orders .header > span {
  white-space: nowrap;
}
.daily-accepted-report .report-content.-daily-accepted-report .card.-fab-errors {
  grid-column: 1/-2;
}
.daily-accepted-report .report-content.-daily-accepted-report .card.-fab-errors .grid-header .grid-cell:nth-child(3) {
  justify-content: flex-end;
}
.daily-accepted-report .report-content.-daily-accepted-report .card.-fab-errors .indago-grid {
  grid-template-columns: 1fr 4fr 1fr 4fr;
}

.report-wrapper {
  height: 80vh;
}

.report {
  display: grid;
  overflow-y: none;
  padding: 3rem 2.4rem 2rem 3rem;
  color: #030303;
  height: 100%;
  align-content: flex-start;
}
.report .indago-grid .grid-cell {
  height: 2.3rem;
  align-items: center;
  padding: 0.3rem 0.8rem;
}
.report .list-toolbar {
  grid-column: 1/-1;
  font-size: 1.8rem;
  align-items: center;
}
.report .list-toolbar .refreshIcon .icon {
  fill: #2383bc;
}
.report .results-label {
  margin-top: 2.4rem;
  font-weight: 700;
}
.report .card {
  margin: 0;
}
.report .card > section {
  margin: 0.8rem 1.6rem;
  padding: 0;
}
.report .card section.header {
  padding-top: 1.6rem;
}
.report .card .content {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.report .card-numeric-content {
  font-size: 3.6rem;
  font-weight: 700;
}
.report .card-gridspan-2 {
  grid-column: auto/span 2;
}
.report .card-gridspan-3 {
  grid-column: auto/span 3;
}
.report .label {
  font-size: 1.6rem;
  padding-bottom: 0.4rem;
}
.report .report-container {
  overflow-y: auto;
}
.report .report-container__asset-usage {
  overflow: scroll;
  height: 100%;
}
.report indago-validation-error-list ul {
  margin: auto;
}
.report tr.row-hover {
  height: 4.4rem;
}
@media (hover) {
  .report tr.row-hover:hover {
    cursor: pointer;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.25);
    transform: scale(1);
  }
  .report tr.row-hover:hover .order-selector {
    opacity: 1;
  }
}

@media print {
  .report {
    position: relative;
    display: block;
  }
  .report .page-break-after {
    position: relative;
    page-break-after: always;
    page-break-inside: avoid;
  }
  .report .indago-table {
    border: solid black 1px !important;
    color: black;
  }
  .report th,
.report td {
    border: solid #000 !important;
    border-width: 1px 1px 1px 1px !important;
  }
  .report thead {
    display: table-header-group;
  }
  .report tbody {
    display: table-row-group;
  }
  .report tfoot {
    display: table-row-group;
  }
  .report tr {
    page-break-inside: avoid;
  }
  .report .layout-default {
    position: relative;
  }

  table.indago-table {
    position: relative;
    page-break-after: always;
    page-break-inside: avoid;
  }
}
indago-export-data.export-btn {
  display: flex;
  padding-top: 1.6rem;
  padding-right: 3.2rem;
  justify-content: flex-end;
}

.report__workcenter-volume {
  height: calc(100% - 5.5rem);
}
.report__workcenter-volume .report-container {
  overflow-x: auto;
  overflow-y: auto;
}
.report__workcenter-volume .report-container__expected .indago-table thead th:first-child {
  width: 2.4rem;
}
.report__workcenter-volume input[type=checkbox] {
  margin-right: 0.4rem;
}
.report__workcenter-volume .user-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.report__workcenter-volume .user-actions indago-export-data {
  align-self: flex-end;
}
.report__workcenter-volume .user-actions button {
  align-self: flex-end;
  height: 3.2rem;
}
.report__workcenter-volume .user-actions button > span.label {
  font-size: 1.4rem;
  padding: 0;
}
.report__workcenter-volume .user-actions .date-container {
  display: inline-flex;
  gap: 4rem;
}
.report__workcenter-volume .user-actions .date-container button {
  align-self: center;
}
.report__workcenter-volume .user-actions .date-container .inputField,
.report__workcenter-volume .user-actions .date-container select {
  width: 20rem;
  flex-direction: column;
}
.report__workcenter-volume .user-actions .date-container .inputField > span,
.report__workcenter-volume .user-actions .date-container select > span {
  position: absolute;
  transform: translateY(-2rem);
}
.report__workcenter-volume .user-actions .date-container .calendar-input {
  background: url("images/calendar.svg") 90% no-repeat;
  background-size: 1.8rem;
}
.report__workcenter-volume .user-actions .date-container span {
  align-self: flex-start;
}
.report__workcenter-volume .user-actions .date-container > div {
  display: flex;
  align-items: center;
}
.report__workcenter-volume .user-actions .date-container span.icon {
  position: absolute;
  align-self: flex-end;
  transform: translate(-1.6rem, 1rem);
}
.report__workcenter-volume__tasks {
  max-width: 125rem;
}
.report__workcenter-volume__tasks indago-export-data {
  justify-self: flex-end;
}
.report__workcenter-volume__tasks .report-container {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.report__workcenter-volume__tasks .work-center-group > span {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  display: block;
}
.report__workcenter-volume__tasks .date-container > label {
  display: flex;
}
.report__workcenter-volume__tasks .date-container > label > span {
  align-self: center !important;
  display: flex;
}

@page {
  margin: 5mm;
}
@media print {
  body,
.layout-default {
    background: white;
  }

  body {
    margin: 0;
  }

  ux-dialog-container {
    background: white;
    position: relative;
    margin: 0;
  }
  ux-dialog-container > div {
    margin: 0 !important;
    padding: 0;
  }

  ux-dialog,
ux-dialog-overlay {
    display: none;
  }

  .orderdetail-panel {
    display: none;
  }

  tr {
    page-break-inside: avoid !important;
  }

  .report {
    padding: 0;
  }
}
.workCenterProductionHeader {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  grid-gap: 0.8rem;
}
.workCenterProductionHeader h4 {
  font-weight: 600;
  font-size: 1.6rem;
  color: #2383bc;
}
.workCenterProductionHeader select {
  font-size: 1.5rem;
  padding: 0.9rem 2.5rem 1rem 1rem;
  width: 100%;
}
.workCenterProductionHeader h5 {
  font-weight: 600;
  font-size: 1.4rem;
  color: #2383bc;
}
.workCenterProductionHeader .box {
  border: 1px solid #ededed;
  box-shadow: 2px 2px 2px 1px #ededed;
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 0.8rem;
  font-size: 1.4rem;
}
.workCenterProductionHeader .box1 {
  font-size: 1.4rem;
}
.workCenterProductionHeader .inner-box {
  display: grid;
  background: #2383bc;
  border-radius: 4px;
  grid-template-rows: repeat(1, 130px);
  align-items: center;
  justify-content: center;
}
.workCenterProductionHeader h3 {
  font-weight: 400;
  font-size: 2.4rem;
  text-align: center;
  color: #fff;
}
.workCenterProductionHeader .future-past {
  border-top: 1px solid #efefef;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-content: center;
  gap: 0;
  align-self: baseline;
  margin-top: 2px;
  margin-bottom: 0.8rem;
}
.workCenterProductionHeader .future-past span:nth-child(1),
.workCenterProductionHeader .future-past span:nth-child(2),
.workCenterProductionHeader .future-past span:nth-child(3) {
  font-weight: 600;
  margin-top: 0.8rem;
  margin-right: 0.8rem;
}
.workCenterProductionHeader .completed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-self: baseline;
  margin-top: 0.8rem;
}
.workCenterProductionHeader .completed span {
  border-bottom: 1px solid #efefef;
  line-height: 2.4rem;
}
.workCenterProductionHeader .completed span:nth-child(odd) {
  font-weight: 600;
}
.workCenterProductionHeader .completed span:nth-child(even) {
  text-align: right;
  padding-right: 5.6rem;
}
.workCenterProductionHeader .completed span:nth-child(10),
.workCenterProductionHeader .completed span:nth-child(9) {
  border: none;
}
.workCenterProductionHeader .volume {
  font-size: 1.6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: baseline;
  gap: 0.8rem;
  margin-top: 1.6rem;
}
.workCenterProductionHeader .volume span:nth-child(even) {
  font-weight: 600;
  font-size: 2.4rem;
  text-align: right;
  margin-right: 5.6rem;
}
.workCenterProductionHeader .volume--single {
  grid-template-columns: 1fr;
  margin-top: 1.6rem;
}
.workCenterProductionHeader .volume--single span {
  font-weight: 600;
  font-size: 3.2rem;
  text-align: left;
}
.workCenterProductionHeader * {
  padding: 0;
  margin: 0;
}
.workCenterProductionHeader body {
  font-weight: 400;
  background: #f5f5f5;
  color: #030303;
  margin: 4rem;
}

@media print {
  work-center-task-production-report {
    display: none !important;
  }
}
.report-container__hold-history {
  overflow-x: auto;
  overflow-y: auto;
  height: 100%;
}
.report-container__hold-history #tbl-holdHistory {
  table-layout: fixed;
}
.report-container__hold-history #tbl-holdHistory th:nth-child(1),
.report-container__hold-history #tbl-holdHistory td:nth-child(1) {
  width: 9rem;
}
.report-container__hold-history #tbl-holdHistory th:nth-child(2),
.report-container__hold-history #tbl-holdHistory td:nth-child(2) {
  width: 10rem;
}
.report-container__hold-history #tbl-holdHistory th:nth-child(3),
.report-container__hold-history #tbl-holdHistory td:nth-child(3) {
  width: 8rem;
}
.report-container__hold-history #tbl-holdHistory th:nth-child(4),
.report-container__hold-history #tbl-holdHistory td:nth-child(4) {
  width: 8rem;
}
.report-container__hold-history #tbl-holdHistory th:nth-child(5),
.report-container__hold-history #tbl-holdHistory td:nth-child(5) {
  width: 18rem;
}
.report-container__hold-history #tbl-holdHistory th:nth-child(6),
.report-container__hold-history #tbl-holdHistory td:nth-child(6) {
  width: 22rem;
}
.report-container__hold-history #tbl-holdHistory th:nth-child(7),
.report-container__hold-history #tbl-holdHistory td:nth-child(7) {
  width: 13rem;
  word-break: break-word;
}
.report-container__hold-history #tbl-holdHistory th:nth-child(8),
.report-container__hold-history #tbl-holdHistory td:nth-child(8) {
  width: 12rem;
  word-break: break-word;
}
.report-container__hold-history #tbl-holdHistory th:nth-child(9),
.report-container__hold-history #tbl-holdHistory td:nth-child(9) {
  width: 18rem;
}

.dashboard-view .list-toolbar {
  justify-content: right;
  position: sticky;
  top: 0;
  background-color: #f7f7f7;
  z-index: 1;
}
.dashboard-view .list-toolbar .rightBlock {
  padding: 1.6rem 2.4rem;
}
.dashboard-view .empty-message {
  position: relative;
  width: 100%;
  height: 40rem;
  background: url("/Images/indago-symbol-large-grey.svg") no-repeat center;
}
.dashboard-view .empty-message .message-body {
  margin-top: 8%;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 0.8rem;
}
.dashboard-view .empty-message .message-body .welcome-header {
  margin-top: 16rem;
  font-size: 3.2rem;
}
.dashboard-view .empty-message .message-body .welcome-text {
  font-size: 1.6rem;
}
.dashboard-view .empty-message button {
  align-self: center;
}
.dashboard-view .empty-message button.-plus .label {
  align-self: center;
}
.dashboard-view .empty-message button.-plus .icon {
  display: flex;
  width: 1.4rem;
}
.dashboard-view .scroll-container .card-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-left: 2.4rem;
}
.dashboard-view .scroll-container .card-container card {
  width: 52rem;
  height: 29.6rem;
  cursor: pointer;
}
@media (hover) {
  .dashboard-view .scroll-container .card-container card:hover {
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.25);
  }
}
.dashboard-view .scroll-container .card-container card .header {
  align-self: self-end;
}
.dashboard-view .scroll-container .card-container .content {
  flex-direction: row;
  gap: 2.4rem;
  justify-content: space-evenly;
  word-wrap: break-word;
}
.dashboard-view .scroll-container .card-container .content .image-container {
  width: 17.6rem;
  height: 17.6rem;
  display: flex;
  justify-content: center;
}
.dashboard-view .scroll-container .card-container .content .image-container img {
  width: 75%;
  height: 75%;
  object-fit: contain;
}
.dashboard-view .scroll-container .card-container .content .content-body {
  width: 56%;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.dashboard-view .scroll-container .card-container .content .content-body span:first-of-type {
  font-size: 2.4rem;
  color: #2c2c46;
}
.dashboard-view .scroll-container .card-container .content .content-body span:last-of-type {
  line-height: 1.2;
}

.widget-configuration {
  width: 100%;
}
.widget-configuration .content {
  height: 100%;
}
.widget-configuration .header > div {
  display: flex;
  justify-content: space-between;
}
.widget-configuration .header > div svg {
  width: 1.4rem;
  fill: #2383bc;
  cursor: pointer;
}
.widget-configuration .footer {
  display: flex;
  grid-gap: 0.8rem;
  align-self: self-end;
}
.widget-configuration .widget-control {
  width: 100%;
  margin-bottom: 1.6rem;
  display: flex;
  flex-direction: column;
}
.widget-configuration input {
  width: calc(100% - 1.6rem);
}
.widget-configuration button {
  width: 9.6rem;
}
.widget-configuration select {
  width: 100%;
}
.widget-configuration button:disabled {
  cursor: default;
  opacity: 0.45;
}

widget-configuration {
  position: relative;
}
widget-configuration.side-panel > div:first-of-type {
  height: 100%;
}

widget-template .widget-body {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
widget-template .widget-body > div {
  position: absolute;
}
widget-template card.template-image {
  height: auto !important;
}

.multi-select-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding-top: 0.4rem;
}
.multi-select-container .multi-select-item {
  display: flex;
  width: 48%;
}
.multi-select-container .multi-select-item label {
  min-width: 0;
}
.multi-select-container .multi-select-item label span {
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  padding: 0.4rem;
}
.multi-select-container .multi-select-item input {
  width: fit-content;
  width: -moz-fit-content;
}
.multi-select-container .multi-select-item > div {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  min-width: 0;
}

.report-runs-released-report {
  grid-template-columns: minmax(auto, 1fr) minmax(46.4rem, 46.4rem);
  gap: 2.4rem;
}
.report-runs-released-report .totals-section {
  grid-template-columns: minmax(auto, 1fr) minmax(46.4rem, 46.4rem);
  grid-template-rows: minmax(auto, 32rem) auto;
  display: grid;
  grid-column: 1/-1;
  gap: 2.4rem;
}
.report-runs-released-report .top-colors {
  grid-column-start: 2;
}
.report-runs-released-report .top-colors .indago-table__col.-col-0 {
  width: 37rem;
}
.report-runs-released-report .totals-card {
  grid-row: 1/span 2;
}
.report-runs-released-report .basket-section .header {
  display: flex;
  flex-direction: column;
  row-gap: 1.6rem;
}
.report-runs-released-report .basket-section .header .basket-totals span:nth-child(2) {
  font-weight: 400;
}
.report-runs-released-report .basket-section .content {
  display: grid;
  grid-template-columns: minmax(20rem, 30rem) minmax(20rem, 25rem);
  grid-gap: 7.2rem;
}
.report-runs-released-report .basket-section .content > div {
  display: grid;
  grid-template-columns: auto auto;
  grid-row-gap: 1.6rem;
  align-content: baseline;
}
.report-runs-released-report .basket-section .content > div span:nth-child(1),
.report-runs-released-report .basket-section .content > div span:nth-child(2) {
  font-weight: 700;
}
.report-runs-released-report .basket-section .content span:nth-child(3) {
  grid-column: 1;
}
.report-runs-released-report .inProduction-section {
  overflow-y: hidden;
}
.report-runs-released-report .inProduction-section .content {
  min-height: 19.5rem;
  overflow-y: hidden;
}
.report-runs-released-report .inProduction-section .indago-table__col.-col-0 {
  width: 15rem;
}
.report-runs-released-report .on-hold-section {
  grid-column-start: 2;
}
.report-runs-released-report .on-hold-section .content {
  display: grid;
  grid-template-columns: minmax(25rem, 30rem);
  grid-gap: 7.2rem;
  padding-bottom: 2.4rem;
}
.report-runs-released-report .on-hold-section .content > div {
  display: grid;
  grid-template-columns: auto max-content;
  grid-row-gap: 1.6rem;
  align-content: baseline;
}
.report-runs-released-report .basket-section,
.report-runs-released-report .inProduction-section {
  height: 33.6rem;
}
.report-runs-released-report .indago-table__cell > :first-child {
  min-height: 2.9rem !important;
  max-height: 2.9rem !important;
}
.report-runs-released-report .indago-table__col.-col-0 {
  width: 25rem;
}
@media only screen and (max-width: 1440px) {
  .report-runs-released-report .report-runs-released-report {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .report-runs-released-report .report-runs-released-report .released-runs {
    grid-column-start: 1;
  }
  .report-runs-released-report .report-runs-released-report .todays-releases {
    grid-column: 1/-1;
  }
  .report-runs-released-report .report-runs-released-report .on-hold-section {
    grid-column-start: 4;
  }
  .report-runs-released-report .report-runs-released-report .inProduction-section {
    grid-column: 3/-1;
  }
  .report-runs-released-report .report-runs-released-report .basket-section {
    min-width: 37rem;
    grid-column: 1/3;
  }
  .report-runs-released-report .report-runs-released-report .basket-section .content {
    grid-template-columns: 1fr 1fr;
  }
}

.return-pieces-to-workcenter-dialog {
  min-width: 75rem;
  max-width: 75rem;
  /* Optional: when selected, keep it consistent */
}
.return-pieces-to-workcenter-dialog ux-dialog-body {
  min-height: 60rem;
  max-height: 60rem;
}
.return-pieces-to-workcenter-dialog .e-grid .e-row:hover > .e-rowcell,
.return-pieces-to-workcenter-dialog .e-grid .e-row:hover > .e-gridchkbox {
  background-color: #f2f2f2;
}
.return-pieces-to-workcenter-dialog .e-grid .e-row.e-selectionbackground > .e-rowcell,
.return-pieces-to-workcenter-dialog .e-grid .e-row.e-selectionbackground > .e-gridchkbox {
  background-color: inherit;
}
.return-pieces-to-workcenter-dialog__context > div {
  width: 100%;
  border-bottom: 2px solid #d4d4d4;
  text-align: center;
}
.return-pieces-to-workcenter-dialog__context h3 {
  align-self: center;
  font-size: 2.83rem;
  font-weight: 400;
  margin: 1.89rem 0 1rem 0;
}
.return-pieces-to-workcenter-dialog__context h3 span {
  color: #2383bc;
}
.return-pieces-to-workcenter-dialog__context p {
  font-weight: 600;
  margin: 1.89rem 0 3.2rem 0;
  font-size: 1.6rem;
}
.return-pieces-to-workcenter-dialog .e-grid {
  border: none !important;
  /* header cells (optional, if you want those borderless too) */
  /* some themes draw horizontal rules on the row itself */
  /* also remove the outline around the whole grid content area */
}
.return-pieces-to-workcenter-dialog .e-grid .e-headertext {
  font-size: 1.5rem !important;
}
.return-pieces-to-workcenter-dialog .e-grid .e-rowcell {
  border: none !important;
}
.return-pieces-to-workcenter-dialog .e-grid .e-headercell {
  border: none !important;
}
.return-pieces-to-workcenter-dialog .e-grid .e-row,
.return-pieces-to-workcenter-dialog .e-grid .e-altrow {
  border: none !important;
}
.return-pieces-to-workcenter-dialog .e-grid .e-gridcontent,
.return-pieces-to-workcenter-dialog .e-grid .e-content {
  border: none !important;
}
.return-pieces-to-workcenter-dialog .e-grid .e-row.e-altrow .e-rowcell {
  background-color: #f2f2f2 !important;
}
.return-pieces-to-workcenter-dialog .e-grid .e-rowcell:focus, .return-pieces-to-workcenter-dialog .e-grid .e-rowcell:focus-within {
  outline: none !important;
  box-shadow: none !important;
}
.return-pieces-to-workcenter-dialog .e-grid .e-rowcell.e-focused {
  outline: none !important;
  box-shadow: none !important;
}
.return-pieces-to-workcenter-dialog .e-grid .e-gridcontent .e-rowcell.e-focused {
  outline: none !important;
  box-shadow: none !important;
}
.return-pieces-to-workcenter-dialog .e-grid .e-headercell:focus {
  outline: none !important;
  box-shadow: none !important;
}
.return-pieces-to-workcenter-dialog .e-grid .e-row.e-focused .e-rowcell {
  background: transparent !important;
}
.return-pieces-to-workcenter-dialog .e-grid .e-rowcell {
  font-size: 1.5rem !important;
}
.return-pieces-to-workcenter-dialog .e-grid .e-rowcell.e-focused, .return-pieces-to-workcenter-dialog .e-grid .e-rowcell.e-active {
  background: transparent !important;
}
.return-pieces-to-workcenter-dialog .e-grid .e-gridcontent,
.return-pieces-to-workcenter-dialog .e-grid .e-content {
  overflow-y: auto !important;
  overflow-x: auto !important;
}
.return-pieces-to-workcenter-dialog .e-grid .e-checkbox-wrapper .e-check::before,
.return-pieces-to-workcenter-dialog .e-grid .e-css.e-checkbox-wrapper .e-check::before {
  color: #fafefd;
}
.return-pieces-to-workcenter-dialog .e-grid .e-checkbox-wrapper .e-frame,
.return-pieces-to-workcenter-dialog .e-grid .e-css.e-checkbox-wrapper .e-frame {
  width: 1.3rem;
  height: 1.3rem;
  line-height: 0.6rem;
}
.return-pieces-to-workcenter-dialog .e-grid .e-checkbox-wrapper .e-frame .e-check::before,
.return-pieces-to-workcenter-dialog .e-grid .e-css.e-checkbox-wrapper .e-frame .e-check::before {
  color: #fafefd;
  font-size: 1rem;
}
.return-pieces-to-workcenter-dialog .e-grid .e-checkbox-wrapper .e-frame.e-check,
.return-pieces-to-workcenter-dialog .e-grid .e-css.e-checkbox-wrapper .e-frame.e-check {
  background-color: #2383bc;
  font-size: 1rem;
}
.return-pieces-to-workcenter-dialog .e-grid .e-checkbox-wrapper .e-frame.e-stop,
.return-pieces-to-workcenter-dialog .e-grid .e-css.e-checkbox-wrapper .e-frame.e-stop {
  background-color: #2383bc;
  border-color: #2383bc;
  color: #fafefd;
  font-size: 0.8rem;
}
.return-pieces-to-workcenter-dialog .e-grid .e-checkbox-wrapper:hover .e-frame,
.return-pieces-to-workcenter-dialog .e-grid .e-css.e-checkbox-wrapper:hover .e-frame {
  border-color: #666;
}
.return-pieces-to-workcenter-dialog .e-grid .e-checkbox-wrapper:hover .e-frame.e-check,
.return-pieces-to-workcenter-dialog .e-grid .e-css.e-checkbox-wrapper:hover .e-frame.e-check {
  background: #2383bc;
  border-color: #2383bc;
}
.return-pieces-to-workcenter-dialog .e-grid .e-checkbox-wrapper:hover .e-frame.e-stop,
.return-pieces-to-workcenter-dialog .e-grid .e-css.e-checkbox-wrapper:hover .e-frame.e-stop {
  color: #fafefd;
}
.return-pieces-to-workcenter-dialog .e-grid .e-checkbox-wrapper:hover .e-check .e-frame,
.return-pieces-to-workcenter-dialog .e-grid .e-css.e-checkbox-wrapper:hover .e-check .e-frame {
  background: #2383bc;
  border-color: #2383bc;
}

.indago-timepicker__input {
  display: flex;
  max-width: 25rem;
  border-bottom: none;
}
.indago-timepicker__input .input-date {
  max-width: 12rem;
}
.indago-timepicker__input select,
.indago-timepicker__input .input-date,
.indago-timepicker__input .time-tab input {
  box-shadow: none;
}
.indago-timepicker input.-date {
  background: url(images/calendar.svg) 90% no-repeat;
  background-size: 1.8rem;
}

indago-date-time-picker indago-popover:after {
  display: none;
}

.datepicker-container {
  min-width: 25rem;
  max-width: 25rem;
}
.datepicker-container section.calendar {
  height: auto;
}
.datepicker-container section.timer {
  height: 19.52rem;
}
.datepicker-container section.timer .clock {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #2c2c46;
  align-items: center;
  display: flex;
  justify-content: center;
  color: #b9b8d7;
}
.datepicker-container section.timer .clock .icon {
  fill: #b9b8d7;
  width: 2rem;
  height: 2rem;
  vertical-align: middle;
  margin: 1rem;
  padding: 1rem;
}
.datepicker-container section.timer .clock .icon.-up {
  transform: rotate(-90deg);
}
.datepicker-container section.timer .clock .icon.-down {
  transform: rotate(90deg);
}
.datepicker-container section.timer .clock .icon:hover {
  fill: #389eda;
}
.datepicker-container section.timer .clock .values > div:last-child span:hover {
  color: #389eda;
  background: none;
}
.datepicker-container section.timer .clock .meridiem {
  width: 4rem;
  display: block;
}
.datepicker-container header {
  padding: 0.8rem;
}
.datepicker-container header.-compact svg {
  margin-bottom: 0.8rem;
}
.datepicker-container header.-compact .-oneTab {
  width: 100%;
}
.datepicker-container header.-compact .-time-only input {
  width: 6rem;
}
.datepicker-container header > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.datepicker-container header input,
.datepicker-container header input[type=text]:focus {
  background-color: #b9b8d7;
}
.datepicker-container header div:nth-child(1) input {
  max-width: 10rem;
}
.datepicker-container button.-smallSize {
  line-height: 2.5rem;
  height: auto;
  width: 8.5rem;
  box-shadow: none;
}
.datepicker-container footer.indago-datetime-picker {
  background-color: #222236;
  display: flex;
  justify-content: space-around;
  padding: 0.8rem;
}

.time-tab {
  display: flex;
}
.time-tab input {
  max-width: 5rem;
  padding: 0.8rem 0.4rem;
}
.time-tab select.time-selector {
  max-width: 5.5rem;
  min-width: 5.5rem;
}
.time-tab.-compact input {
  background-color: #b9b8d7;
}
.time-tab.-compact select.time-selector {
  background-color: #b9b8d7;
}

.indago-calendar {
  display: flex;
  flex-direction: column;
  background-color: #2c2c46;
  padding: 0.2rem 1rem 0.8rem 1rem;
}
.indago-calendar header.calendar-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  background-color: inherit;
  padding: 0;
}
.indago-calendar header.calendar-header button .calendar-header__icon {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
}
.indago-calendar header.calendar-header button .calendar-header__icon.-prev {
  border-width: 0.4rem 0.9rem 0.4rem 0;
  border-color: transparent #fafefd transparent transparent;
}
.indago-calendar header.calendar-header button .calendar-header__icon.-next {
  border-width: 0.4rem 0 0.4rem 0.9rem;
  border-color: transparent transparent transparent #fafefd;
}
.indago-calendar header.calendar-header span.month {
  justify-self: center;
  align-self: center;
  margin: 0 2.3em;
  line-height: 1.8em;
  color: #fafefd;
  font-weight: 600;
}
.indago-calendar .weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  justify-items: center;
  font-weight: 600;
  cursor: default;
  height: 16rem;
}
.indago-calendar .weekdays .label {
  font-size: 1.3rem;
  color: white;
  line-height: 2.5rem;
  padding: 0;
}
.indago-calendar .weekdays span.day {
  color: #b9b8d7;
  line-height: 2.2rem;
  width: 2.2rem;
  height: 2.2rem;
  display: flex;
  justify-content: space-around;
  cursor: pointer;
}
.indago-calendar .weekdays span.day:not(.-disabled):hover, .indago-calendar .weekdays span.day.-selected:not(.-disabled):hover {
  border-radius: 50%;
  background: #7575a2;
}
.indago-calendar .weekdays span.day.-selected {
  color: #fafefd;
  font-weight: 600;
}
.indago-calendar .weekdays span.day.-selected, .indago-calendar .weekdays span.day.-today {
  border-radius: 50%;
  background: #2383bc;
}
.indago-calendar .weekdays span.day.-disabled {
  color: #4d4d57;
  cursor: default;
}

.indago-table--base table.indago-table {
  width: 100%;
  border-collapse: collapse;
  overflow-y: auto;
}
.indago-table--base table.indago-table *,
.indago-table--base table.indago-table *::before,
.indago-table--base table.indago-table *::after {
  box-sizing: border-box;
}
.indago-table--base table.indago-table thead.indago-table__head tr {
  min-height: 3.5rem;
  align-items: center;
  padding: 0.4rem 0.8rem;
  color: #fafefd;
}
.indago-table--base table.indago-table thead th {
  padding: 1.1rem 0.8rem;
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #2c2c46;
}
.indago-table--base table.indago-table td {
  padding: 0;
}
.indago-table--base tbody:nth-of-type(odd) tr:nth-child(odd) {
  background-color: #fafefd;
}
.indago-table--base .indago-table__body:nth-child(odd) tr:nth-child(odd) {
  background-color: #f2f2f2;
}
.indago-table--base .indago-table__body:nth-child(odd) tr:nth-child(even) {
  background-color: transparent;
}
.indago-table--base .indago-table__body:nth-child(even) tr:nth-child(even) {
  background-color: #f2f2f2;
}
.indago-table--base .indago-table__body:nth-child(even) tr:nth-child(odd) {
  background-color: transparent;
}
.indago-table--base .indago-table__cell > *:first-child {
  display: flex;
  align-items: center;
  min-height: 3rem;
  padding: 0.4rem 0.8rem;
  box-sizing: border-box;
  width: 100%;
}
.indago-table--base .indago-table__cell--actions {
  justify-content: center;
  gap: 1.6rem;
}
.indago-table--base .indago-table__cell .validation-container {
  width: 100%;
}
.indago-table--base .indago-table__cell--loading {
  position: absolute;
  left: 45%;
  top: 30%;
}
.indago-table--base .indago-table__cell {
  min-height: 3rem;
  align-items: center;
}
.indago-table--base .indago-table__cell--empty {
  background-color: #fafefd;
}
.indago-table--base .indago-table .indago-table__body--skeleton .indago-table__skeleton-bar {
  display: inline-block;
  width: 40%;
  height: 1em;
  background-color: #e4e4e4;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  vertical-align: middle;
}
.indago-table--base .indago-table .indago-table__body--skeleton .indago-table__skeleton-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, transparent 35%, rgba(103, 112, 116, 0.2) 50% 50%, transparent 65%, transparent 100%);
  transform: translateX(-100%);
  animation: wave 1.6s linear infinite;
}
@keyframes wave {
  to {
    transform: translateX(100%);
  }
}
.indago-table--base input {
  max-width: 25rem;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  height: 3.2rem;
}

:root {
  --pill-border: #bebebe;
  --pill-success: #31a853;
  --pill-danger: #b62d2c;
}

.surface-dark {
  --pill-border: #81809d;
  --pill-success: #31a853;
  --pill-danger: #ff702f;
  --pill-value-text: #b9b8d7;
}

.indago-pill {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  height: 3rem;
  padding: 0 1.6rem;
  border: 1px solid var(--pill-border);
  border-radius: 0.5rem;
  background: transparent;
  cursor: default;
  white-space: nowrap;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--pill-text, var(--content-text));
}
.indago-pill__icon {
  flex: none;
  width: 1.6rem;
  height: 1.6rem;
}
.indago-pill__label {
  overflow: hidden;
  text-overflow: ellipsis;
}
.indago-pill__value {
  font-weight: 600;
  color: var(--pill-value-text, var(--content-text-strong));
}
.surface-dark .indago-pill__value {
  font-weight: 700;
}
.indago-pill__secondary {
  font-weight: 400;
  color: var(--pill-text, var(--content-text));
}
.indago-pill__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
  white-space: nowrap;
}
.indago-pill--positive .indago-pill__icon, .indago-pill--positive .indago-pill__value {
  color: var(--pill-success);
}
.indago-pill--negative .indago-pill__icon, .indago-pill--negative .indago-pill__value {
  color: var(--pill-danger);
}
.indago-pill--compact {
  height: auto;
  padding: 0.2rem 0.6rem;
  border-radius: 0.3rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.6rem;
}
.indago-pill--solid {
  border-color: transparent;
  background: var(--surface-dark);
  color: #fafefd;
}
.indago-pill--attention {
  height: auto;
  padding: 0.4rem 1.2rem;
  border-radius: 0.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-color: var(--content-attention);
  background: var(--content-attention);
  color: #2c2c46;
}

.manufacturing-order-row {
  display: block;
}
.manufacturing-order-row__summary {
  display: flex;
  align-items: stretch;
  height: 4.6rem;
  background: var(--surface-card);
  border: 1px solid #e0e0e0;
}
.manufacturing-order-row__summary.-on-hold {
  background: var(--surface-on-hold);
  border: 1px solid #f6b4c8;
}
.manufacturing-order-row__summary.-is-directional {
  background: var(--surface-directional);
  border: 1px solid #ffbb4d;
}
@media (hover) {
  .manufacturing-order-row__summary:hover {
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.25);
  }
}
.manufacturing-order-row__toggle {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  padding: 0;
  background: #222236;
  border: 0;
  cursor: pointer;
}
.manufacturing-order-row__toggle.-static {
  cursor: default;
}
.manufacturing-order-row__toggle > .icon {
  width: 1rem;
  height: 1rem;
  fill: #fafefd;
}
.manufacturing-order-row__content {
  flex: 1 1 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 1rem;
  min-width: 0;
  padding: 0.4rem 1.2rem 0.4rem 0;
}
.manufacturing-order-row__number {
  flex: 0 0 auto;
}
.manufacturing-order-row__cell {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  min-width: 0;
}
.manufacturing-order-row__cell > .icon {
  flex: 0 0 auto;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.4rem;
  vertical-align: sub;
}
.manufacturing-order-row__cell.-icons {
  flex: 0 0 auto;
  gap: 0;
}
.manufacturing-order-row__cell.-color, .manufacturing-order-row__cell.-edge-type {
  flex: 1 1 10rem;
}
.manufacturing-order-row__cell.-flag {
  flex: 0 0 2.3rem;
  justify-content: center;
}
.manufacturing-order-row__cell.-flag .order-flag > .icon {
  margin-right: 0;
}
.manufacturing-order-row__cell.-measure {
  flex: 0 0 8.9rem;
}
.manufacturing-order-row__cell.-on-hold {
  flex: 0 0 2.3rem;
  justify-content: center;
}
.manufacturing-order-row__cell .-measure-font {
  font-size: 1rem;
}
.manufacturing-order-row__cell-text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
  line-height: 1.3;
}
.manufacturing-order-row__actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  margin-left: auto;
}
.manufacturing-order-row__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem;
  border: 0;
  background: none;
  cursor: pointer;
}
.manufacturing-order-row__action > .icon {
  width: 1.6rem;
  height: 1.6rem;
  fill: #2c2c46;
}

.summary-snapshot {
  display: block;
}
.summary-snapshot__totals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 2.4rem;
  margin-bottom: 1.4rem;
  padding: 1.8rem 2rem;
  border-radius: 0.3rem;
  background: var(--surface-dark);
}
.summary-snapshot__total {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.summary-snapshot__total-value {
  font-variant-numeric: tabular-nums;
}
.summary-snapshot__table {
  width: 100%;
}
.summary-snapshot__table thead th {
  color: var(--content-text);
}
.summary-snapshot .snapShotDetails.-clickable {
  cursor: pointer;
}
.summary-snapshot .snapShotDetails.-active td {
  background: var(--surface-filtered);
}

.cad-import-piece-card {
  display: block;
  border: 1px solid rgba(128, 128, 128, 0.45);
  border-radius: 1rem;
  padding: 1rem 1.2rem;
}
.cad-import-piece-card__head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.6rem;
}
.cad-import-piece-card__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-weight: 700;
  flex: none;
}
.cad-import-piece-card__type {
  font-weight: 600;
}
.cad-import-piece-card__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85em;
  padding: 0.2rem 0;
  border-top: 1px dotted rgba(128, 128, 128, 0.25);
}
.cad-import-piece-card__label {
  opacity: 0.65;
}
.cad-import-piece-card__value {
  font-weight: 600;
}

config-card {
  display: flex;
}

.config-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: var(--surface-card);
  border: 1px solid var(--border-card);
  box-shadow: 2px 2px 2px 1px var(--border-card);
  --border-divider: var(--border-card);
}
.config-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  background: var(--surface-dark);
  color: var(--content-text-strong);
}
.config-card__title {
  font-size: var(--font-size-title);
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.01em;
}
.config-card__body {
  flex: 1;
  padding: 0;
}
.config-card__footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  padding: 0.85rem 1.4rem;
  border-top: 1px solid var(--border-divider);
  background: var(--surface-sunken);
}
.config-card__audit {
  color: var(--content-text);
  font-size: var(--font-size-base);
  margin-right: auto;
}
.config-card__actions {
  min-width: 6rem;
  min-height: 2rem;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.indago-chip-select {
  position: relative;
  display: block;
}
.indago-chip-select__list {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 0.9rem 0.6rem;
  padding-top: 0.5rem;
  padding-right: 0.5rem;
  max-height: 18rem;
  overflow-x: hidden;
  overflow-y: auto;
}
.indago-chip-select__pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 2.4rem;
  padding: 0.2rem 1.6rem;
  min-width: 12rem;
  max-width: 100%;
  flex: 0 0 auto;
  text-align: center;
  border: 1px solid var(--surface-dark);
  border-radius: 0.5rem;
  background: var(--surface-dark);
  color: #fff;
  font-size: var(--font-size-base);
  line-height: 1.5;
  overflow: visible;
}
.indago-chip-select__pill--removable {
  cursor: pointer;
}
.indago-chip-select__pill--inactive {
  background: var(--surface-inactive);
  border-color: var(--surface-inactive);
}
.indago-chip-select__txt {
  overflow-wrap: anywhere;
}
.indago-chip-select__remove {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  background: var(--content-accent);
  border-radius: 50%;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
  color: #fff;
  top: -0.3rem;
  right: -0.4rem;
  pointer-events: none;
}
.indago-chip-select__remove svg {
  width: 0.792rem;
  height: 1.8rem;
  fill: currentColor;
}
.indago-chip-select__footer {
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px dashed transparent;
}
.indago-chip-select__footer--editing {
  border-top-color: var(--border-divider);
}
.indago-chip-select__add--hidden {
  visibility: hidden;
}
.indago-chip-select__add {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
}
.indago-chip-select__add-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  padding: 0;
  border: 1px solid var(--content-accent);
  border-radius: 50%;
  background: transparent;
  color: var(--content-accent);
  cursor: pointer;
}
.indago-chip-select__add-btn svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}
.indago-chip-select__add-btn.-active {
  background: var(--content-accent);
  color: #fff;
}
.indago-chip-select__panel {
  box-sizing: border-box;
  width: min(45rem, calc(100vw - 6rem));
  --border-divider: var(--border-card);
  background: var(--surface-sunken);
  border: 0.2rem solid var(--content-accent);
  border-radius: 1rem;
  box-shadow: 0 1rem 2.6rem rgba(0, 0, 0, 0.18);
  padding: 0 1.6rem 1.6rem;
}
.indago-chip-select__panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  border-bottom: 1px solid var(--content-accent);
  padding: 1.2rem 0 0.8rem;
  margin-bottom: 1.2rem;
}
.indago-chip-select__panel-title {
  font-size: var(--font-size-title);
  font-weight: 700;
  color: var(--surface-dark);
}
.indago-chip-select__panel-close {
  border: none;
  background: none;
  cursor: pointer;
  color: var(--content-accent);
  display: inline-flex;
  align-items: center;
  padding: 0.2rem;
}
.indago-chip-select__panel-close svg {
  width: 1.3rem;
  height: 1.3rem;
  fill: currentColor;
}
.indago-chip-select__panel-list {
  display: flex;
  flex-direction: column;
  max-height: 15rem;
  overflow-y: auto;
}
.indago-chip-select__add-item {
  display: flex;
  align-items: center;
  flex: none;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-divider);
  border-radius: 0;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  text-align: left;
  width: 100%;
}
.indago-chip-select__add-item:last-child {
  border-bottom: none;
}
.indago-chip-select__add-item:hover {
  background: #ededed;
}
.indago-chip-select__add-item .indago-chip-select__txt {
  padding: 0.9rem 0.6rem;
  font-size: var(--font-size-base);
  color: var(--content-text);
}
.indago-chip-select__add-item .indago-pill {
  --pill-border: var(--content-text-subtle);
  --pill-text: var(--content-text-subtle);
  flex: none;
  margin-left: auto;
  margin-right: 0.6rem;
}
.indago-chip-select__panel-empty {
  color: var(--content-text-subtle);
  font-size: var(--font-size-base);
  font-style: italic;
  padding: 0.4rem 0;
}

.popover-portal__content.indago-chip-select__portal {
  border: none;
  box-shadow: none;
  background: transparent;
}

config-list-card {
  display: flex;
}

.config-list-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: var(--surface-card);
  border: 1px solid var(--border-card);
  box-shadow: 2px 2px 2px 1px var(--border-card);
  --border-divider: var(--border-card);
}
.config-list-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  background: var(--surface-dark);
  color: var(--content-text-strong);
}
.config-list-card__title {
  font-size: var(--font-size-title);
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.01em;
  color: var(--content-text-strong);
}
.config-list-card__toolbar {
  display: flex;
  justify-content: flex-end;
  padding: 0.85rem 1.4rem;
}
.config-list-card__table {
  flex: 1 1 43.6rem;
  overflow-y: auto;
  min-height: 0;
}
.config-list-card__table .indago-table {
  width: 100%;
}
.config-list-card__table th {
  white-space: nowrap;
  outline: 1px solid var(--surface-dark);
}
.config-list-card__table .indago-table__col.-col-1, .config-list-card__table .indago-table__col.-col-2 {
  width: 1%;
}
.config-list-card__table .indago-table__cell {
  padding: 0.35rem 0.8rem;
}
.config-list-card__table.indago-table--base .indago-table__body:nth-child(odd) tr,
.config-list-card__table.indago-table--base .indago-table__body:nth-child(even) tr {
  background-color: transparent;
}
.config-list-card__table.indago-table--base .indago-table__body:nth-child(odd) tr:nth-child(even),
.config-list-card__table.indago-table--base .indago-table__body:nth-child(even) tr:nth-child(even) {
  background-color: #f2f2f2;
}
.config-list-card__table.indago-table--base .indago-table__cell--empty {
  background-color: transparent;
}
.config-list-card__table th .indago-table__cell {
  padding: 0;
}
.config-list-card__table table.indago-table thead th:first-child {
  padding-left: 1.4rem;
}
.config-list-card__table .indago-table__body td:first-child > *:first-child {
  padding-left: 1.4rem;
}
.config-list-card__table .indago-table__body td:first-child {
  overflow-wrap: anywhere;
}
.config-list-card__table .system-tagged-name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}
.config-list-card__table .system-tagged-name > .indago-pill {
  flex: none;
}
.config-list-card__table .indago-table__body td:not(:first-child):not(:last-child) > *:first-child {
  justify-content: center;
}
.config-list-card__table input[type=checkbox] {
  width: 1.5rem;
  height: 1.5rem;
}
.config-list-card__table .indago-table__cell--actions {
  display: flex;
  justify-content: flex-end;
  min-width: 6.2rem;
  padding-right: 1.4rem;
}
.config-list-card__footer {
  min-height: 2rem;
  padding: 0.85rem 1.4rem;
  border-top: 1px solid var(--border-divider);
  background: var(--surface-sunken);
}

ux-dialog.config-list-entry-dialog {
  display: block;
  width: min(70rem, calc(100vw - 4rem));
  padding: 0;
  border: 0;
  background: var(--surface-card);
}

.config-list-entry-dialog .validation-container.has-error .fieldtitle, .config-list-entry-dialog .validation-container.has-error indago-select-options.widefield > label {
  color: var(--content-danger);
}
.config-list-entry-dialog .validation-container.has-error .validation-control {
  border-color: var(--content-danger);
}
.config-list-entry-dialog .validation-message {
  color: var(--content-danger);
  background-color: var(--surface-danger-subtle);
  border-color: var(--content-danger);
}
.config-list-entry-dialog__body {
  background: var(--surface-sunken);
  padding: 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 25rem;
  gap: 2rem;
  align-items: start;
}
.config-list-entry-dialog__body.-no-audit {
  grid-template-columns: minmax(0, 1fr);
}
.config-list-entry-dialog__fields {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  min-width: 0;
}
.config-list-entry-dialog__fields .fieldinput {
  width: 100%;
  max-width: 27rem;
}
.config-list-entry-dialog__fields .fieldinput:disabled {
  color: var(--content-text-subtle);
  background: #ededed;
  box-shadow: none;
}
.config-list-entry-dialog__fields .form-field {
  gap: 0.45rem;
}

.config-list-entry-dialog .checkrow {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.config-list-entry-dialog .checkrow input {
  width: 1.5rem;
  height: 1.5rem;
  margin: 0;
  accent-color: var(--content-accent);
}
.config-list-entry-dialog .checkrow input:disabled {
  color: var(--content-text-subtle);
  accent-color: var(--content-text-subtle);
}
.config-list-entry-dialog .checkrow label {
  font-size: var(--font-size-label);
  font-weight: 700;
}

.config-list-entry-dialog .fieldtitle, .config-list-entry-dialog indago-select-options.widefield > label {
  font-size: var(--font-size-label);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.config-list-entry-dialog .locknote {
  display: block;
  max-width: 27rem;
  color: var(--content-text);
  font-size: var(--font-size-info);
}

.config-list-entry-dialog .validation-container .locknote {
  margin-top: 0.6rem;
}

audit-panel {
  display: block;
}

.audit-panel {
  background: var(--surface-dark);
  color: var(--content-text-strong);
  font-size: 1.5rem;
  font-weight: 700;
  padding: 1.3rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  min-height: 14.8rem;
}
.audit-panel__field {
  display: flex;
  flex-direction: column;
}
.audit-panel__label {
  text-decoration: underline;
  margin-bottom: 0.8rem;
}
.audit-panel__date {
  color: var(--content-text-subtle);
}

.mark-ihr {
  min-width: 60rem;
  max-width: 60rem;
}
.mark-ihr .validation-container.has-error .fieldtitle, .mark-ihr .validation-container.has-error indago-select-options.widefield > label {
  color: var(--content-danger);
}
.mark-ihr .validation-container.has-error .validation-control {
  border-color: var(--content-danger);
}
.mark-ihr .validation-message {
  color: var(--content-danger);
  background-color: var(--surface-danger-subtle);
  border-color: var(--content-danger);
}
.mark-ihr textarea.has-error {
  box-shadow: none;
}
.mark-ihr__body {
  padding: 1.6rem 3rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.mark-ihr__heading {
  text-align: center;
}
.mark-ihr__row {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
.mark-ihr__row--sources > .mark-ihr__group {
  flex: 1;
}
.mark-ihr__row--subCategory {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 0 1.6rem;
  align-items: start;
}
.mark-ihr__field {
  flex: 1;
}
.mark-ihr__field--pieceMark {
  flex: 0 0 16rem;
  margin-top: 1.6rem;
  margin-left: 1.6rem;
}
.mark-ihr select.fieldinput {
  width: 100%;
  box-sizing: border-box;
  text-overflow: ellipsis;
}
.mark-ihr__fixedValue {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  min-height: 3.2rem;
  cursor: default;
}
.mark-ihr__group {
  padding: 1.6rem;
  display: flex;
  gap: 2rem;
}
.mark-ihr__group--reason {
  flex-direction: column;
  background: var(--surface-row-alt);
}
.mark-ihr__groupHeading {
  margin: 0;
  font-size: var(--font-size-value);
  font-weight: 400;
  border-bottom: 1px solid var(--border-divider);
  padding-bottom: 0.6rem;
}
.mark-ihr__reasonGrid {
  display: flex;
  gap: 2rem;
  align-items: stretch;
}
.mark-ihr__reasonGrid > * {
  flex: 1 1 0;
  min-width: 0;
}
.mark-ihr__reasonFields {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.mark-ihr__textarea {
  flex: 1;
  resize: none;
}
.mark-ihr user-search .input,
.mark-ihr user-search .userList {
  width: 100%;
  box-sizing: border-box;
}
.mark-ihr user-search .input {
  height: 3.8rem;
}
.mark-ihr user-search .userList {
  top: auto;
  bottom: 100%;
  margin-bottom: 0.4rem;
  max-height: min(27rem, 40vh);
  overflow-y: auto;
}
.mark-ihr .validation-container.has-error user-search .input {
  border-color: var(--content-danger);
}
@media (max-width: 850px) {
  .mark-ihr {
    min-width: 0;
    max-width: 100%;
  }
  .mark-ihr__row, .mark-ihr__reasonGrid, .mark-ihr__group {
    flex-direction: column;
  }
  .mark-ihr__row--subCategory {
    grid-template-columns: 1fr;
    padding: 0;
  }
  .mark-ihr__field--pieceMark {
    flex: 1;
    margin: 0;
  }
}

.cad-import-error__body {
  max-height: 70vh;
  overflow: auto;
}
.cad-import-error__heading {
  margin: 0 0 0.8rem 0;
}
.cad-import-error__list {
  margin: 0;
  padding-left: 1.4rem;
}
.cad-import-error__item {
  margin-bottom: 0.3rem;
  color: var(--content-danger);
}

.cad-import-error__section + .cad-import-warning {
  margin-top: 1.2rem;
}
.cad-import-warning__heading {
  margin: 0 0 0.8rem 0;
}
.cad-import-warning__list {
  margin: 0;
  padding-left: 1.4rem;
}
.cad-import-warning__item {
  margin-bottom: 0.3rem;
  color: var(--content-warning);
}

.area-comparison-bar {
  display: grid;
  grid-template-columns: 1fr auto auto;
  column-gap: 0.8rem;
  align-items: center;
  padding: 0.8rem 4.8rem 0.8rem 1.6rem;
  background-color: #2c2c46;
  border-radius: 0.5rem;
  color: #b9b8d7;
  line-height: 1.5;
  font-variant-numeric: tabular-nums;
}
.area-comparison-bar__info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  margin-right: 8rem;
}
.area-comparison-bar__name {
  color: #b9b8d7;
  font-weight: 600;
  font-size: 1.6rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.area-comparison-bar__inforow {
  display: flex;
  align-items: flex-start;
  row-gap: 1.6rem;
  column-gap: clamp(1.6rem, calc(1.6rem + (100vw - 192rem) * 0.12), 10rem);
  min-width: 0;
  padding-left: 1.6rem;
}
.area-comparison-bar__kv {
  min-width: 0;
  max-width: 66.66%;
  display: grid;
  grid-template-columns: max-content minmax(0, auto);
  column-gap: 1rem;
  row-gap: 0;
}
.area-comparison-bar__k {
  font-weight: 600;
  color: #b9b8d7;
  white-space: nowrap;
}
.area-comparison-bar__v {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.area-comparison-bar__cutouts {
  min-width: 0;
  flex: 1;
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  column-gap: 1rem;
  align-self: start;
}
.area-comparison-bar__cv {
  min-width: 0;
  overflow-wrap: anywhere;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.area-comparison-bar .indago-comparison-pill .indago-pill__value {
  display: inline-block;
  text-align: right;
  min-width: 13rem;
  margin-left: 0.8rem;
}
.area-comparison-bar > indago-pill .indago-pill__value {
  display: inline-block;
  text-align: right;
  min-width: 6rem;
  margin-left: 0.8rem;
}

.design-viewer {
  display: flex;
  background-color: #8e8e8e;
  position: relative;
  z-index: 0;
  aspect-ratio: 3;
}
.design-viewer .image-selector-menu {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 100;
  background: #f2f2f2;
  height: 100%;
  width: 100%;
}
.design-viewer .image-selector-menu > div {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.design-viewer .image-selector-menu .card.-document {
  flex: 0 1 calc(20% - 1.6rem);
  background: #f2f2f2;
  box-shadow: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
}
.design-viewer .image-selector-menu .card.-document.-selected {
  border: 5px solid #2383bc;
}
.design-viewer .image-selector-menu .card.-document .content {
  justify-content: center;
}
.design-viewer .image-selector-menu .card.-document .content img {
  width: 100%;
}
.design-viewer .image-selector-menu .card.-document .footer {
  word-break: break-all;
  display: flex;
}
.design-viewer .image-selector-menu .card.-document .footer .delete-btn {
  margin-left: auto;
  margin-top: auto;
}
.design-viewer .image-selector-header {
  padding: 1.6rem;
  background: #2c2c46;
}
.design-viewer .image-selector-header span {
  font-size: 1.8rem;
  font-weight: bold;
  color: #b9b8d7;
}
.design-viewer .image-selector-header button {
  float: right;
}
.design-viewer .image-selector-header svg {
  fill: #2383bc;
}
.design-viewer .image-selector-card-container {
  display: flex;
  overflow: auto;
  height: 100%;
  width: 100%;
  position: relative;
  aspect-ratio: 1;
  gap: 1.6rem;
  padding: 1.6rem;
  box-sizing: border-box;
  flex-wrap: wrap;
  background-color: white;
}
.design-viewer .viewer-toolbar + div {
  padding: 0.4rem;
}
.design-viewer .viewer-toolbar {
  display: flex;
  flex-grow: 1;
  overflow: hidden;
}
.design-viewer .viewer-toolbar .tool-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  flex: 0 0 auto;
  width: auto;
  column-gap: 0.4rem;
}
.design-viewer .viewer-toolbar .tool-container.-horizontal {
  position: absolute;
  flex-direction: row;
  z-index: 10;
}
.design-viewer .viewer-toolbar .tool-container.-horizontal div:nth-child(3)::before,
.design-viewer .viewer-toolbar .tool-container.-horizontal div:nth-child(5)::before,
.design-viewer .viewer-toolbar .tool-container.-horizontal div:nth-child(7)::before,
.design-viewer .viewer-toolbar .tool-container.-horizontal div:nth-child(8)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: white;
}
.design-viewer .viewer-toolbar > div {
  position: relative;
  background: #2c2c46;
  padding: 0.4rem;
}
.design-viewer .viewer-toolbar > div div {
  position: relative;
  cursor: pointer;
}
.design-viewer .viewer-toolbar svg.icon {
  fill: white;
}
.design-viewer .viewer-toolbar .icon {
  margin: 0.8rem;
}
.design-viewer .viewer-toolbar .image-selector {
  stroke: #fafefd;
}
.design-viewer .viewer-toolbar .image-selector svg > path {
  stroke: #fafefd;
}
.design-viewer .viewer-toolbar > div:first-child div:nth-child(3)::before,
.design-viewer .viewer-toolbar > div:first-child div:nth-child(5)::before,
.design-viewer .viewer-toolbar > div:first-child div:nth-child(7)::before,
.design-viewer .viewer-toolbar > div:first-child div:nth-child(8)::before {
  content: "";
  position: absolute;
  top: -0.1rem;
  left: 0;
  right: 0;
  height: 1px;
  background-color: white;
}
.design-viewer .viewer-toolbar > div:last-of-type {
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0 0 0 15px;
}
.design-viewer .viewer-panel {
  aspect-ratio: 3/1;
  background: #bebebe;
}
.design-viewer .viewer-panel .empty-view {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  fill: #2383bc;
}
.design-viewer .viewer-panel .empty-view > span {
  position: absolute;
  z-index: 20;
  padding: 3rem;
  font-size: 2.4rem;
  color: #b9b8d7;
  background: #2c2c46;
  border-radius: 20px;
  margin: 0 2rem;
}
.design-viewer .viewer-panel .empty-view > div {
  height: 90%;
  width: 90%;
  z-index: 5;
}
.design-viewer .viewer-panel .empty-view > div .icon {
  opacity: 0.6;
  height: 100%;
  width: 100%;
  fill: #2c2c46;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  .design-viewer .viewer-panel {
    width: 82vw;
  }
}

design-pieces {
  flex-grow: 1;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  row-gap: 0;
  box-sizing: border-box;
  padding: 0 1.6rem;
}
design-pieces .validation-container {
  flex-direction: row !important;
}
design-pieces .cell.-cutouts {
  justify-content: center;
}
design-pieces button {
  display: flex;
  align-items: center;
  width: 15rem;
  border-radius: 5px !important;
  display: flex;
  height: 3rem;
  grid-gap: 0.8rem;
  margin-top: 0 0.8rem;
  justify-content: center;
}
design-pieces button .icon {
  display: flex;
  width: 1.5rem;
  height: 1.5rem;
  fill: #2383bc;
}
design-pieces select {
  width: 100%;
  min-height: 3.8rem;
}
design-pieces indago-select-options {
  margin: 0 0 0 0 !important;
}

.design-pieces.indago-grid,
.design-pieces__header.indago-grid {
  grid-template-columns: 16.2rem 5rem minmax(15rem, 2fr) 5fr minmax(15rem, 1fr) minmax(15rem, 1fr) 7rem;
}

.design-pieces__header.indago-grid {
  overflow: hidden;
  scrollbar-gutter: stable;
  background-color: #2c2c46;
}
.design-pieces__header.indago-grid .cell.-header {
  z-index: 0;
}

.design-pieces.indago-grid {
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-gutter: stable;
  height: 100%;
}
.design-pieces > div {
  display: contents;
}
.design-pieces__actions {
  display: flex;
  gap: 0.8rem;
  padding: 1.8rem;
}
.design-pieces__actions .main-button {
  white-space: nowrap;
}
.design-pieces__actions .main-button.-changeArea {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.design-pieces__actions .main-button.-changeArea .indagoIcon {
  display: inline-flex;
}
.design-pieces .piece .cell:last-child,
.design-pieces .edit-piece .cell:last-child {
  justify-content: end;
  gap: 1.6rem;
}
.design-pieces .piece {
  display: contents;
}
.design-pieces .piece .-capture-image {
  gap: 1.6rem;
  cursor: pointer;
}
.design-pieces .piece .-capture-image > div svg {
  height: 3rem;
  width: 3rem;
}
.design-pieces .piece .-capture-image .-disabled {
  cursor: default;
}
.design-pieces .piece .-capture-image .-disabled svg.icon {
  fill: #bebebe;
}
.design-pieces .edit-piece {
  display: contents;
}
.design-pieces .edit-piece input {
  width: 100%;
}
.design-pieces .edit-piece .-sqFt {
  gap: 0.4rem;
}
.design-pieces .edit-piece .-sqFt indago-select-options {
  min-width: 6rem;
}
.design-pieces .edit-piece .cell.-cutouts {
  display: flex;
  flex-direction: column;
}
.design-pieces .edit-piece .cell.-cutouts ul {
  margin-bottom: 0.8rem;
}
.design-pieces .edit-piece .cell.-cutouts .piece-cutout-manager {
  align-self: center;
}
.design-pieces .edit-piece .cell {
  padding: 0.8rem;
  align-items: flex-start;
}
.design-pieces .-loading-spinner {
  grid-column: 1/-1;
}
.design-pieces .-loading-spinner .loading-spinner {
  width: 3.5rem;
  height: 3.5rem;
}
.design-pieces .-capture-image button {
  justify-content: center;
  width: 10rem;
}
.design-pieces .-capture-image svg {
  width: 2.4rem;
  height: 2.4rem;
}
.design-pieces .error-row {
  grid-column: 1/-1;
  height: 5rem;
}

design-activity-tracker {
  min-width: auto !important;
}
design-activity-tracker.-orderDesign .activity-tracker-container {
  width: 100%;
  max-width: 100%;
}

.activity-tracker-container {
  position: relative;
  margin: 0 0.6rem;
  min-height: 4.4rem;
  min-width: 19rem;
  max-width: 19rem;
}
.activity-tracker-container > div:first-child {
  display: flex;
  box-shadow: 0 0 0px 0.5px #2c2c46 inset;
  border-radius: 1rem;
  overflow: hidden;
  padding-left: 0.4rem;
}
.activity-tracker-container > div:first-child.-disconnected {
  box-shadow: 0 0 0px 0.5px #b62d2c inset;
}
.activity-tracker-container > div:first-child.-disabled {
  box-shadow: 0 0 0px 0.5px rgba(16, 16, 16, 0.3) inset;
}
.activity-tracker-container .fa {
  color: #2c2c46;
  font-size: 1.3em;
  display: inline-block;
  width: 1.28571429em;
  line-height: 1;
  text-align: center;
}
.activity-tracker-container button {
  line-height: 1.15 !important;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
}
.activity-tracker-container button.-activity-controller, .activity-tracker-container button.-activity-tracker {
  box-shadow: none;
  padding: 0;
  min-height: 4.4rem;
}
.activity-tracker-container button.-activity-controller.-disabled, .activity-tracker-container button.-activity-tracker.-disabled {
  cursor: default;
}
.activity-tracker-container button.-activity-control {
  border-radius: 0;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  border-radius: 2px;
  box-shadow: 1px 2px 3px #030303;
  background: #fafefd;
}
.activity-tracker-container button.-activity-control > div {
  display: flex;
}
.activity-tracker-container button.-activity-widget {
  position: absolute;
  height: 8rem;
}
.activity-tracker-container button.-activity-controller {
  color: #2c2c46;
}
.activity-tracker-container button.-activity-controller .activity-controller {
  padding-bottom: 0.4rem;
  display: flex;
  flex-direction: column;
}
.activity-tracker-container button.-activity-controller div:nth-child(2) {
  display: flex;
  gap: 0.4rem;
  align-self: center;
}
.activity-tracker-container button.-activity-controller .action-title {
  font-size: 1.4rem;
  gap: 0.6rem;
  justify-content: space-between;
  display: flex;
  font-weight: 600;
}
.activity-tracker-container button.-activity-controller .action-title.-empty {
  justify-content: center;
}
.activity-tracker-container button.-activity-controller .action-title > span {
  margin-right: 0.8rem;
}
.activity-tracker-container button.-activity-controller > div:first-child {
  margin-bottom: 0.8rem;
  font-weight: 600;
}
.activity-tracker-container button.-activity-controller .-activity-control.-selected {
  background: #fafefd !important;
  box-shadow: inset 0px 1px 5px #030303;
}
.activity-tracker-container button.-activity-controller .-activity-control.-selected > div svg {
  fill: #2c2c46 !important;
}
.activity-tracker-container button.-activity-controller .-activity-control.-disabled {
  background: #ededed !important;
  box-shadow: inset 0px 0px 1px #030303;
  cursor: default;
}
.activity-tracker-container button.-activity-controller .-activity-control.-disabled > div svg {
  fill: #b9b8d7 !important;
}
.activity-tracker-container .-hasMoreRight .scrollArrow.-right {
  opacity: 1;
  visibility: visible;
}
.activity-tracker-container .-hasMoreRight .activity-tracker,
.activity-tracker-container .-hasMoreLeft .activity-tracker {
  justify-content: flex-start;
}
.activity-tracker-container .-hasMoreLeft .scrollArrow.-left {
  opacity: 1;
  visibility: visible;
}
.activity-tracker-container .scrollArrow {
  position: absolute;
  padding: 0 0.5rem;
  width: 4rem;
  height: 4.3rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 2;
  pointer-events: none;
}
.activity-tracker-container .scrollArrow.-right {
  right: -1.5rem;
  transform: scaleX(-1);
}
.activity-tracker-container .scrollArrow.-left {
  left: -1.5rem;
}

.activity-tracker {
  display: flex;
  height: 100%;
  margin: 0 !important;
  overflow: hidden;
  justify-content: center;
  padding: 0 0.8rem;
}
.activity-tracker .edit-button {
  color: #fafefd;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  height: 2.4rem;
  padding: 2.4rem;
  box-shadow: inset 0px 0px 5px #030303;
}
.activity-tracker .edit-button .icon {
  fill: #fafefd;
}
.activity-tracker .activity {
  min-width: 5rem;
  align-items: center;
  display: flex;
  flex-direction: column;
}
.activity-tracker .activity span {
  white-space: nowrap;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  overflow: hidden;
  white-space: nowrap;
  padding: 0 0.6rem;
}
.activity-tracker .activity > div {
  width: 2rem;
  height: 2rem;
  background-color: #eee;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  position: relative;
  border: 0.25rem solid #2c2c46;
  align-items: center;
}
.activity-tracker .activity .activity-icon {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.activity-tracker .activity .-locked {
  border-color: #bebebe;
  background-color: #bebebe;
}
.activity-tracker .activity .-locked i {
  color: #fafefd;
  font-size: 1.3rem;
}
.activity-tracker .activity .-completed,
.activity-tracker .activity .-inprogress,
.activity-tracker .activity .-paused,
.activity-tracker .activity .-stopped,
.activity-tracker .activity .-active {
  background-color: #2c2c46;
}
.activity-tracker .activity .-completed i,
.activity-tracker .activity .-inprogress i,
.activity-tracker .activity .-paused i,
.activity-tracker .activity .-stopped i,
.activity-tracker .activity .-active i {
  color: #fafefd;
  font-size: 1.2rem;
}
.activity-tracker .activity .-skipped {
  background-color: #bebebe;
  border-color: #bebebe;
}
.activity-tracker .activity .-skipped i {
  color: #fafefd;
}
.activity-tracker .activity .-skipped.-nextCompleted::after {
  background-image: linear-gradient(to right, #bebebe, #267933) !important;
}
.activity-tracker .activity .-skipped.-next::after {
  background-image: linear-gradient(to right, #bebebe, #2c2c46) !important;
}
.activity-tracker .activity .-skipped.-nextSkipped::after {
  background-image: linear-gradient(to right, #bebebe, #bebebe) !important;
}
.activity-tracker .activity .-inprogress i {
  font-size: 1.1rem;
}
.activity-tracker .activity .-completed {
  background-color: #267933;
  border-color: #267933;
}
.activity-tracker .activity .-completed i {
  font-size: 1em;
  align-self: center;
}
.activity-tracker .activity .-completed::after {
  background-image: linear-gradient(to right, #267933, #2c2c46) !important;
}
.activity-tracker .activity .-completed.-nextCompleted::after {
  background-image: linear-gradient(to right, #267933, #267933) !important;
}
.activity-tracker .activity .-completed.-nextSkipped::after {
  background-image: linear-gradient(to right, #267933, #bebebe) !important;
}
.activity-tracker .activity .-completed.-next::after {
  background-image: linear-gradient(to right, #267933, #2c2c46) !important;
}
.activity-tracker .activity .-stopped i,
.activity-tracker .activity .-paused i {
  font-size: 1rem;
  align-self: center;
}
.activity-tracker .activity .-skipped i {
  font-size: 1.7rem;
}
.activity-tracker .activity .-skipped.-nextPaused::after {
  background-image: linear-gradient(to right, #bebebe, #2c2c46) !important;
}
.activity-tracker .activity .-skipped.-nextStopped::after {
  background-image: linear-gradient(to right, #bebebe, #2c2c46) !important;
}
.activity-tracker .activity .-skipped.-nextCompleted::after {
  background-image: linear-gradient(to right, #bebebe, #267933) !important;
}
.activity-tracker .activity .-skipped.-nextStarted::after {
  background-image: linear-gradient(to right, #bebebe, #2c2c46) !important;
}
.activity-tracker.-panel {
  display: block;
  gap: 0;
  padding: 0.8rem;
  color: #030303;
  background-color: #2c2c46;
}
.activity-tracker.-panel .activity-item:not(.-selected) .details {
  position: relative;
  min-width: 20rem;
}
.activity-tracker.-panel activity-item:first-child .activity {
  border-radius: 15px 15px 0px 0px;
}
.activity-tracker.-panel activity-item:last-child > div {
  border-radius: 0px 0px 0px 15px;
}
.activity-tracker.-panel activity-item:first-child > div {
  border-radius: 15px 0px 0px 0px;
}
.activity-tracker.-panel activity-item:last-child .activity {
  border-radius: 0px 0px 15px 15px;
  border-bottom: none;
}
.activity-tracker.-panel activity-item:first-child:last-child .activity {
  border-radius: 15px 15px 15px 15px;
}
.activity-tracker.-panel .activity-item {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  position: relative;
}
.activity-tracker.-panel .activity-item.-selected::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1rem;
  height: 100%;
  background-color: #2383bc;
}
.activity-tracker.-panel .activity-item.-selected .activity span {
  color: #2c2c46;
  font-weight: 700;
}
.activity-tracker.-panel .activity-item.-selected .activity > div::after {
  content: none;
  position: static;
  top: auto;
  left: auto;
  width: auto;
  height: auto;
  background-color: transparent;
  transform: none;
}
.activity-tracker.-panel .activity-item .activity {
  background-color: #fafefd;
  padding: 0.8rem;
  width: 12rem;
  border-bottom: 1px solid #81809d;
}
.activity-tracker.-panel .activity-item .activity > div {
  width: 2.4rem;
  height: 2.4rem;
}
.activity-tracker.-panel .activity-item .activity > div::after {
  content: none;
}
.activity-tracker.-panel .activity-item .activity span {
  font-size: 1.4rem;
  height: 1.6rem;
}
.activity-tracker.-panel .activity-item .details {
  padding: 12px 8px;
  color: #fafefd;
  width: 100%;
}
.activity-tracker.-panel .activity-item .details > div {
  display: flex;
  align-self: center;
  gap: 1.6rem;
  width: 100%;
  justify-content: space-between;
}
.activity-tracker.-panel .activity-item .details .skip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  color: #389eda;
  font-weight: 700;
}
.activity-tracker.-panel .activity-item .details .skip .icon {
  fill: #389eda;
  width: 1rem;
  height: 1rem;
}
.activity-tracker.-panel .activity-item .details .lavender {
  color: #b9b8d7;
}
.activity-tracker.-panel .activity-item .details .value {
  color: #fafefd;
  font-weight: 700;
}
.activity-tracker.-panel .activity-item .info {
  padding: 0.8rem;
}
.activity-tracker.-panel .activity-item .info svg {
  fill: #b9b8d7;
}

.activity-info {
  position: absolute;
  top: 0;
  right: -19.3rem;
  height: 100%;
  background: #ededed;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
}
.activity-info > div {
  color: #2c2c46;
  padding: 1.6rem;
}

.activity-controller {
  padding: 0.4rem 0.8rem;
}
.activity-controller controller-button:nth-child(4) button i {
  transform: translateY(-2px);
}
.activity-controller controller-button:nth-child(4) button i::before {
  font-size: 1.3rem;
}

ux-dialog.-designActivityTracker .activity-details {
  display: grid;
  grid-template-columns: min-content 1fr;
  column-gap: 0.8rem;
  font-size: 1.4rem;
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
}
ux-dialog.-designActivityTracker ul {
  list-style-type: none;
}
ux-dialog.-designActivityTracker ul button {
  width: 15rem;
  margin-right: 0.8rem;
}
ux-dialog.-designActivityTracker ul li {
  margin-bottom: 0.8rem;
}

activity-modifier {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  width: 63rem;
  margin: 0.8rem 4.5rem;
}
activity-modifier p {
  margin: 0;
  text-align: center;
  line-height: 1.4;
  color: #030303;
  font-weight: 600;
}
activity-modifier .activity-modifier__header {
  text-align: center;
}
activity-modifier .activity-modifier__header .title {
  margin: 0;
  font-size: 2.83rem;
  font-weight: 400;
  border-bottom: 1px solid #d4d4d4;
  padding-bottom: 1rem;
}
activity-modifier .activity-modifier__header .title .orderNumber {
  color: #2383bc;
}
activity-modifier .activity-container {
  border: 1px solid #8e8e8e;
  border-radius: 0.8rem;
  display: flex;
  flex-grow: 1;
}
activity-modifier .activity-container__item-container {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0.8rem;
  display: flex;
  flex-wrap: nowrap;
  justify-content: safe center;
  column-gap: 2.4rem;
  width: 100%;
}
activity-modifier .activity-container__item {
  min-width: 6rem;
  flex-shrink: 0;
}
activity-modifier .activity-container .activity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
activity-modifier .activity-container .activity-item__circle-wrap {
  position: relative;
}
activity-modifier .activity-container .activity-item__circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: #2c2c46;
}
activity-modifier .activity-container .activity-item__remove {
  position: absolute;
  top: -0.4rem;
  right: -0.4rem;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: #2383bc;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
activity-modifier .activity-container .activity-item__remove .icon {
  fill: #fafefd;
  width: 0.8rem;
  height: 0.8rem;
}
activity-modifier .activity-container .activity-item__title {
  width: 100%;
  display: block;
  text-align: center;
  line-height: 1.4;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
activity-modifier .activity-well {
  min-height: 7rem;
  margin-top: 1.6rem;
}
activity-modifier .activity-well__item {
  list-style: none;
  margin: 0;
  padding: 0;
}
activity-modifier .activity-well__item__button {
  display: inline-block;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: content-box;
  background: #2c2c46;
  color: #fafefd;
  font-weight: 600;
  border: 1px solid #514f8d;
  border-radius: 4px;
  padding: 0 3rem;
  height: 3rem;
  line-height: 3rem;
}
activity-modifier .activity-well__item__button:disabled {
  background: #8e8e8e;
  border-color: #8e8e8e;
  cursor: not-allowed;
}
activity-modifier .activity-well__instructions {
  text-align: left;
  border-bottom: 1px solid #d4d4d4;
  padding-bottom: 0.5rem;
  margin-bottom: 0;
}
activity-modifier .activity-well__prerequisite-note {
  text-align: left;
  font-weight: 400;
  margin: 0.8rem 0 1.6rem;
}
activity-modifier .activity-well__list-container {
  display: flex;
  column-gap: 0.5rem;
  row-gap: 1rem;
  flex-wrap: wrap;
  height: 8rem;
  overflow-y: auto;
  padding-right: 1.8rem;
  margin-right: 0.8rem;
}

.timeline {
  display: flex;
}
.timeline .event__icon-container.-endpoint {
  border: none;
  background: transparent;
}
.timeline .event__icon-container.-endpoint > div {
  background: #2383bc;
}
.timeline .event__icon-container.-edit::before {
  left: -2.6rem;
  border-right-color: #2c2c46 !important;
}
.timeline .event__icon-container.-edit::after {
  right: -2.6rem;
  border-left-color: #2c2c46 !important;
}
.timeline .event__icon-container.-edit::before, .timeline .event__icon-container.-edit::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  transform: translateY(-50%);
}

.activity-event.-edgeEvent .event .event__icon-line-container .event__icon-container.-endpoint {
  background: none;
}
.activity-event.-edgeEvent .event .event__icon-line-container .event__icon-container.-endpoint div {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2383bc;
}
.activity-event.-edgeEvent .event .event__icon-line-container .event__icon-container.-endpoint.-add {
  background: #fafefd;
  border: 1px solid #2383bc;
  cursor: pointer;
}
.activity-event.-edgeEvent .event .event__icon-line-container .event__icon-container.-endpoint.-add + div {
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}
.activity-event.-edgeEvent .event .event__icon-line-container .event__icon-container.-endpoint.-add .icon {
  fill: #fafefd;
}

.endpoint {
  margin-top: 1.5rem;
}

.event {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  min-width: 16.5rem;
  max-width: 16.5rem;
  overflow: none;
}
.event.-deleted {
  color: #c13e66;
}
.event.-deleted .event__icon-container {
  border-color: #c13e66;
}
.event.-deleted i {
  color: #c13e66;
}
.event > span:first-of-type {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}
.event__icon-line-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-height: 7.5rem;
}
.event .delete-container {
  width: 1.8rem;
  height: 1.8rem;
  display: flex;
  justify-content: center;
  margin-bottom: 0.4rem;
}
.event .delete-container.-edit {
  background: #2383bc;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 110%;
}
.event .delete-container.-edit .icon {
  fill: white;
  width: 0.8rem;
  height: 1.8rem;
}
.event .dashed-line {
  border-top: 2px dashed #2c2c46;
  width: 105%;
  position: absolute;
  z-index: 1;
  left: 50%;
}
.event__icon-container {
  position: relative;
  width: 100%;
  min-height: 50px;
  max-width: 75px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid black;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  background: #f7f7f7;
}
.event__icon-container.-edit {
  cursor: pointer;
}
.event__icon-container .timeUnit {
  background: #1a1a2a;
  color: #fafefd;
  padding: 0.8rem;
  border-radius: 5px;
  min-width: 4rem;
  font-weight: 600;
  text-align: center;
}
.event__icon-container .fa-check-square-o {
  transform: translate(-45%, -45%);
}
.event__icon-container .fa-angle-double-right {
  transform: translate(-40%, -50%);
}
.event__icon-container.-endpoint {
  border: none;
}
.event__icon-container.-endpoint > div {
  background: #2c2c46;
  width: 35%;
  height: 35%;
  border-radius: 50%;
}
.event__icon-container.-endpoint span {
  width: 50%;
}
.event__icon-container i {
  position: absolute;
  top: 49.5%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.6em;
  line-height: 0.8;
  color: #2c2c46;
}
.event__info-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
  text-align: center;
}
.event__info-container .process::first-letter {
  text-transform: uppercase;
}
.event__info-container.-endpoint {
  width: 100%;
}
.event__info-container.-endpoint > span:first-of-type {
  width: 50%;
  margin-top: 0.4rem;
}
.event.-pause i {
  font-size: 2em;
}
.event.-complete i {
  font-size: 2.2em;
  transform: translate(-45%, -40%);
}

.endpoint__label {
  min-height: 5rem;
}
.endpoint__rail {
  min-height: 3rem;
}

.timeline-session {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 1rem 0;
}
.timeline-session .--user-search-cancel {
  background-color: #fafefd;
}
.timeline-session--single {
  max-width: 16.5rem;
}
.timeline-session__label {
  display: flex;
  justify-content: center;
  width: 100%;
  position: relative;
}
.timeline-session__user {
  max-width: 20rem;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
  max-height: 4.5rem;
  min-height: 4.5rem;
  padding: 0 0.8rem;
}
.timeline-session__events {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.timeline-session__item {
  position: relative;
  flex: 1 1 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.timeline-session__item::before, .timeline-session__item::after {
  content: "";
  position: absolute;
  top: 0%;
  transform: translateY(-50%);
  border-top: 2px solid #2c2c46;
  z-index: 0;
  pointer-events: none;
}
.timeline-session__item::before {
  left: 0;
  right: 50%;
}
.timeline-session__item::after {
  left: 50%;
  right: 0;
}
.timeline-session__item:first-child::before {
  display: none;
}
.timeline-session__item:last-child::after {
  display: none;
}
.timeline-session__item--first::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2.25rem;
  border-left: 2px dashed #2c2c46;
}
.timeline-session__item--last::after {
  content: "";
  position: absolute;
  right: 0;
  width: 0;
  height: 2.25rem;
  border-right: 2px dashed #2c2c46;
}
.timeline-session__events:has(.timeline-session__item:only-child) .timeline-session__item::before, .timeline-session__events:has(.timeline-session__item:only-child) .timeline-session__item::after {
  display: none;
}

.timeline-session__user-edit-container {
  display: flex;
  position: relative;
  min-height: 4.5rem;
  width: 100%;
  justify-content: center;
}
.timeline-session__user-edit-container__user-edit {
  position: absolute;
  top: -4rem;
  flex-wrap: nowrap;
  display: flex;
  z-index: 10;
  gap: 0.8rem;
  align-items: center;
  background-color: #f5f5f5;
  padding: 1.6rem;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
}
.timeline-session--disabled {
  color: #8e8e8e;
}
.timeline-session--disabled .timeline-session__item::before, .timeline-session--disabled .timeline-session__item::after {
  border-color: #8e8e8e;
}
.timeline-session--disabled .event__icon-container {
  border-color: #8e8e8e;
  color: #8e8e8e;
}
.timeline-session--disabled .event__icon-container i {
  color: #8e8e8e;
}
.timeline-session .timeline-edit-button-container {
  position: absolute;
  top: -3rem;
  min-width: 3rem;
}
.timeline-session .userList {
  max-height: 20rem;
  overflow-y: auto;
}

.content-container.-timeline {
  padding-top: 0;
  max-width: 60vw;
  min-width: 60vw;
  min-height: 25rem;
  overflow: auto;
  padding: 1.6rem;
}
.content-container.-timeline .activity-tab {
  display: flex;
}

.tab-container.-design-timeline {
  position: relative;
}

.action-menu .item {
  cursor: pointer;
}
.action-menu.-design-timeline {
  display: flex;
  gap: 0.8rem;
  position: absolute;
  top: 0;
  right: 0;
}

.timeline-container__footer.-editing > div:first-child {
  display: block;
}
.timeline-container__footer.-editing > div:first-child button:first-child {
  margin-right: 1.6rem;
}
.timeline-container__footer > div:first-child {
  display: flex;
  justify-content: space-between;
}
.timeline-container__footer-message {
  display: flex;
  align-items: center;
  padding-left: 1.8rem;
  color: #b62d2c;
}
.timeline-container__footer button {
  margin-left: auto !important;
}

.piece-cutout-manager {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.piece-cutout-manager button {
  height: 100%;
}
.piece-cutout-manager__popover {
  border: 2px solid #2383bc !important;
  border-radius: 1rem !important;
  background-color: #f7f7f7;
  padding: 0 1.6rem 1.6rem 1.6rem;
}
.piece-cutout-manager__popover > div {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.piece-cutout-manager__popover .piece-cutout-manager__content {
  font-size: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.piece-cutout-manager__popover .piece-cutout-manager__assignment {
  display: contents;
}
.piece-cutout-manager__popover .piece-cutout-manager__assignment quantity-selector {
  align-self: center;
  margin-right: 0.8rem;
}
.piece-cutout-manager__popover .piece-cutout-manager__assignment > div {
  display: flex;
  justify-content: space-between;
  border-radius: 1rem !important;
  position: relative;
  background: #ededed;
}
.piece-cutout-manager__popover .piece-cutout-manager__assignment > div:focus-within:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0%;
  width: 1rem;
  height: 100%;
  background-color: #2383bc;
}
.piece-cutout-manager__popover .piece-cutout-manager__assignment > div:focus-visible {
  outline: none;
}
.piece-cutout-manager__popover .piece-cutout-manager__label {
  display: flex;
  flex-direction: column;
  padding: 0.8rem 1.6rem;
  min-height: 5rem;
  box-sizing: border-box;
}
.piece-cutout-manager__popover .piece-cutout-manager__label span:nth-child(2) {
  font-style: italic;
}
.piece-cutout-manager__popover .piece-cutout-manager__footer {
  align-self: self-end;
}
.piece-cutout-manager__popover .piece-cutout-manager__footer button {
  width: fit-content;
}
.piece-cutout-manager__popover .piece-cutout-manager__header {
  border-bottom: 1px solid #2383bc;
  width: 75%;
  display: flex;
  align-self: center;
}
.piece-cutout-manager__popover .piece-cutout-manager__header h2 {
  width: 100%;
  margin: 0.8rem;
}

.reorder-pieces-dialog {
  width: 70%;
}
.reorder-pieces-dialog__body {
  overflow-y: auto;
}
.reorder-pieces-dialog__body h3 {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  font-size: 3rem;
  font-weight: 400;
}
.reorder-pieces-dialog__body h3 span {
  color: #2383bc;
}
.reorder-pieces-dialog__body .icon-warning-container {
  position: relative;
  line-height: 0;
}
.reorder-pieces-dialog .gridHost-shell {
  height: 50vh;
}

.e-grid {
  font-family: inherit;
  font-size: 1.4rem !important;
  font-weight: 400;
}
.e-grid .e-headertext {
  font-size: 1.4rem;
  color: white;
  font-weight: 400;
}
.e-grid .e-gridheader,
.e-grid .e-rowdragheader,
.e-grid .e-headercell,
.e-grid .e-headercontent {
  background-color: #2c2c46;
  border-color: #2c2c46;
}
.e-grid .e-headercell.e-ellipsistooltip .e-headercelldiv {
  color: #fff;
  background-color: #2c2c46;
}

.e-tooltip-wrap {
  background: #2c2c46 !important;
  border-color: #2c2c46 !important;
}
.e-tooltip-wrap .e-tip-content {
  color: white;
  font-family: inherit;
  font-size: 1.2rem !important;
  font-weight: 400;
}

.e-tooltip-wrap .e-arrow-tip-inner.e-tip-right,
.e-tooltip-wrap .e-arrow-tip-inner.e-tip-left,
.e-tooltip-wrap .e-arrow-tip-inner.e-tip-bottom,
.e-tooltip-wrap .e-arrow-tip-inner.e-tip-top {
  color: #2c2c46 !important;
}

.e-grid.e-resize-lines .e-headercell .e-rhandler,
.e-grid.e-resize-lines .e-headercell .e-rsuppress {
  border-right: 1px solid #2c2c46;
}

.e-altrow {
  background: #f2f2f2;
}

.e-rowcell {
  font-family: inherit;
  font-size: 1.4rem !important;
}

.e-grid .e-row .e-icon-rowdragicon::before {
  color: #2c2c46;
}
.e-grid .e-row .e-icon-rowdragicon::before :hover {
  color: white;
}

.e-dragborder,
div.e-firstrow-dragborder {
  box-shadow: 0 2px 0 0 #2383bc !important;
}

.reassign-area-dialog {
  width: 65vw;
  min-width: 90rem;
  font-family: "Source Sans Pro", sans-serif;
}
.reassign-area-dialog__body {
  overflow: hidden;
}
.reassign-area-dialog__body h3 {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  font-size: 3rem;
  font-weight: 400;
}
.reassign-area-dialog__body h3 span {
  color: #2383bc;
}
.reassign-area-dialog .gridHost-shell {
  height: calc(100vh - 32rem);
  max-height: 50vh;
}
.reassign-area-dialog .gridHost-shell .indago-grid-syncfusion {
  height: 100%;
}
.reassign-area-dialog .e-grid .e-content {
  overflow-y: auto !important;
}
.reassign-area-dialog .e-grid .e-grouptopleftcell {
  background-color: #2c2c46;
  border-color: #2c2c46;
}
.reassign-area-dialog .e-grid .e-groupcaption,
.reassign-area-dialog .e-grid .e-recordplusexpand,
.reassign-area-dialog .e-grid .e-recordpluscollapse {
  background: #2383bc;
  color: #fafefd;
  font-weight: 400;
  font-size: 1.4rem;
}
.reassign-area-dialog .e-grid .e-icon-gdownarrow,
.reassign-area-dialog .e-grid .e-icon-grightarrow {
  color: #fafefd;
  margin-left: 0.8rem;
}
.reassign-area-dialog .e-grid .e-groupcaptionrow.reassign-band--drop-target .e-groupcaption,
.reassign-area-dialog .e-grid .e-groupcaptionrow.reassign-band--drop-target .e-recordplusexpand,
.reassign-area-dialog .e-grid .e-groupcaptionrow.reassign-band--drop-target .e-recordpluscollapse {
  background-color: #fafefd !important;
  color: #2383bc !important;
  box-shadow: inset 0 2px 0 0 #2383bc, inset 0 -2px 0 0 #2383bc;
}
.reassign-area-dialog .e-grid .e-groupcaptionrow.reassign-band--drop-target .e-icon-gdownarrow,
.reassign-area-dialog .e-grid .e-groupcaptionrow.reassign-band--drop-target .e-icon-grightarrow {
  color: #2383bc !important;
}
.reassign-area-dialog .e-grid .e-row.reassign-row--drop-target .e-rowcell,
.reassign-area-dialog .e-grid .e-row.reassign-row--drop-target .e-rowdragdrop {
  background-color: #e0eff5 !important;
}
.reassign-area-dialog .e-grid .e-droppable.e-dragborder,
.reassign-area-dialog .e-grid .e-dragborder {
  box-shadow: 0 0 0 2px #2383bc !important;
}
.reassign-area-dialog .e-grid .e-altrow .e-rowcell,
.reassign-area-dialog .e-grid .e-altrow .e-rowdragdrop {
  background-color: var(--surface-row-alt);
}
.reassign-area-dialog .e-grid .e-row.reassign-row--moved .e-rowcell,
.reassign-area-dialog .e-grid .e-row.reassign-row--moved .e-rowdragdrop {
  background-color: var(--surface-success-subtle) !important;
}
.reassign-area-dialog .e-grid .reassign-ca--strike {
  text-decoration: line-through;
  color: rgba(44, 44, 70, 0.55) !important;
}
.reassign-area-dialog .e-grid .reassign-na--new {
  color: #2383bc !important;
  font-weight: 700;
}
.reassign-area-dialog .e-grid .e-rowcell.reassign-placeholder-cell {
  text-align: center !important;
  color: var(--content-text);
}
.reassign-area-dialog .e-grid .e-row.reassign-row--placeholder .e-indentcell,
.reassign-area-dialog .e-grid .e-row.reassign-row--placeholder .e-rowdragdrop,
.reassign-area-dialog .e-grid .e-row.reassign-row--placeholder .e-rowcell {
  background-color: #e5e9eb !important;
}
.reassign-area-dialog .e-grid .e-row.reassign-row--placeholder .e-indentcell {
  border-right: 0 !important;
}
.reassign-area-dialog .e-grid .e-row.reassign-row--placeholder .e-icon-rowdragicon {
  visibility: hidden;
}

.reassign-area-error {
  width: 48rem;
  font-family: "Source Sans Pro", sans-serif;
}
.reassign-area-error__body {
  max-height: 70vh;
  overflow: auto;
}
.reassign-area-error__heading {
  margin: 0 0 1rem 0;
}
.reassign-area-error__list {
  margin: 0;
  padding-left: 1.6rem;
}
.reassign-area-error__item {
  color: #b62d2c;
  margin-bottom: 0.4rem;
}

.design-viewer-container {
  grid-row: 3/span 2;
  grid-column: 2;
  align-self: start;
  box-shadow: 2px 2px 2px 1px #ededed;
  border: 1px solid #ededed;
}

design-activity-tracker.-orderDesign {
  padding-top: 0.8rem;
}

.-order-design {
  display: grid;
  grid-template-rows: auto auto 8rem auto minmax(0, 1fr);
  grid-template-columns: minmax(30rem, 1fr) clamp(114.4rem, calc(114.4rem + (100vw - 192rem)), 172.5rem);
  gap: 0.8rem;
  margin: 0 0 1.6rem 0;
  padding: 0 3.4rem;
  overflow-y: auto;
}
@media (max-width: 1899px) {
  .-order-design {
    grid-template-columns: minmax(30rem, 40rem) minmax(0, 1fr);
  }
}
.-order-design indago-banner {
  grid-column: 1/-1;
}
.-order-design .-activity-tracker {
  grid-row: 3;
  grid-column: 1;
}
.-order-design .-activity-tracker .content {
  overflow-y: unset;
  align-items: stretch;
  justify-content: center;
}
.-order-design .-area-selector {
  grid-column: 1;
  grid-row: 4;
  position: relative;
  overflow: hidden;
}
.-order-design .-area-selector section.content {
  position: absolute;
  top: 6.2rem;
  right: 1.6rem;
  bottom: 1.6rem;
  left: 1.6rem;
  padding: 0;
  overflow-y: auto;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  .-order-design .-area-selector {
    flex-direction: row;
    grid-column: 1/-1;
    grid-row: 3;
    overflow: visible;
  }
  .-order-design .-area-selector .title {
    position: absolute;
    top: 1rem;
    left: 23rem;
  }
  .-order-design .-area-selector section.content {
    position: static;
    margin-top: 3rem;
    overflow-y: visible;
  }
}
.-order-design .area-select-header {
  display: flex;
  align-items: center;
}
.-order-design .area-select-header .sort-group {
  margin-left: auto;
  gap: 1.6rem;
  display: flex;
  align-items: center;
}
.-order-design .area-select-header .sort-group .sort-control {
  display: flex;
  font-size: 1.4rem;
  font-weight: initial;
}
.-order-design .area-select-header .sort-group .sort-control .sort-direction-control {
  gap: 0.2rem;
}
.-order-design .area-select-header .sort-group .sort-control .switch-toggle .checkbox:checked + .switchBody {
  background-color: #fafefd;
}
.-order-design .area-select-header .sort-group .sort-control .switch-toggle .checkbox:checked + .switchBody:after {
  background-color: #2383bc;
}
.-order-design .area-select-header .sort-group .sort-control .switchText {
  vertical-align: middle;
  display: inline-block;
  line-height: 2rem;
}
.-order-design .area-select-header .sort-group .sort-control button {
  padding: 0.8rem 0.8rem;
  line-height: 0.8rem !important;
  border-radius: 2px;
  box-shadow: 2px 3px 4px #030303;
  background: #fafefd;
}
.-order-design .area-select-header .sort-group .sort-control button.-selected {
  box-shadow: inset 0px 1px 5px #030303;
}
.-order-design .area-select-header .sort-group .sort-control .switch-toggle {
  margin: 0 0.2rem 0 0.4rem;
}
.-order-design .pieces-container {
  display: flex;
  flex-grow: 1;
  overflow: hidden;
  position: relative;
}
.-order-design .order-bar {
  grid-row: 2;
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: minmax(30rem, 1fr) 2.5fr;
  gap: 0.8rem;
  align-items: center;
  padding: 0.8rem 0;
  background-color: #2c2c46;
  border-radius: 0.5rem;
  color: #b9b8d7;
}
.-order-design .order-bar__order-info {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
  line-height: 1.2;
  padding-left: 1.6rem;
}
.-order-design .order-bar__order-number {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--content-text);
}
.-order-design .order-bar__piece-count {
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--content-text);
}
.-order-design .order-bar__piece-count-value {
  margin-left: 0.8rem;
}
.-order-design .order-bar__metrics-cell {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.-order-design .order-bar__pills {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
}
.-order-design .order-bar__action-menu {
  flex: none;
  --action-menu-icon-size: 1.5rem;
  align-self: flex-start;
  display: flex;
  align-items: center;
  min-height: 3rem;
  padding-right: 1.2rem;
}
.-order-design .order-bar .indago-comparison-pill .indago-pill__value {
  display: inline-block;
  text-align: right;
  min-width: 13rem;
  margin-left: 0.8rem;
}
.-order-design .order-bar__pills > indago-pill .indago-pill__value {
  display: inline-block;
  text-align: right;
  min-width: 6rem;
  margin-left: 0.8rem;
}
.-order-design .info-container {
  grid-column: 1;
  position: relative;
  margin-bottom: 1.6rem;
}
.-order-design .info-container .info-box {
  display: grid;
  grid-template-columns: min-content auto;
  grid-gap: 1.6rem;
  grid-row-gap: 0.8rem;
  background-color: #2c2c46;
  border-radius: 5px 5px 0 0;
  padding: 0.8rem;
  color: #b9b8d7;
  min-width: 20rem;
}
.-order-design .info-container.-pieces {
  padding: 0 1.6rem;
  overflow: auto;
}
.-order-design section.header {
  padding: 1.6rem 1.6rem 0 1.6rem;
}
.-order-design .card-area-bar {
  grid-row: 5;
  grid-column: 1/-1;
}
.-order-design.-area-selected {
  grid-template-rows: auto auto 8rem auto auto minmax(0, 1fr);
}
.-order-design.-area-selected .-add-pieces {
  grid-row: 6;
}
@media (max-width: 1899px) {
  .-order-design.-area-selected {
    grid-template-rows: auto auto 8rem auto auto minmax(30rem, 1fr);
  }
}
.-order-design .-add-pieces {
  grid-row: 5;
  grid-column: 1/-1;
  overflow: hidden;
  padding: 0;
  min-height: 0;
}
.-order-design .-add-pieces section.content {
  padding: 0;
  overflow: hidden;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  .-order-design .-add-pieces {
    grid-row: 4;
  }
}
.-order-design .placeholder {
  top: 0;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #2c2c46;
  background-color: white;
  font-weight: 700;
}
@media print {
  .-order-design {
    display: none !important;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  .-order-design {
    grid-template-rows: 10vh 25vh 1fr auto;
    grid-template-columns: 1fr auto;
  }
}

.view-change-requests {
  position: absolute;
  top: 1rem;
  bottom: 3.4rem;
  left: 3.4rem;
  right: 3.4rem;
}
.view-change-requests .-float-right {
  align-items: center;
  float: right;
  display: flex;
}
.view-change-requests .-float-right .refreshIcon {
  margin: 0 1.5rem;
  cursor: pointer;
  height: 1.8rem;
}
.view-change-requests .-float-right .refreshIcon .icon {
  fill: #2383bc;
}
.view-change-requests .item-container {
  display: flex;
  flex-direction: column;
  height: calc(100% - 6rem);
}
.view-change-requests .item-list {
  flex-grow: 1;
}
.view-change-requests > .tab-container {
  position: relative;
}
.view-change-requests > .tab-container .actions {
  position: absolute;
  top: -2rem;
  right: 0;
}
.view-change-requests > .tab-container indago-search-popover {
  vertical-align: -0.5rem;
  display: inline-block;
  margin: 0 2rem;
}
.view-change-requests > .tab-container indago-search-popover .wrapper {
  width: 32rem;
  left: -36rem;
}
.view-change-requests > .tab-container indago-search-popover input {
  min-width: 30rem;
}
.view-change-requests indago-search-results-header {
  margin: 1rem 0 2rem;
  display: block;
}
.view-change-requests .change-request {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  border: 1px solid #e0e0e0;
  background-color: #ffffff;
  margin-bottom: 0.4rem;
  height: 6.5rem;
  overflow: hidden;
}
.view-change-requests .change-request > .element {
  padding: 1.3rem 1.1rem;
}
.view-change-requests .change-request > .element .label {
  margin-bottom: 0.8rem;
  color: #909090;
}
.view-change-requests .change-request > .element .value {
  font-size: 1.5rem;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.view-change-requests .change-request > .element .-inline {
  display: inline-block;
}
.view-change-requests .change-request > .element .-requested-date {
  margin-right: 1rem;
  position: relative;
}
.view-change-requests .change-request > .element .-requested-date ::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  border-bottom: 1px solid black;
}
.view-change-requests .change-request > .element .icon {
  width: 1.5rem;
  height: 1.5rem;
  vertical-align: -1px;
}
.view-change-requests .change-request .-originator {
  width: 13rem;
}
@media (max-width: 1000px) {
  .view-change-requests .change-request .-originator {
    display: none;
  }
}
.view-change-requests .change-request .-requestNumber {
  background-color: #222236;
  color: #ffffff;
  margin-right: 0.5rem;
}
.view-change-requests .change-request .-requestNumber > .label {
  color: #fff;
  margin-bottom: 0.6rem;
}
@media (max-width: 1180px) {
  .view-change-requests .change-request .-requestNumber > .label {
    display: none;
  }
}
.view-change-requests .change-request .-requestNumber > .value {
  font-size: 2rem;
  font-weight: 600;
}
.view-change-requests .change-request .-requestTypeIcon {
  position: relative;
  margin: 0 0.5rem;
  width: 4.2rem;
}
@media (max-width: 850px) {
  .view-change-requests .change-request .-requestTypeIcon {
    margin: 0;
    width: 2.2rem;
    padding: 1.3rem 0;
  }
}
.view-change-requests .change-request .-requestTypeIcon .icon {
  width: 2.2rem;
  height: 2.2rem;
  margin: 8px 0;
  position: relative;
  z-index: 2;
  background: white;
  padding: 0 5px;
}
@media (max-width: 850px) {
  .view-change-requests .change-request .-requestTypeIcon .icon {
    padding: 0;
  }
}
.view-change-requests .change-request .-requestTypeIcon:after, .view-change-requests .change-request .-requestTypeIcon:before {
  content: "";
  position: absolute;
  z-index: 1;
}
@media (max-width: 850px) {
  .view-change-requests .change-request .-requestTypeIcon:after, .view-change-requests .change-request .-requestTypeIcon:before {
    display: none;
  }
}
.view-change-requests .change-request .-requestTypeIcon:after {
  background: #cccccc;
  width: 100%;
  height: 3px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.view-change-requests .change-request .-requestTypeIcon:before {
  border-top: 3px solid #cccccc;
  border-right: 3px solid #cccccc;
  width: 0.7rem;
  height: 0.7rem;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.view-change-requests .change-request .-requestTypeIcon .-rush .icon {
  fill: #b62d2c;
}
.view-change-requests .change-request .-requestTypeIcon .-bump .icon {
  fill: #50b4cc;
  width: 1.8rem;
  height: 1.8rem;
  margin: 1.1rem 0;
}
.view-change-requests .change-request .rightArea {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.view-change-requests .change-request .rightArea .requestStatus {
  position: relative;
  color: #9a9a9a;
  font-style: italic;
  width: 7rem;
}
.view-change-requests .change-request .rightArea .requestStatus:after {
  content: "";
  position: absolute;
  top: 0.4rem;
  left: -1.5rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: #9a9a9a;
}
.view-change-requests .change-request .rightArea .requestStatus.-Pending {
  display: none;
}
.view-change-requests .change-request .rightArea .main-button {
  margin: 0 2rem;
}
@media (max-width: 1180px) {
  .view-change-requests .change-request .rightArea .main-button {
    margin: 0 1rem;
  }
}
@media (max-width: 1000px) {
  .view-change-requests .change-request .rightArea .main-button {
    line-height: 1.3rem;
    padding: 0.7rem 1.5rem;
    width: 9rem;
  }
}
.view-change-requests .change-request .rightArea .cancelRequest {
  border-left: 1px solid #e0e0e0;
  height: 100%;
  width: 4.6rem;
  cursor: pointer;
  margin-left: auto;
}
.view-change-requests .change-request .rightArea .cancelRequest .icon {
  margin: 2.4rem 0.8rem;
  fill: #2383bc;
  width: 1.4rem;
  height: 1.4rem;
}
.view-change-requests .change-request .rightArea .cancelRequest.-disabled {
  pointer-events: none;
}
.view-change-requests .change-request .rightArea .cancelRequest.-disabled svg {
  fill: #ededed;
}

.change-request-report-view {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 3.4rem;
  right: 3.4rem;
  display: flex;
  flex-direction: column;
}
.change-request-report-view section.query-builder-container header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 1rem 0;
}
.change-request-report-view section.query-builder-container header > [indago-icon] {
  margin: 0 1.5rem;
  cursor: pointer;
}
.change-request-report-view section.query-builder-container header > [indago-icon] svg {
  fill: #2383bc;
}
.change-request-report-view section.query-builder-container header > button {
  position: relative;
  margin-left: 1.5rem;
}
.change-request-report-view section.query-builder-container header > button .query-tick {
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 0 0.7rem 0.7rem 0.7rem;
  border-color: transparent transparent #2383bc transparent;
}
.change-request-report-view section.query-builder-container .query-builder {
  background-color: #e8e8e8;
  border-top: 1px solid #2383bc;
  border-bottom: 1px solid #2383bc;
  display: flex;
  flex-wrap: wrap;
}
.change-request-report-view section.query-builder-container .query-builder .query-parameter {
  padding: 1.7rem;
  border-right: 1px solid #d4d4d4;
  border-bottom: 1px solid #d4d4d4;
  flex: 1 0 auto;
  min-width: 24rem;
  max-width: 27rem;
}
.change-request-report-view section.query-builder-container .query-builder .query-parameter h4 {
  font-weight: 700;
  margin: 0 0 1rem 0;
}
.change-request-report-view section.query-builder-container .query-builder .query-parameter .query-column {
  margin: 0.5rem;
  margin-left: 0;
  display: inline-block;
}
.change-request-report-view section.query-builder-container .query-builder .query-parameter .inputField {
  margin-bottom: 0.5rem;
  width: 100%;
  position: relative;
}
.change-request-report-view section.query-builder-container .query-builder .query-parameter .inputField input {
  width: 100%;
  box-sizing: border-box;
  height: 3.7rem;
}
.change-request-report-view section.query-builder-container .query-builder .query-parameter ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.change-request-report-view section.query-builder-container .query-builder .query-parameter li {
  margin-left: 1.5rem;
  line-height: 2.3rem;
}
.change-request-report-view section.query-builder-container .query-builder .query-parameter li:first-of-type {
  margin-left: 0;
}
.change-request-report-view section.query-builder-container .query-builder .query-parameter li span, .change-request-report-view section.query-builder-container .query-builder .query-parameter li label {
  vertical-align: 2px;
}
.change-request-report-view section.query-builder-actions {
  align-self: center;
}
.change-request-report-view section.query-builder-actions > div {
  background-color: #2383bc;
  border-radius: 0 0 4px 4px;
  padding: 0.6rem 1.6rem;
}
.change-request-report-view section.query-builder-actions > div > span {
  color: #fff;
  margin: 0 1.3rem 0 0.5rem;
  cursor: pointer;
}
.change-request-report-view section.query-builder-actions .-disabled {
  pointer-events: none;
  background-color: gray;
}
.change-request-report-view section.query-builder-actions .-disabled > span {
  color: black;
}
.change-request-report-view section.query-builder-selections {
  display: flex;
  flex-wrap: nowrap;
}
.change-request-report-view section.query-builder-selections h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  background-color: #2383bc;
  color: #fff;
  padding: 0 1rem;
  display: flex;
  align-items: center;
}
.change-request-report-view section.query-builder-selections .query-groups {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  background-color: #ededed;
  padding: 0 1rem;
  line-height: 4.5rem;
}
.change-request-report-view section.query-builder-selections .query-group {
  display: flex;
  align-items: center;
  font-weight: 600;
  margin-right: 1rem;
}
.change-request-report-view section.query-builder-selections .query-group h4 {
  margin: 0;
}
.change-request-report-view section.query-builder-selections .query-group > div {
  border: 1px solid #a1a1a1;
  border-radius: 2rem;
  line-height: 2.5rem;
  margin-left: 0.5rem;
  padding: 0 0.8rem;
  display: flex;
  align-items: center;
}
.change-request-report-view section.query-results {
  flex: 1 0;
  padding: 1rem 0;
}
.change-request-report-view section.query-results table td {
  white-space: nowrap;
}
.change-request-report-view indago-loading-spinner {
  flex: 1 0 auto;
}

.order-query-view {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 3.4rem;
  right: 3.4rem;
  display: flex;
  flex-direction: column;
}
.order-query-view section.query-builder-container header {
  display: flex;
  justify-content: flex-end;
  margin: 1rem 0;
  align-items: center;
}
.order-query-view section.query-builder-container header > * {
  margin-left: 1.5rem;
}
.order-query-view section.query-builder-container header [indago-icon=refresh] > svg {
  fill: #2383bc;
  cursor: pointer;
}
.order-query-view section.query-builder-container header > button {
  position: relative;
}
.order-query-view section.query-builder-container header > button .query-tick {
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 0 0.7rem 0.7rem 0.7rem;
  border-color: transparent transparent #2383bc transparent;
}
.order-query-view section.query-builder-container .query-builder {
  background-color: #e8e8e8;
  border-top: 1px solid #2383bc;
  border-bottom: 1px solid #2383bc;
  display: flex;
  flex-wrap: wrap;
}
.order-query-view section.query-builder-container .query-builder .query-parameter {
  padding: 1.7rem;
  border-right: 1px solid #d4d4d4;
  border-bottom: 1px solid #d4d4d4;
  flex: 1 1 auto;
}
.order-query-view section.query-builder-container .query-builder .query-parameter indago-select-options {
  margin: 0;
}
.order-query-view section.query-builder-container .query-builder .query-parameter h4 {
  font-weight: 700;
  margin: 0 0 1rem 0;
}
.order-query-view section.query-builder-container .query-builder .query-parameter .inputField {
  margin-bottom: 0.5rem;
  width: 100%;
  position: relative;
}
.order-query-view section.query-builder-container .query-builder .query-parameter .inputField input {
  width: 100%;
  box-sizing: border-box;
  height: 3.7rem;
}
.order-query-view section.query-builder-container .query-builder .query-parameter ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.order-query-view section.query-builder-container .query-builder .query-parameter li {
  margin-left: 1.5rem;
  line-height: 2.3rem;
}
.order-query-view section.query-builder-container .query-builder .query-parameter li:first-of-type {
  margin-left: 0;
}
.order-query-view section.query-builder-container .query-builder .query-parameter li span, .order-query-view section.query-builder-container .query-builder .query-parameter li label {
  vertical-align: 2px;
}
.order-query-view section.query-builder-actions {
  align-self: center;
}
.order-query-view section.query-builder-actions > div {
  background-color: #2383bc;
  border-radius: 0 0 4px 4px;
  padding: 0.6rem 1.6rem;
}
.order-query-view section.query-builder-actions > div > span {
  color: #fff;
  margin: 0 1.3rem 0 0.5rem;
  cursor: pointer;
}
.order-query-view section.query-builder-actions .-disabled {
  pointer-events: none;
  background-color: gray;
}
.order-query-view section.query-builder-actions .-disabled > span {
  color: black;
}
.order-query-view section.query-builder-selections {
  display: flex;
  flex-wrap: nowrap;
}
.order-query-view section.query-builder-selections h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  background-color: #2383bc;
  color: #fff;
  padding: 0 1rem;
  display: flex;
  align-items: center;
}
.order-query-view section.query-builder-selections .query-groups {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  background-color: #ededed;
  padding: 0 1rem;
  line-height: 4.5rem;
}
.order-query-view section.query-builder-selections .query-group {
  display: flex;
  align-items: center;
  font-weight: 600;
  margin-right: 1rem;
}
.order-query-view section.query-builder-selections .query-group h4 {
  margin: 0;
}
.order-query-view section.query-builder-selections .query-group > div {
  border: 1px solid #a1a1a1;
  border-radius: 2rem;
  line-height: 2.5rem;
  margin-left: 0.5rem;
  padding: 0 0.8rem;
  display: flex;
  align-items: center;
}
.order-query-view section.query-results {
  flex: 1 0;
  padding: 1rem 0;
}
.order-query-view section.query-results table td {
  white-space: nowrap;
}
.order-query-view section.query-results table tr:first-of-type > th {
  text-align: center;
}
.order-query-view section.query-results table tr:first-of-type > th:first-of-type {
  border-right: 1px solid #ededed;
}
.order-query-view section.query-results table .number {
  text-align: right;
}
.order-query-view indago-loading-spinner {
  flex: 1 0 auto;
}

order-detail {
  z-index: 13;
  background: #ffffff;
  /* Old browsers */
  background: -moz-linear-gradient(top, #ffffff 0%, #f5f5f5 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #f5f5f5));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #ffffff 0%, #f5f5f5 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #ffffff 0%, #f5f5f5 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #ffffff 0%, #f5f5f5 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #ffffff 0%, #f5f5f5 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#000000",GradientType=0 );
  /* IE6-9 */
  padding: 0 2rem;
  -webkit-overflow-scrolling: touch;
  position: fixed;
  left: 0;
  bottom: -25rem;
  width: 100%;
  height: 23.5rem;
  box-shadow: 0px 0px 1.8rem rgba(0, 0, 0, 0.35);
  box-sizing: border-box;
  display: flex;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
order-detail.-displayed {
  bottom: 0;
  opacity: 1;
}
order-detail.-expanded {
  bottom: 0;
  height: 75rem;
}
order-detail > .close {
  cursor: pointer;
  position: absolute;
  top: 1.3rem;
  right: 3rem;
  text-transform: uppercase;
  color: #2383bc;
  font-weight: 600;
  z-index: 6;
}
order-detail > .close > .icon {
  fill: #2383bc;
  width: 1.3rem;
  height: 1.3rem;
  vertical-align: middle;
}
order-detail > .close > .label {
  font-size: 1.5rem;
  vertical-align: bottom;
  margin-left: 0.3rem;
}
order-detail > .orderId {
  width: 20rem;
  height: 19rem;
  border: 1px solid #dbdbdb;
  border-radius: 4px;
  margin: 1.5rem 2.5rem 0 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #2c2c46;
}
order-detail > .orderId > .mfr {
  font-weight: 700;
  font-size: 2rem;
  border-bottom: 1px solid #e3e3e3;
  padding-bottom: 0.8rem;
  margin-bottom: 0.8rem;
}
order-detail > .orderId > .type {
  font-size: 1.7rem;
  font-weight: 600;
}
order-detail > .orderId > .type > .icon {
  width: 2rem;
  height: 2rem;
  float: left;
  margin-right: 0.5rem;
  margin-top: -0.2rem;
}
order-detail > .orderId > .issueSource {
  font-style: italic;
  font-size: 1.3rem;
  margin: 0.5rem 1rem 0 1rem;
  line-height: 1.5rem;
  width: 100%;
}
order-detail > order-detail-tabs {
  width: calc(100% - 24rem);
}
@media (max-width: 1400px) {
  order-detail {
    height: 29rem;
    bottom: -30rem;
  }
  order-detail .tab-container {
    padding: 1rem 0;
  }
  order-detail .tab-container .tabItem {
    padding: 0.9rem 1rem;
  }
  order-detail > .orderId {
    position: absolute;
    top: 0;
    left: 2rem;
    margin: 0;
    border: 0;
    width: calc(100% - 4rem);
    height: 4.5rem;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    background: whitesmoke;
    border-radius: 0 0 4px 4px;
  }
  order-detail > .orderId > .mfr {
    border: 0;
    font-size: 1.7rem;
    margin: 0 2rem 0 1.5rem;
    padding: 0;
  }
  order-detail > .orderId > .type {
    font-size: 1.6rem;
    margin: 0;
  }
  order-detail > .orderId > .issueSource {
    margin-top: 0;
    margin-left: 1.5rem;
    width: auto;
  }
  order-detail > order-detail-tabs {
    margin-top: 4rem;
    width: 100%;
  }
  order-detail > order-detail-tabs .tabWrapper {
    height: 50rem;
  }
}

.run-management {
  width: 100%;
  height: calc(100% - 3rem);
  display: flex;
  flex-direction: row;
  box-sizing: border-box;
}
.run-management filter-criteria {
  position: static;
}
.run-management .filter-menu {
  box-shadow: 0 0 5px black;
  margin: 7px 35px 0 35px;
}
.run-management .filter-container {
  background: rgba(0, 0, 0, 0.69);
  position: absolute;
  top: 53px;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  margin-top: 0;
}
.run-management .filter-container.-collapsed {
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.run-management .filter-container.-expanded {
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.run-management .filter-actions > .wrapper {
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.16);
}
.run-management .left-pane {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.run-management .left-pane .basket-search-results {
  padding: 1rem 0 0 3.4rem;
}
.run-management .left-pane .basket {
  flex: 0 0 48%;
  overflow: auto;
  padding: 0 0 0 3.4rem;
  margin-bottom: 1rem;
  margin-right: 2rem;
  -webkit-overflow-scrolling: touch;
}
.run-management .left-pane .basket indago-select-options:last-child {
  margin-right: 0;
}
.run-management .left-pane .basket.-hasSelection .custom-checkbox {
  opacity: 1;
}
.run-management .left-pane .list-toolbar {
  flex: 1 1 auto;
  padding: 0 1rem 0 3.4rem;
}
.run-management .left-pane .order-list {
  flex: 1 1 auto;
  width: 100%;
}
.run-management .left-pane .order-list .manufacturing-order-cell.-color,
.run-management .left-pane .order-list .manufacturing-order-cell.-edge-type {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.run-management .left-pane selection-bar {
  background: none;
  box-shadow: none;
  position: relative;
  margin: 0 3.4rem;
}
.run-management .left-pane selection-bar.-hasSelection {
  max-height: 7rem;
}
.run-management .left-pane selection-bar > .wrapper {
  height: 3.2rem;
  padding: 1rem 0 2.5rem;
  margin-top: -1rem;
  position: relative;
}
.run-management .left-pane selection-bar > .wrapper:after {
  content: "";
  position: absolute;
  top: 40%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ccc;
}
.run-management .left-pane selection-bar .content {
  text-align: center;
  bottom: auto;
  position: absolute;
  background: #f7f7f7;
  padding: 0 3rem;
  visibility: visible;
  opacity: 1;
  left: 50%;
  transform: translateX(-50%);
  min-width: 41rem;
}
.run-management .left-pane selection-bar .tooltip {
  top: 0;
  left: -9.5rem;
}
.run-management .left-pane selection-bar .tooltip:after {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 7px solid #000;
  top: 28%;
  left: 100%;
  margin-left: 0;
}
.run-management .left-pane .runs {
  flex: 1 1 49%;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
  background-color: white;
  margin: 1rem 3.4rem 0;
}
.run-management .left-pane .runs run-container {
  background-color: white;
}
.run-management .left-pane indago-search-popover {
  vertical-align: -0.5rem;
  display: inline-block;
  margin: 0 2rem;
}
.run-management .left-pane indago-search-popover .wrapper {
  width: 33rem;
  left: -36rem;
}
.run-management .left-pane indago-search-popover input {
  min-width: 31rem;
}
.run-management .list-toolbar {
  margin-top: 1rem;
  margin-bottom: 0rem;
}
.run-management .list-toolbar .refreshIcon {
  margin: 0 1.5rem;
  cursor: pointer;
  height: 1.8rem;
}
.run-management .list-toolbar .refreshIcon .icon {
  fill: #2383bc;
}
.run-management .snapshot {
  flex: 1 1 35rem;
  min-width: 30rem;
  max-width: 45rem;
  margin: 1.5rem 3.5rem 0 0;
  padding: 1.7rem 2rem;
  background-color: white;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
}
.run-management .alert-message {
  z-index: 10;
}
.run-management .alert-message.-show {
  top: 1%;
}
.run-management .alert-message .text {
  display: inline-block;
}

.basket-container {
  flex: 1 0 auto;
}

@media only screen and (max-width: 1500px) {
  .run-detail .-showSnapshot {
    display: inline-flex !important;
  }

  .run-detail-filtered .-showSnapshot {
    display: inline-flex !important;
  }

  .run-management:after {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.73);
    z-index: 10;
    transition: all 0.3s ease-out;
  }
  .run-management .snapshot {
    position: fixed;
    top: 0;
    bottom: 3rem;
    z-index: 10;
    transition: all 0.3s ease-out;
    box-shadow: 3px 3px 8px 4px rgba(0, 0, 0, 0.68);
  }

  .run-management.-closedSnapshot:after {
    opacity: 0;
    visibility: hidden;
  }
  .run-management.-closedSnapshot .snapshot {
    right: -20rem;
    opacity: 0;
    visibility: hidden;
  }
  .run-management.-closedSnapshot .closeSnapshotBt {
    display: none;
  }

  .run-management.-openedSnapshot:after {
    opacity: 1;
    visibility: visible;
  }
  .run-management.-openedSnapshot .snapshot {
    right: 0;
    opacity: 1;
    visibility: visible;
    z-index: 15;
  }
  .run-management.-openedSnapshot .closeSnapshotBt {
    display: block;
  }
}
@media print {
  .run-management .order-list,
.run-management .run-container,
.run-management .alert-message,
.run-management .runs,
.run-management .basket,
.run-management .left-pane {
    display: none;
  }
}
.run-dialog .element {
  margin-bottom: 1rem;
}
.run-dialog .summary {
  display: flex;
  flex-wrap: wrap;
  background-color: #f3f3f3;
  padding: 0rem 1.3rem 0rem 1.3rem;
  margin-bottom: 1.3rem;
}
.run-dialog .summary .element {
  flex-grow: 1;
  margin: 1rem 0rem 1rem 0rem;
}
.run-dialog .details .header {
  border-bottom: 1px solid #d4d4d4;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}
.run-dialog .details .body {
  display: flex;
  flex-wrap: wrap;
}
.run-dialog .details .body .element {
  margin-right: 3rem;
}
.run-dialog .details .body .element label {
  display: block;
  margin-bottom: 1rem;
}
.run-dialog .confirmation .run-name {
  font-style: italic;
  color: #2383bc;
}

.run-simulator-dialog {
  display: flex;
  flex-direction: column;
  width: min(1600px, 92vw);
  height: calc(100vh - 6rem);
  height: calc(100dvh - 6rem);
}
.run-simulator-dialog .dialog-header-content {
  gap: 1.2rem;
}
.run-simulator-dialog ux-dialog-header .title {
  margin: 0.5rem 0;
}
.run-simulator-dialog ux-dialog-header .close-button {
  float: none;
  margin-left: auto;
}
.run-simulator-dialog ux-dialog-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  container-type: inline-size;
}
.run-simulator-dialog__pill {
  flex: 0 0 auto;
}
.run-simulator-dialog__grid {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  grid-template-rows: auto minmax(0, 1fr);
  grid-template-areas: "actions snapshot" "orders  snapshot";
  gap: 1.4rem 2rem;
  padding: 2rem;
  background: var(--surface-sunken);
}
.run-simulator-dialog__grid > * {
  min-width: 0;
}
.run-simulator-dialog__actions {
  grid-area: actions;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.run-simulator-dialog__search {
  flex: 0 1 30rem;
  min-width: 0;
}
.run-simulator-dialog__search .run-simulator-dialog__search-input {
  box-sizing: border-box;
  width: 100%;
  height: 3.8rem;
}
.run-simulator-dialog__add, .run-simulator-dialog__snapshot-toggle, .run-simulator-dialog__export {
  flex: 0 0 auto;
  margin-top: 0;
}
.run-simulator-dialog__export {
  margin-left: auto;
}
.run-simulator-dialog__add {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}
.run-simulator-dialog__add > .icon {
  margin: 0;
}
.run-simulator-dialog__snapshot-toggle {
  display: none;
}
.run-simulator-dialog__snapshot-toggle > .icon {
  fill: #2383bc;
}
.run-simulator-dialog__snapshot-toggle.-flatPrimary > .icon {
  fill: #fafefd;
}
.run-simulator-dialog__orders {
  grid-area: orders;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.run-simulator-dialog__list-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  min-height: 3.4rem;
  margin: 1.4rem 0 1.2rem;
}
.run-simulator-dialog__count {
  margin: 0;
  color: var(--content-text);
  font-size: 1.4rem;
  font-weight: 700;
}
.run-simulator-dialog__filter {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: 100%;
  margin-left: 1.6rem;
  padding: 0.3rem 0.8rem 0.3rem 1.2rem;
  background: var(--surface-filtered);
  border-radius: 0.4rem;
  color: var(--content-text);
  font-size: 1.4rem;
  font-weight: 600;
}
.run-simulator-dialog__filter-label {
  margin-right: 0.8rem;
}
.run-simulator-dialog__filter-cell {
  display: inline-flex;
  align-items: center;
  padding: 0 0.5rem 0 1rem;
  border: 1px solid #a5a5a5;
  border-radius: 2rem;
  line-height: 2.5rem;
}
.run-simulator-dialog__filter-name {
  margin-right: 0.6rem;
  overflow-wrap: anywhere;
  min-width: 0;
}
.run-simulator-dialog__filter-clear {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}
.run-simulator-dialog__filter-icon {
  width: 0.8rem;
  height: 0.8rem;
  padding: 0.5rem;
  box-sizing: content-box;
  fill: #fafefd;
  background: #2383bc;
  border-radius: 50%;
}
.run-simulator-dialog__list {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  container: sim-order-list/inline-size;
}
.run-simulator-dialog__backdrop {
  display: none;
}
.run-simulator-dialog__snapshot {
  grid-area: snapshot;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 1.8rem;
  overflow: auto;
  background: var(--surface-card);
  border: 1px solid #ededed;
  border-radius: 0.3rem;
}
.run-simulator-dialog__snapshot-title {
  display: block;
  position: relative;
  margin: 0 0 1em;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--border-divider);
  color: #2383bc;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
}
.run-simulator-dialog__snapshot-title::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 10.6rem;
  height: 3px;
  background: #2383bc;
}
@container (max-width: 1000px) {
  .run-simulator-dialog__grid {
    grid-template-columns: 1fr;
    grid-template-areas: "actions" "orders";
  }
  .run-simulator-dialog__snapshot-toggle {
    display: inline-block;
  }
  .run-simulator-dialog__snapshot {
    grid-area: orders;
    justify-self: end;
    z-index: 2;
    width: min(42rem, 88%);
    margin: 0 -2rem 0 0;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.3);
  }
  .run-simulator-dialog__backdrop {
    display: block;
    grid-area: orders;
    z-index: 1;
    background: transparent;
    visibility: hidden;
  }
  .run-simulator-dialog__grid.is-snapshot-open .run-simulator-dialog__snapshot {
    transform: translateX(0);
    transition: transform 0.5s ease-out;
  }
  .run-simulator-dialog__grid.is-snapshot-open .run-simulator-dialog__backdrop {
    opacity: 1;
    visibility: visible;
  }
}
@container sim-order-list (max-width: 81rem) {
  .run-simulator-dialog .manufacturing-order-row__cell.-on-hold {
    display: none;
  }
}
@container sim-order-list (max-width: 78rem) {
  .run-simulator-dialog .manufacturing-order-row__cell.-flag {
    display: none;
  }
}
@container sim-order-list (max-width: 75rem) {
  .run-simulator-dialog .manufacturing-order-row__cell.-icons {
    display: none;
  }
}

.simulator-run-snapshot {
  display: block;
}
.simulator-run-snapshot__title {
  display: block;
  position: relative;
  margin: 0 0 1em;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--border-divider);
  color: var(--content-accent);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
}
.simulator-run-snapshot__title::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 10.6rem;
  height: 3px;
  background: var(--content-accent);
}
.simulator-run-snapshot__meta {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
  color: #8e8e8e;
  font-size: 1.3rem;
}
.simulator-run-snapshot__meta-label {
  font-weight: 600;
}
.simulator-run-snapshot__empty {
  color: #8e8e8e;
}

.run-container {
  display: block;
  height: 100%;
  width: 100%;
  position: relative;
}
.run-container .tab-container {
  position: relative;
  padding: 0.2rem 0 1.6rem 3rem;
  border-color: #e2e2e2;
  margin-bottom: 0;
}
.run-container .tab-container .tabItem {
  padding: 1.2rem 1rem;
  font-size: 1.5rem;
}
.run-container .tab-container button {
  position: absolute;
  right: 2rem;
  bottom: 1rem;
}
.run-container .tab-container > .rightBlock {
  position: absolute;
  right: 0;
  top: -11px;
  width: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-end;
  padding-bottom: 0.7rem;
}
.run-container .tab-container > .rightBlock button {
  position: static;
  right: auto;
  bottom: auto;
}
.run-container .summary-container {
  position: absolute;
  left: 2rem;
  top: 6rem;
  bottom: 2rem;
  right: 2rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-top: 3rem;
}
.run-container .run-summary {
  display: flex;
  flex-wrap: nowrap;
  background-color: #f7f7f7;
  margin-bottom: 1rem;
  cursor: pointer;
  height: 4.2rem;
}
.run-container .run-summary:hover {
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.3);
}
.run-container .run-summary .header {
  flex: 0 0 56rem;
  background-color: #404065;
  color: white;
  overflow: hidden;
}
.run-container .run-summary .header .-runname,
.run-container .run-summary .header .-date,
.run-container .run-summary .header .-orders {
  float: left;
  padding: 1.3rem 1.2rem;
}
.run-container .run-summary .header .-runname {
  font-weight: 700;
  width: 13rem;
}
.run-container .run-summary .header .-type {
  float: right;
  text-transform: uppercase;
  opacity: 0.6;
  padding: 1.3rem 1.2rem;
}
.run-container .run-summary .header .detail-wrapper {
  width: 54rem;
}
.run-container .run-summary .details {
  display: grid;
  grid-template-columns: minmax(auto, auto) minmax(auto, auto) minmax(auto, auto) 9rem;
  gap: 1.8rem;
  padding: 1em;
}
.run-container .run-summary .details .element {
  display: grid;
  grid-template-columns: auto minmax(5rem, auto) auto;
  gap: 0.4rem;
  margin-right: 1rem;
}
.run-container .run-summary .details .element span:nth-child(2) {
  text-align: right;
}
.run-container .run-summary .details .element span:nth-child(3) {
  align-self: center;
}
.run-container .run-summary .details .element:first-child {
  margin-left: 1rem;
}
.run-container .run-summary .details .element .title {
  min-width: 1em;
  padding: 0.2em;
}
.run-container .run-summary .details .element .value {
  font-weight: bolder;
  padding: 0.2em;
}
.run-container .run-summary .details .element.-delete {
  float: right;
  width: 2rem;
  margin-right: 0;
  margin-top: -2px;
}

@media only screen and (max-width: 1650px) {
  .run-container .run-summary {
    flex-direction: column;
    height: auto;
  }

  .run-container .run-summary .header {
    flex: 0 0 100%;
  }
}
@media only screen and (max-width: 1500px) {
  .run-container .run-summary .details {
    padding: 1rem;
  }

  .run-container .run-summary .details .element {
    float: left;
    margin: 0 !important;
    line-height: 1.7rem;
  }

  .run-container .run-summary .header .element {
    padding: 1.8rem 1.2rem;
  }
}
@media only screen and (max-width: 1000px) {
  .run-container .run-summary .header .element {
    padding: 1rem;
  }

  .run-container .run-summary .details .element.-footage {
    width: 14rem;
  }
  .run-container .run-summary .details .element.-upgEdge {
    width: 18rem;
  }
  .run-container .run-summary .details .element.-lamEdge {
    width: 19rem;
  }
  .run-container .run-summary .details .element.-cutouts {
    width: 9rem;
  }
}
manufacturing-order {
  display: block;
  margin: 2px 0;
  padding-right: 5px;
}
manufacturing-order .grouped-by {
  font-weight: 700;
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  margin-top: 2rem;
  padding-bottom: 0.5rem;
}
manufacturing-order .grouped-by:after {
  position: absolute;
  top: 51%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #d4d4d4;
  margin-left: 1rem;
}
manufacturing-order .manufacturing-order-summary {
  border: 1px solid #e0e0e0;
  background: #ffffff;
  height: 100%;
  width: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
}
manufacturing-order .manufacturing-order-summary .custom-checkbox {
  position: absolute;
  left: -40px;
  opacity: 0;
}
manufacturing-order .manufacturing-order-summary.-onHold {
  border: 1px solid #f6b4c8;
  background: var(--surface-on-hold);
}
manufacturing-order .manufacturing-order-summary.-isDirectional {
  border: 1px solid #ffbb4d;
  background: #fff6e8;
}
@media (hover) {
  manufacturing-order .manufacturing-order-summary:hover {
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.25);
    z-index: 3;
  }
  manufacturing-order .manufacturing-order-summary:hover .custom-checkbox {
    opacity: 1;
  }
}
manufacturing-order .manufacturing-order-summary .openDetails {
  background-color: #222236;
  cursor: pointer;
  line-height: 0;
  width: 2.2rem;
  height: 100%;
}
manufacturing-order .manufacturing-order-summary .openDetails > .icon {
  fill: #fff;
  width: 1rem;
  height: 1rem;
  margin: 1.7rem 0.6rem;
}
manufacturing-order .content {
  display: flex;
  flex-wrap: wrap;
  flex: 1 1 auto;
  position: relative;
  align-items: center;
}
manufacturing-order .manufacturing-order-cell {
  font-size: 1.4rem;
  padding-right: 1rem;
}
manufacturing-order .manufacturing-order-cell .icon {
  vertical-align: sub;
  margin-right: 0.4rem;
  width: 1.5rem;
  height: 1.5rem;
}
manufacturing-order .manufacturing-order-cell.-color {
  flex: 1 1 1rem;
}
manufacturing-order .manufacturing-order-cell.-edge-type {
  flex: 1 1 1rem;
}
manufacturing-order .manufacturing-order-cell.-note {
  flex: 0 0 2.7rem;
  text-align: left;
  padding-right: 0px;
  margin-right: 0px;
  border-right: 1px !important;
  border-radius: 4px !important;
}
manufacturing-order .manufacturing-order-cell.-order-attributes {
  padding-left: 0px;
  margin-left: 0px;
}
manufacturing-order .manufacturing-order-cell.-date {
  flex: 0 0 8.3rem;
}
manufacturing-order .manufacturing-order-cell.-date.-completion {
  flex: 0 0 10.7rem;
}
manufacturing-order .manufacturing-order-cell.-measure {
  flex: 0 0 8.9rem;
}
manufacturing-order .manufacturing-order-cell .-measure-font {
  font-size: 1rem;
}
manufacturing-order .manufacturing-order-cell.-flag {
  flex: 0 0 2.3rem;
  border: 0;
}
manufacturing-order .manufacturing-order-cell.order-flag {
  flex: 0 0 15rem;
}
manufacturing-order .manufacturing-order-cell.order-flag > .onHold {
  border: 0;
}
manufacturing-order .manufacturing-order-cell note-pop-over .icon {
  margin-right: 0px;
}

run-detail {
  display: block;
  height: 100%;
}

.run-detail {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.run-detail .header {
  width: auto;
  background-color: #2c2c46;
  padding: 0.8rem 2rem;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  flex-direction: row;
}
.run-detail .header .runInformation {
  width: auto;
  line-height: 32px;
}
.run-detail .header .runInformation .element {
  font-size: 1.5rem;
  line-height: 2.6rem;
  margin-right: 2.8rem;
}
.run-detail .header .runInformation .subtext {
  font-weight: 400;
  opacity: 0.6;
  margin-left: 1rem;
}
.run-detail .header .runInformation .subtext.-datetime {
  margin-left: 0.4rem;
}
.run-detail .header .runInformation .-date {
  font-weight: 400;
}
.run-detail .header .runInformation .-date.-showSnapshot {
  display: none;
}
.run-detail .header .buttons {
  margin-left: auto;
  display: flex;
}
.run-detail .header .buttons .icon {
  fill: #389eda;
}
.run-detail .header .buttons .item {
  color: #389eda;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  margin: 0.7rem 1.8rem;
}
.run-detail .header .buttons .-showSnapshot {
  display: none;
}
.run-detail .header .buttons .-close .icon {
  width: 1.4rem;
  height: 1.4rem;
}
.run-detail .header .buttons .-delete .icon {
  width: 1.7rem;
  height: 1.7rem;
}
.run-detail .header .buttons .label {
  margin-left: 0.5rem;
  font-size: 1.5rem;
  margin-top: -2px;
}
.run-detail .orders {
  position: relative;
  flex: 1 1 auto;
  padding: 1.5rem;
}
.run-detail .orders header {
  display: flex;
  flex-direction: row;
  font-size: 1.5rem;
  align-items: center;
}
.run-detail .orders header .numberOfOrders {
  font-weight: bolder;
}
.run-detail .orders header .sort {
  margin-left: auto;
}
.run-detail .orders .orders-list {
  position: absolute;
  left: 0;
  bottom: 1.5rem;
  right: 0;
  top: 60px;
  padding: 1.5rem;
  padding-top: 0px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.run-detail .orders .orders-list .custom-checkbox {
  display: none;
}
.run-detail .orders .orders-list .manufacturing-order-cell.-color,
.run-detail .orders .orders-list .manufacturing-order-cell.-edge-type {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media only screen and (max-width: 900px) {
  .run-detail .header .buttons .label {
    font-size: 1.4rem;
  }
  .run-detail .header .runInformation .element {
    font-size: 1.4rem;
  }
  .run-detail .header .buttons .item {
    margin: 0.7rem 0.8rem;
  }
  .run-detail .header .item .icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}
run-snapshot header {
  box-sizing: content-box;
  margin-bottom: 1em;
}
run-snapshot header .title {
  display: inline-block;
  margin: 0;
  color: #2383bc;
  border-bottom: 1px solid #dedede;
  width: 100%;
  padding-bottom: 0.9rem;
  font-size: 1.5rem;
  text-transform: uppercase;
  position: relative;
}
run-snapshot header .title:after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 10.6rem;
  height: 3px;
  background: #2383bc;
}
run-snapshot header .snapshotTotals {
  background-color: #2c2c46;
  width: auto;
  padding: 1rem;
  margin-top: 2rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
run-snapshot header .snapshotTotals .element {
  padding: 0.5rem 1rem;
  flex-basis: 44%;
  color: white;
}
run-snapshot header .snapshotTotals .element .section-total {
  flex: 1 1 auto;
  opacity: 0.5;
  padding: 0.3rem 0;
}
run-snapshot header .snapshotTotals .element .section-capacity {
  flex: 1 1 auto;
  font-size: 1.5rem;
  padding: 0.3rem 0;
}

.snapshotDetails {
  margin: 0 0 1.5rem 0;
  padding: 0;
  width: 100%;
}
.snapshotDetails thead {
  background: #efefef;
}
.snapshotDetails th {
  padding: 1rem;
}
.snapshotDetails td {
  border-bottom: 1px solid #e0e0e0;
  padding: 0.6rem 1rem;
  line-height: 1.7rem;
}
.snapshotDetails th:nth-child(1) {
  min-width: 52%;
  text-align: left;
}
.snapshotDetails th:nth-child(2),
.snapshotDetails th:nth-child(3) {
  width: 6.7rem;
}
.snapshotDetails td:nth-child(2),
.snapshotDetails td:nth-child(3) {
  text-align: right;
}
.snapshotDetails th.-datetime {
  width: 15.4rem;
}
.snapshotDetails td.-activate {
  box-shadow: 1px solid #1a1a1a;
  background: var(--surface-filtered);
}

run-snapshot .snapShotDetails td {
  cursor: pointer;
}

.closeSnapshotBt {
  position: absolute;
  right: 2rem;
  top: 1.8rem;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  display: none;
}
.closeSnapshotBt svg {
  fill: #2383bc;
}

run-detail-filtered {
  display: block;
  height: 100%;
}
run-detail-filtered.-onHold {
  border: 1px solid #f6b4c8;
  background: var(--surface-on-hold);
}

.run-detail-filtered {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.run-detail-filtered.-onHold {
  border: 1px solid #f6b4c8;
  background: var(--surface-on-hold);
}
.run-detail-filtered .header {
  width: auto;
  background-color: #2c2c46;
  padding: 0.8rem 2rem;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  flex-direction: row;
}
.run-detail-filtered .header .runInformation {
  width: auto;
  line-height: 32px;
}
.run-detail-filtered .header .runInformation .element {
  font-size: 1.5rem;
  padding-right: 0.5em;
  line-height: 2.6rem;
}
.run-detail-filtered .header .runInformation .subtext {
  font-weight: 400;
  opacity: 0.6;
  margin-left: 1rem;
}
.run-detail-filtered .header .buttons {
  margin-left: auto;
  display: flex;
}
.run-detail-filtered .header .buttons .icon {
  fill: #389eda;
}
.run-detail-filtered .header .buttons .item {
  color: #389eda;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  margin: 0.7rem 1.8rem;
}
.run-detail-filtered .header .buttons .-showSnapshot {
  display: none;
}
.run-detail-filtered .header .buttons .-close .icon {
  width: 1.4rem;
  height: 1.4rem;
}
.run-detail-filtered .header .buttons .-delete .icon {
  width: 1.7rem;
  height: 1.7rem;
}
.run-detail-filtered .header .buttons .label {
  margin-left: 0.5rem;
  font-size: 1.5rem;
  margin-top: -2px;
}
.run-detail-filtered .orders {
  position: relative;
  flex: 1 1 auto;
  padding: 1.5rem;
}
.run-detail-filtered .orders header {
  display: flex;
  flex-direction: row;
  font-size: 1.5rem;
  align-items: center;
}
.run-detail-filtered .orders header .numberOfOrders {
  font-weight: bolder;
}
.run-detail-filtered .orders header .sort {
  margin-left: auto;
}
.run-detail-filtered .orders .orders-list {
  position: absolute;
  left: 0;
  bottom: 1.5rem;
  right: 0;
  top: 60px;
  padding: 1.5rem;
  padding-top: 0px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.run-detail-filtered .orders .orders-list .custom-checkbox {
  display: none;
}
.run-detail-filtered .orders .orders-list .manufacturing-order-cell.-color,
.run-detail-filtered .orders .orders-list .manufacturing-order-cell.-edge-type {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media only screen and (max-width: 900px) {
  .run-detail-filtered .header .buttons .label {
    font-size: 1.4rem;
  }
  .run-detail-filtered .header .runInformation .element {
    font-size: 1.4rem;
  }
  .run-detail-filtered .header .buttons .item {
    margin: 0.7rem 0.8rem;
  }
  .run-detail-filtered .header .item .icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}
widget-panel {
  height: 100%;
}

.widget-panel {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.widget-panel__content {
  overflow: hidden;
  display: flex;
  width: 100%;
  height: 100%;
}
.widget-panel__content > div {
  width: 100%;
  height: 100%;
}
.widget-panel__header, .widget-panel__footer {
  display: flex;
  height: 100%;
  flex: 1;
  padding: 0.8rem;
  min-height: 3rem;
  display: none;
}
.widget-panel__header {
  align-items: center;
  border-left: 0.8rem solid #2c2c46;
  border-bottom: 1px solid #ededed;
  font-size: 1.5rem;
  color: #030303;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-left: 0.8rem;
  width: calc(100% - 2.4rem);
}
.widget-panel .order-widget__header__title,
.widget-panel .widget-header {
  overflow-wrap: break-word;
  word-break: break-all;
  white-space: normal;
}
.widget-panel .content-container {
  height: 100%;
  width: 100%;
}
.widget-panel .widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.widget-panel .widget-header button {
  padding: 1rem 1rem;
}
.widget-panel .widget-header action-menu {
  background-color: #ededed;
}
.widget-panel .widget-header svg {
  margin: 0;
}
.widget-panel .order-widget__header action-menu {
  background-color: #ededed;
}
.widget-panel .order-widget__header action-menu button {
  padding: 1rem 1rem;
}
.widget-panel .order-widget__header action-menu svg {
  margin: 0;
}

indago-chart-toggle .toggle-option {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  border-radius: 5rem;
  padding: 1.2rem 2rem;
  transition: all 0.2s ease-in-out;
}
indago-chart-toggle .toggle-option:hover {
  background: #fdfdfd;
  box-shadow: 0 1px 1px 0px rgba(0, 0, 0, 0.1) inset;
  text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
}
indago-chart-toggle .toggle-option.-selected {
  background: #f8f8f8;
  box-shadow: 0 1px 1px 0px rgba(0, 0, 0, 0.15) inset;
}
indago-chart-toggle .toggle-option:first-child {
  margin-right: 1rem;
}
indago-chart-toggle .toggle-option .optionValue {
  font-size: 2.3rem;
  color: #696969;
}
indago-chart-toggle .toggle-option .option {
  color: #ababab;
  font-size: 1.4rem;
  margin-left: 0.4rem;
}
indago-chart-toggle .toggle-option .difference {
  font-weight: 700;
  margin-left: 1.3rem;
}
indago-chart-toggle .toggle-option .difference .iconWrapper {
  border: 2px solid;
  border-radius: 50%;
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  text-align: center;
}
indago-chart-toggle .toggle-option .difference .iconWrapper .icon {
  width: 1rem;
  height: 1rem;
}
indago-chart-toggle .toggle-option .difference.-positive {
  color: #31a853;
}
indago-chart-toggle .toggle-option .difference.-positive .iconWrapper {
  border-color: #31a853;
}
indago-chart-toggle .toggle-option .difference.-positive .icon {
  fill: #31a853;
}
indago-chart-toggle .toggle-option .difference.-negative {
  color: #b62d2c;
}
indago-chart-toggle .toggle-option .difference.-negative .iconWrapper {
  border-color: #b62d2c;
  transform: rotate(180deg);
}
indago-chart-toggle .toggle-option .difference.-negative .icon {
  fill: #b62d2c;
}

.order-widget__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-left: 0.8rem;
  width: 100%;
}
.order-widget__header .has-error {
  flex-direction: row;
}
.order-widget__header > div {
  display: flex;
}
.order-widget__header__orderstatus > div, .order-widget__header__timeframe > div {
  margin: 0;
  display: inline-block;
  display: flex;
}
.order-widget__header__orderstatus > div label, .order-widget__header__timeframe > div label {
  color: #b2b2b2;
  font-weight: 600;
  margin-right: 0.5rem;
}
.order-widget__header__orderstatus > div select, .order-widget__header__timeframe > div select {
  background-color: #f1f8fc;
  background-position: calc(100% - 1rem);
  background-size: 1.1rem;
  border: 0;
  box-shadow: none;
  font-weight: 600;
  color: #2383bc;
  padding: 0.7rem 2.8rem 0.7rem 1.4rem;
  border-radius: 3rem;
}
.order-widget__header__orderstatus > div select:hover, .order-widget__header__orderstatus > div select:active, .order-widget__header__timeframe > div select:hover, .order-widget__header__timeframe > div select:active {
  box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.15), 0 0 1px 0 #389eda inset;
  background-color: #e4f2fa;
}
.order-widget__header__orderstatus > div select, .order-widget__header__timeframe > div select {
  background-color: inherit;
  font-size: 1.4rem;
}
.order-widget__header__orderstatus > div label, .order-widget__header__timeframe > div label {
  font-size: 1.4rem;
}
.order-widget__header__orderstatus > div select::hover, .order-widget__header__timeframe > div select::hover {
  background-color: inherit;
}
.order-widget__header__timeframe > div label.fieldtitle, .order-widget__header__timeframe > div indago-select-options.widefield > label {
  display: none;
}

.widget-panel__content--order {
  margin-top: 0.8rem;
}
.widget-panel--order--productivity .widget-panel__footer {
  display: none;
}

.chart-container {
  display: flex;
  flex-direction: column;
  display: grid;
  grid-template-rows: 6rem auto;
}

.selector-container {
  padding: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.selector-container__date-range-type {
  margin-right: 0;
}

.loading-container.-widget {
  position: absolute;
}

.spinner-overlay {
  position: absolute;
  /* Use 'fixed' if you want it to cover the entire viewport */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  /* Semi-transparent background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  /* Ensure it appears above other content */
}

.builder-wrapper {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0 0 0 3.4rem;
}
.builder-wrapper button:disabled {
  cursor: default;
  opacity: 0.45;
}

.rightBlock {
  margin-left: auto;
  padding: 1.6rem 2.4rem;
}

.dashboard-layout {
  overflow: hidden;
  align-self: flex-start;
}
.dashboard-layout .e-panel {
  overflow: visible;
}
.dashboard-layout .e-panel:has(.has-h-scroll) .e-resize.e-south-east {
  bottom: 16px !important;
}

.e-dashboardlayout.e-control.e-responsive {
  background: #b3d3ed;
}

widget-template .widget-body {
  display: flex;
  font-size: 2.1rem;
  color: #2c2c46;
}
widget-template .widget-body div {
  white-space: nowrap;
}
widget-template .widget-body img {
  width: 50%;
}

.dashboard-wrapper {
  display: flex;
  flex-grow: 1;
  overflow: hidden;
}

.builder-container {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.builder-container .dashboard-toolbar {
  display: flex;
  align-items: center;
  padding: 1.6rem 0 2.4rem 0;
  gap: 1.6rem;
}
.builder-container .dashboard-toolbar > span {
  min-width: 50rem;
  font-size: 2.1rem;
}
.builder-container .dashboard-toolbar > div {
  gap: 1.6rem;
  display: flex;
  align-items: center;
}
.builder-container .dashboard-toolbar > div > span {
  min-width: 23rem;
}
.builder-container .widget-wrapper {
  height: 100%;
  width: 100%;
}
.builder-container .widget-wrapper card {
  height: 100%;
  width: 100%;
}
.builder-container .-placeholder {
  opacity: 0;
  cursor: default;
}
.builder-container .dashboard {
  display: flex;
  position: relative;
}
.builder-container .dashboard-content {
  z-index: 999;
  overflow-x: auto;
}
.builder-container .dashboard-content .dashboard-viewer-container.-builder {
  display: grid;
  align-items: center;
  height: 99vh;
  width: 100vw;
  min-width: 1500px;
}
.builder-container .e-panel-container {
  height: 100%;
  width: 100%;
}
.builder-container .side-panel {
  min-width: 40rem;
  height: 100%;
}
.builder-container .side-panel.-configuration {
  z-index: 999;
}
.builder-container .side-panel.-configuration > div:first-of-type {
  width: 40rem;
  position: absolute;
  right: 0;
}
.builder-container .side-panel.-configuration::before {
  content: "";
  background-color: black;
  background-size: cover;
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  opacity: 0;
  transition-timing-function: ease-out;
  transition-duration: 0.2s;
  transition-property: opacity;
  z-index: 0;
}
.builder-container .side-panel.-configuration.au-entered::before {
  opacity: 0.75;
}
.builder-container .side-panel card {
  height: 100%;
}
.builder-container .widget-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 40rem;
}
.builder-container .widget-container .widget-template {
  margin-bottom: 1.6rem;
}
.builder-container .widget-container .widget-template card {
  margin-bottom: 0.8rem;
}
.builder-container .widget-container .widget-template img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.builder-container .widget-container .widget-template .template-image {
  align-items: center;
}
.builder-container .widget-container .content {
  height: 150px;
  width: 164px;
  box-sizing: border-box;
}
.builder-container div.dashboard-viewer table tbody td {
  background-color: #ededed;
  position: absolute;
  opacity: 80%;
}

widget-template {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
widget-template > div {
  align-self: center;
}
widget-template.-panel {
  justify-content: start;
}

.dashboard-viewer-container {
  display: grid;
  background-color: #ededed;
  height: 100vh;
}
.dashboard-viewer-container > div {
  display: flex;
  justify-self: center;
  width: calc(100vw - 3.2rem);
  align-self: center;
  position: relative;
}
.dashboard-viewer-container.-builder > div {
  align-self: start;
}
.dashboard-viewer-container .e-dashboardlayout.e-control.e-responsive {
  background: inherit;
}

.widget-panel--completedVsCapacity .widget-panel__footer {
  display: none;
}
.widget-panel--completedVsCapacity .widget-panel__content {
  height: 100%;
}
.widget-panel--completedVsCapacity .widget-panel__content .gauge-container {
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.widget-panel--completedVsCapacity .widget-panel__content .no-data--completedVsCapacity {
  height: 100%;
}
.widget-panel--completedVsCapacity .widget-panel__content .no-data--completedVsCapacity > div {
  align-self: center;
}

.widget-panel--assetCompletedVsCapacity .widget-panel__footer {
  display: none;
}
.widget-panel--assetCompletedVsCapacity .widget-panel__content {
  height: 100%;
}
.widget-panel--assetCompletedVsCapacity .widget-panel__content .chart-container {
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.widget-panel--assetCompletedVsCapacity .widget-panel__content .no-data--assetCompletedVsCapacity {
  height: 100%;
}
.widget-panel--assetCompletedVsCapacity .widget-panel__content .no-data--assetCompletedVsCapacity > div {
  align-self: center;
}

widget-header {
  width: calc(100% - 0.8rem);
}

.e-panel {
  overflow: hidden;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
}

.e-chart {
  height: inherit !important;
  width: inherit !important;
}

.no-data {
  display: flex;
  justify-content: center;
}

.design-management-report {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 1rem;
  bottom: 0;
  left: 0;
  right: 0;
  margin-left: 3.4rem;
  margin-right: 3.4rem;
}
.design-management-report .e-custom-excel-icon {
  align-items: center;
}
.design-management-report .list-toolbar {
  padding: 1rem 3.4rem;
  width: 100%;
  align-items: center;
  margin-bottom: 0;
}
.design-management-report .list-toolbar .refreshIcon {
  margin: 0 0.5rem;
  cursor: pointer;
  height: 1.8rem;
  display: inline-block;
}
.design-management-report .list-toolbar .refreshIcon .icon {
  fill: #2383bc;
}
.design-management-report__include-completed {
  display: flex;
  gap: 0.4rem;
}
.design-management-report__include-completed span {
  white-space: nowrap;
}
.design-management-report__date {
  display: flex;
  gap: 4rem;
  margin-bottom: 1.8rem;
  align-items: center;
  margin-top: 4rem;
}
.design-management-report__date > div {
  position: relative;
}
.design-management-report__date .indago-timepicker__input {
  width: fit-content;
}
.design-management-report__date .indago-timepicker__input .input-date {
  max-width: none;
  min-width: 21rem;
}
.design-management-report__date label {
  position: absolute;
  top: -2.7rem;
  font-size: 1.6rem;
  font-weight: 400;
}
.design-management-report__date button {
  height: 3rem;
}
.design-management-report .design-management-report-grid .e-toolbar,
.design-management-report .design-management-report-grid .e-gridheader {
  position: sticky;
  top: 0rem;
  z-index: 500;
}
.design-management-report .design-management-report-grid .e-gridheader {
  top: 4.6rem;
}
.design-management-report .design-management-report-grid .e-headertext {
  font-weight: 700;
}
.design-management-report .design-management-report-grid .e-btn.e-flat.e-primary,
.design-management-report .design-management-report-grid .e-css.e-btn.e-flat.e-primary {
  color: #2383bc;
}
.design-management-report .design-management-report-grid .e-btn.e-primary:hover,
.design-management-report .design-management-report-grid .e-css.e-btn.e-primary:hover {
  background-color: #f4f9fc;
}
.e-input-group.e-control-wrapper:not(.e-float-icon-left):not(.e-float-input)::after .design-management-report .design-management-report-grid::before {
  background: #2383bc;
}
.design-management-report .design-management-report-grid .e-input-group.e-control-wrapper:not(.e-float-icon-left):not(.e-float-input)::after {
  background: #2383bc;
}
.design-management-report .design-management-report-grid .e-input-group.e-control-wrapper:not(.e-float-icon-left):not(.e-float-input)::before {
  background: #2383bc;
}
.design-management-report .design-management-report-grid .e-spinner-pane .e-spinner-inner .e-spin-material {
  stroke: #2383bc;
}
.design-management-report .design-management-report-grid .e-pager .e-currentitem,
.design-management-report .design-management-report-grid .e-pager .e-currentitem:hover {
  background: #2383bc;
}
.design-management-report .design-management-report-grid .e-pager .e-currentitem.e-numericitem.e-focused {
  background: #2383bc;
  box-shadow: none;
}
.design-management-report .design-management-report-grid .e-grid .e-filtered::before {
  color: #2383bc;
}
.design-management-report .design-management-report-grid {
  overflow: auto;
}

.loading-spinner--assets {
  height: 50vh;
}

.report-wrapper__in-house-remake {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.report-wrapper__in-house-remake > indago-export-data {
  flex: 0 0 auto;
}

.report__in-house-remake {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  height: auto;
  padding-bottom: 0;
  min-height: 0;
}
.report__in-house-remake .validation-container.has-error .fieldtitle, .report__in-house-remake .validation-container.has-error indago-select-options.widefield > label {
  color: var(--content-danger);
}
.report__in-house-remake .validation-container.has-error .validation-control {
  border-color: var(--content-danger);
}
.report__in-house-remake .validation-message {
  color: var(--content-danger);
  background-color: var(--surface-danger-subtle);
  border-color: var(--content-danger);
}
.report__in-house-remake .user-actions {
  flex: 0 0 auto;
}
.report__in-house-remake .loading-container {
  flex: 1 1 auto;
}
.report__in-house-remake .report-container {
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: auto;
  overflow-y: auto;
  contain: inline-size;
}
.report__in-house-remake .in-house-remake-report__table th,
.report__in-house-remake .in-house-remake-report__table td {
  box-sizing: border-box;
  overflow-wrap: break-word;
}
.report__in-house-remake .in-house-remake-report__table th:nth-child(1), .report__in-house-remake .in-house-remake-report__table td:nth-child(1) {
  min-width: 10.5rem;
}
.report__in-house-remake .in-house-remake-report__table th:nth-child(2), .report__in-house-remake .in-house-remake-report__table td:nth-child(2) {
  min-width: 11rem;
}
.report__in-house-remake .in-house-remake-report__table th:nth-child(3), .report__in-house-remake .in-house-remake-report__table td:nth-child(3) {
  min-width: 11rem;
}
.report__in-house-remake .in-house-remake-report__table th:nth-child(4), .report__in-house-remake .in-house-remake-report__table td:nth-child(4) {
  min-width: 17.5rem;
}
.report__in-house-remake .in-house-remake-report__table th:nth-child(5), .report__in-house-remake .in-house-remake-report__table td:nth-child(5) {
  min-width: 9.5rem;
}
.report__in-house-remake .in-house-remake-report__table th:nth-child(6), .report__in-house-remake .in-house-remake-report__table td:nth-child(6) {
  min-width: 8.5rem;
}
.report__in-house-remake .in-house-remake-report__table th:nth-child(7), .report__in-house-remake .in-house-remake-report__table td:nth-child(7) {
  min-width: 11rem;
}
.report__in-house-remake .in-house-remake-report__table th:nth-child(8), .report__in-house-remake .in-house-remake-report__table td:nth-child(8) {
  min-width: 11rem;
}
.report__in-house-remake .in-house-remake-report__table th:nth-child(9), .report__in-house-remake .in-house-remake-report__table td:nth-child(9) {
  min-width: 13.5rem;
}
.report__in-house-remake .in-house-remake-report__table th:nth-child(10), .report__in-house-remake .in-house-remake-report__table td:nth-child(10) {
  min-width: 9.5rem;
}
.report__in-house-remake .in-house-remake-report__table th:nth-child(11), .report__in-house-remake .in-house-remake-report__table td:nth-child(11) {
  min-width: 11.5rem;
}
.report__in-house-remake .in-house-remake-report__table th:nth-child(12), .report__in-house-remake .in-house-remake-report__table td:nth-child(12) {
  min-width: 13rem;
}
.report__in-house-remake .in-house-remake-report__table th:nth-child(13), .report__in-house-remake .in-house-remake-report__table td:nth-child(13) {
  min-width: 19rem;
}
.report__in-house-remake .in-house-remake-report__footer {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  padding: 1.2rem 3.4rem;
  border-top: 1px solid #bebebe;
  background: #f7f7f7;
}
@media print {
  .report__in-house-remake .in-house-remake-report__footer {
    display: none;
  }
}

.configuration.-branches .content-container {
  position: relative;
}

.branches-page {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
}
.branches-page .user-actions {
  display: flex;
  justify-content: end;
  min-height: 3rem;
  gap: 1rem;
  flex: 0 0 auto;
}
.branches-page .branches-scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  background-color: var(--surface-sunken);
}
.branches-page .branches-grid .e-gridheader {
  position: sticky;
  top: 0;
  z-index: 2;
}
.branches-page .grid-footnote {
  display: block;
  position: sticky;
  bottom: 0;
  z-index: 2;
  margin: 0;
  padding: 0.8rem 0;
  background-color: inherit;
  color: var(--content-text);
  font-size: var(--font-size-info);
}
.branches-page .e-grid,
.branches-page .e-grid .e-gridheader,
.branches-page .e-grid .e-headercontent {
  border: 0 !important;
}
.branches-page .e-gridheader,
.branches-page .e-headercell {
  background-color: #2c2c46;
}
.branches-page .e-gridheader .e-rowdragheader,
.branches-page .e-headercell .e-rowdragheader {
  background-color: #2c2c46;
}
.branches-page .e-grid .e-row,
.branches-page .e-grid .e-row > .e-rowcell,
.branches-page .e-grid .e-row > .e-rowdragdrop {
  height: 4rem !important;
}
.branches-page .e-grid .e-headercell,
.branches-page .e-grid .e-headercell.e-firstcell,
.branches-page .e-grid .e-rowdragheader,
.branches-page .e-grid .e-gridheader tr {
  height: 4.3rem !important;
}
.branches-page .e-grid .e-headercell,
.branches-page .e-grid .e-headercelldiv,
.branches-page .e-grid .e-headertext {
  font-family: "Source Sans Pro", sans-serif !important;
  font-size: 1.4rem !important;
  font-weight: 400 !important;
  color: #fafefd !important;
}
.branches-page .e-grid,
.branches-page .e-grid .e-gridcontent,
.branches-page .e-grid .e-content,
.branches-page .e-grid .e-table {
  background-color: transparent !important;
}
.branches-page .e-grid .e-row {
  background-color: transparent !important;
}
.branches-page .e-grid .e-altrow {
  background-color: #f2f2f2 !important;
}
.branches-page .e-grid .e-row:hover {
  background-color: #e5e5e5 !important;
}
.branches-page .e-grid .e-rowcell,
.branches-page .e-grid .e-rowdragdrop {
  background-color: inherit !important;
  border-color: transparent !important;
  font-size: 1.4rem !important;
}
.branches-page .e-grid .e-rowcell {
  color: #030303 !important;
}
.branches-page .e-grid .e-emptyrow {
  color: #030303 !important;
}
.branches-page .e-grid td.e-focus,
.branches-page .e-grid td.e-focused,
.branches-page .e-grid .e-rowcell.e-focus,
.branches-page .e-grid .e-rowcell.e-focused,
.branches-page .e-grid .e-rowdragdrop.e-focus,
.branches-page .e-grid .e-rowdragdrop.e-focused,
.branches-page .e-grid .e-headercell.e-focus,
.branches-page .e-grid .e-headercell.e-focused {
  box-shadow: none !important;
  outline: none !important;
  border-color: transparent !important;
}
.branches-page .grid-edit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}
.branches-page .grid-edit .icon {
  width: 1.8rem;
  height: 1.8rem;
  fill: #030303;
}
.branches-page .grid-checkbox {
  width: 1.5rem;
  height: 1.5rem;
  margin: 0;
  vertical-align: middle;
}

.activity-group-page {
  position: absolute;
}
.activity-group-page .user-actions {
  display: flex;
  justify-content: end;
  min-height: 3rem;
  gap: 1rem;
}
.activity-group-page .e-headertext {
  color: #fafefd;
}
.activity-group-page .e-gridheader, .activity-group-page .e-headercell {
  background-color: #2c2c46;
}
.activity-group-page .e-gridheader .e-rowdragheader, .activity-group-page .e-headercell .e-rowdragheader {
  background-color: #2c2c46;
}

.activity-page {
  position: absolute;
}
.activity-page .user-actions {
  display: flex;
  justify-content: end;
  min-height: 3rem;
  gap: 1rem;
}
.activity-page .e-headertext {
  color: #fafefd;
}
.activity-page .e-grid,
.activity-page .e-grid .e-gridheader,
.activity-page .e-grid .e-headercontent {
  border: 0 !important;
}
.activity-page .e-gridheader, .activity-page .e-headercell {
  background-color: #2c2c46;
}
.activity-page .e-gridheader .e-rowdragheader, .activity-page .e-headercell .e-rowdragheader {
  background-color: #2c2c46;
}
.activity-page .e-grid,
.activity-page .e-grid .e-gridcontent,
.activity-page .e-grid .e-content,
.activity-page .e-grid .e-table {
  background-color: transparent !important;
}
.activity-page .e-grid .e-row {
  background-color: transparent !important;
}
.activity-page .e-grid .e-altrow {
  background-color: #f2f2f2 !important;
}
.activity-page .e-grid .e-row:hover {
  background-color: #e5e5e5 !important;
}
.activity-page .e-grid .e-rowcell,
.activity-page .e-grid .e-rowdragdrop {
  background-color: inherit !important;
  border-color: transparent !important;
  font-size: 1.4rem !important;
}
.activity-page .e-grid .e-rowcell {
  color: #030303 !important;
}
.activity-page .e-grid .e-emptyrow {
  color: #030303 !important;
}
.activity-page .grid-edit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}
.activity-page .grid-edit .icon {
  width: 1.8rem;
  height: 1.8rem;
  fill: #030303;
}
.activity-page .grid-checkbox {
  width: 1.5rem;
  height: 1.5rem;
  margin: 0;
  vertical-align: middle;
}

.design-management-tab .configuration {
  position: unset;
}
.design-management-tab .configuration .tab-container {
  border-bottom: none;
  margin: unset;
}

.org-settings-tab {
  container-type: inline-size;
  position: relative;
  padding-top: 5rem;
}
.org-settings-tab__card {
  display: flex;
  flex-direction: column;
  width: fit-content;
  background-color: white;
  border: 1px solid #ededed;
  box-shadow: 2px 2px 2px 1px #ededed;
  margin: 0 0 1.5rem 0;
}
.org-settings-tab__card-header {
  display: flex;
  align-items: center;
  padding: 1.25rem 1.4rem;
  background: #2c2c46;
  color: #fafefd;
}
.org-settings-tab__title {
  font-weight: 700;
  color: #fafefd;
  margin: 0;
  letter-spacing: 0.01em;
}
.org-settings-tab__body {
  padding: 0;
}
.org-settings-tab__row {
  display: grid;
  grid-template-columns: max-content minmax(460px, 1fr);
  align-items: start;
  gap: 5rem;
  padding: 1.6rem 1.6rem 0 1.6rem;
  min-height: 6rem;
  border-bottom: 1px solid #ededed;
}
.org-settings-tab__row:last-child {
  border-bottom: none;
}
.org-settings-tab__row-label-cell {
  min-width: 0;
}
.org-settings-tab__row-label {
  font-weight: 700;
  display: block;
}
.org-settings-tab__row-control {
  min-width: 0;
}
.org-settings-tab__rounding-display {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.org-settings-tab__rounding-display-value {
  font-weight: 600;
}
.org-settings-tab__rounding-display-desc {
  color: #8e8e8e;
}
.org-settings-tab__radio-group {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.org-settings-tab__radio {
  display: flex;
  align-items: flex-start;
  padding: 0.55rem 0.85rem;
  border: 1px solid #d0d0d0;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.12s, box-shadow 0.12s;
  flex: 1 1 0;
  min-width: 180px;
}
.org-settings-tab__radio:hover {
  border-color: #4a9bd2;
}
.org-settings-tab__radio input[type=radio] {
  margin: 0.15rem 0.6rem 0 0;
  accent-color: #2383bc;
  flex-shrink: 0;
}
.org-settings-tab__radio:has(input:checked) {
  border-color: #2383bc;
  box-shadow: 0 0 0 1px #2383bc;
}
.org-settings-tab__radio-body {
  line-height: 1.25;
  min-width: 0;
}
.org-settings-tab__radio-title {
  font-weight: 600;
  display: block;
}
.org-settings-tab__radio-desc {
  color: #8e8e8e;
}
.org-settings-tab__footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem 1.6rem;
  border-top: 1px solid #ededed;
  background: #f0f0f0;
}
.org-settings-tab__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  min-width: 6rem;
}

@container (max-width: 720px) {
  .org-settings-tab__row {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .org-settings-tab__actions {
    justify-content: flex-end;
  }
}
.configuration.-in_house_remakes .content-container {
  overflow-y: auto;
  margin-top: 5rem;
  padding-bottom: 1.6rem;
}

.in-house-remakes-tab {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(47rem, 1fr));
  gap: 1.6rem;
  align-items: stretch;
  max-width: 160rem;
}
.in-house-remakes-tab__row {
  display: grid;
  grid-template-columns: 10rem minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
  padding: 1.3rem 1.4rem;
  border-bottom: 1px solid var(--border-divider);
}
.in-house-remakes-tab__row:last-child {
  border-bottom: 0;
}
.in-house-remakes-tab__row-label {
  font-size: var(--font-size-label);
  font-weight: 700;
  padding-top: 0.35rem;
}
.in-house-remakes-tab__row-control {
  min-width: 0;
}
.in-house-remakes-tab .indago-chip-select__list {
  max-height: 16.5rem;
}

@media (max-width: 64rem) {
  .in-house-remakes-tab__row {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
}
.activity-group-dialog {
  min-width: 52rem;
}
.activity-group-dialog textarea {
  margin: 0;
  resize: none;
  width: 100%;
}
.activity-group-dialog .generalForm {
  display: grid;
  grid-template-columns: fit-content(10rem) fit-content(36rem);
  grid-gap: 2rem 3rem;
}
.activity-group-dialog .generalForm .widefield input {
  width: unset;
}
.activity-group-dialog .generalForm .-disabled {
  color: #bebebe;
}
.activity-group-dialog .generalForm .formGroup {
  display: flex;
  flex-direction: column;
}
.activity-group-dialog .generalForm .formGroup .activeField {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.activity-group-dialog .generalForm .formGroup .activeField label {
  border: none;
}
.activity-group-dialog .generalForm .formGroup .activeField input[type=checkbox] {
  width: fit-content;
}
.activity-group-dialog .generalForm .formGroup .fieldtitle__bold {
  line-height: 2rem;
  font-size: 1.4rem;
}
.activity-group-dialog .generalForm .formGroup__auditDetails {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 3rem;
  color: white;
  background: #2c2c46;
  padding: 2rem 2rem;
  font-weight: 700;
}
.activity-group-dialog .generalForm .formGroup__auditDetails .detail {
  color: #389eda;
}
.activity-group-dialog .generalForm .formGroup__auditDetails div {
  display: flex;
  flex-direction: column;
}
.activity-group-dialog .generalForm .formGroup__auditDetails div span {
  align-self: baseline;
}
.activity-group-dialog .generalForm .formGroup__auditDetails label.fieldtitle, .activity-group-dialog .generalForm .formGroup__auditDetails indago-select-options.widefield > label {
  border-bottom: 1px solid #fafefd;
  max-width: 15rem;
  margin-bottom: 0.7rem;
  align-self: baseline;
}
@media screen and (max-width: 1000px) {
  .activity-group-dialog .generalForm .formGroup__auditDetails {
    max-width: 15rem;
  }
}
.activity-group-dialog .generalForm .formGroup__entityDetails {
  display: grid;
  grid-template-columns: 1fr 2fr;
  padding: 2rem 2rem;
  grid-column-gap: 3rem;
}
.activity-group-dialog .generalForm .formGroup__entityDetails .fieldtitle, .activity-group-dialog .generalForm .formGroup__entityDetails indago-select-options.widefield > label {
  grid-column: 1;
}
.activity-group-dialog .generalForm .formGroup__entityDetails .fieldtitle :nth-child(1), .activity-group-dialog .generalForm .formGroup__entityDetails indago-select-options.widefield > label :nth-child(1) {
  grid-template-columns: -1;
}
.activity-group-dialog .generalForm .formGroup__entityDetails .fieldtitle:nth-child(1), .activity-group-dialog .generalForm .formGroup__entityDetails indago-select-options.widefield > label:nth-child(1) {
  grid-column: -1;
}
.activity-group-dialog .generalForm .formGroup__entityDetails span:first-of-type {
  min-width: 15rem;
}
.activity-group-dialog .generalForm .formGroup__entityDetails span.description {
  overflow-y: auto;
  max-height: 5rem;
  grid-row: 2/4;
  grid-column: -1;
  max-width: 40rem;
  min-width: 20rem;
  height: 100%;
}

.activity-dialog {
  min-width: 60rem;
}
.activity-dialog textarea {
  margin: 0;
  resize: none;
  width: 100%;
}
.activity-dialog select {
  width: 100%;
}
.activity-dialog .generalForm {
  display: grid;
  grid-template-columns: fit-content(10rem) fit-content(36rem);
  grid-gap: 2rem 3rem;
}
.activity-dialog .generalForm .widefield input {
  width: unset;
}
.activity-dialog .generalForm .-disabled {
  color: #bebebe;
}
.activity-dialog .generalForm .formGroup {
  display: flex;
  flex-direction: column;
}
.activity-dialog .generalForm .formGroup indago-select-options {
  margin: 0;
}
.activity-dialog .generalForm .formGroup .activeField {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.activity-dialog .generalForm .formGroup .activeField label {
  border: none;
}
.activity-dialog .generalForm .formGroup .activeField input[type=checkbox] {
  width: fit-content;
}
.activity-dialog .generalForm .formGroup .fieldtitle__bold {
  line-height: 2rem;
  font-size: 1.4rem;
}
.activity-dialog .generalForm .formGroup__auditDetails {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 3rem;
  color: white;
  background: #2c2c46;
  padding: 2rem 2rem;
  font-weight: 700;
}
.activity-dialog .generalForm .formGroup__auditDetails .detail {
  color: #389eda;
}
.activity-dialog .generalForm .formGroup__auditDetails div {
  display: flex;
  flex-direction: column;
}
.activity-dialog .generalForm .formGroup__auditDetails div span {
  align-self: baseline;
}
.activity-dialog .generalForm .formGroup__auditDetails label.fieldtitle, .activity-dialog .generalForm .formGroup__auditDetails indago-select-options.widefield > label {
  border-bottom: 1px solid #fafefd;
  max-width: 15rem;
  margin-bottom: 0.7rem;
  align-self: baseline;
}
@media screen and (max-width: 1000px) {
  .activity-dialog .generalForm .formGroup__auditDetails {
    max-width: 15rem;
  }
}
.activity-dialog .generalForm .formGroup__entityDetails {
  display: grid;
  grid-template-columns: 1fr 2fr;
  padding: 2rem 2rem;
  grid-column-gap: 3rem;
}
.activity-dialog .generalForm .formGroup__entityDetails .fieldtitle, .activity-dialog .generalForm .formGroup__entityDetails indago-select-options.widefield > label {
  grid-column: 1;
}
.activity-dialog .generalForm .formGroup__entityDetails .fieldtitle :nth-child(1), .activity-dialog .generalForm .formGroup__entityDetails indago-select-options.widefield > label :nth-child(1) {
  grid-template-columns: -1;
}
.activity-dialog .generalForm .formGroup__entityDetails .fieldtitle:nth-child(1), .activity-dialog .generalForm .formGroup__entityDetails indago-select-options.widefield > label:nth-child(1) {
  grid-column: -1;
}
.activity-dialog .generalForm .formGroup__entityDetails span:first-of-type {
  min-width: 15rem;
}
.activity-dialog .generalForm .formGroup__entityDetails span.description {
  overflow-y: auto;
  max-height: 5rem;
  grid-row: 2/4;
  grid-column: -1;
  max-width: 40rem;
  min-width: 20rem;
  height: 100%;
}
.activity-dialog .generalForm .checkbox-row {
  display: flex;
  flex-direction: inherit;
  gap: 4rem;
}

ux-dialog.branch-dialog {
  display: block;
  width: min(80rem, calc(100vw - 4rem));
  padding: 0;
  border: 0;
  background: var(--surface-card);
}

.branch-dialog .validation-container.has-error .fieldtitle, .branch-dialog .validation-container.has-error indago-select-options.widefield > label {
  color: var(--content-danger);
}
.branch-dialog .validation-container.has-error .validation-control {
  border-color: var(--content-danger);
}
.branch-dialog .validation-message {
  color: var(--content-danger);
  background-color: var(--surface-danger-subtle);
  border-color: var(--content-danger);
}
.branch-dialog__body {
  background: var(--surface-sunken);
  padding: 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 25rem;
  gap: 2rem;
  align-items: start;
}
.branch-dialog__body.-no-audit {
  grid-template-columns: minmax(0, 1fr);
}
.branch-dialog__fields {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  min-width: 0;
}
.branch-dialog__fields .fieldinput {
  width: 100%;
  max-width: 27rem;
}
.branch-dialog__fields .fieldinput:disabled {
  color: var(--content-text-subtle);
  background: #ededed;
  box-shadow: none;
}
.branch-dialog__fields .form-field {
  gap: 0.45rem;
}
.branch-dialog__fields .fieldinput[type=number] {
  padding: 0.8rem;
  height: 2rem;
  border: 1px solid #d0d0d0;
  box-shadow: 0px 3px 3px -3px rgba(0, 0, 0, 0.45);
  background: whitesmoke;
  transition: background 0.2s linear;
}
.branch-dialog__fields .fieldinput[type=number]:focus {
  outline: none;
  background-color: #fff;
}
.branch-dialog__fields .fieldinput.-narrow {
  max-width: 12rem;
}

.branch-dialog .checkrow {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.branch-dialog .checkrow input {
  width: 1.5rem;
  height: 1.5rem;
  margin: 0;
  accent-color: var(--content-accent);
}
.branch-dialog .checkrow input:disabled {
  color: var(--content-text-subtle);
  accent-color: var(--content-text-subtle);
}
.branch-dialog .checkrow label {
  font-size: var(--font-size-label);
  font-weight: 700;
}

.branch-dialog .fieldtitle, .branch-dialog indago-select-options.widefield > label {
  font-size: var(--font-size-label);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.branch-dialog .locknote {
  display: block;
  max-width: 27rem;
  color: var(--content-text);
  font-size: var(--font-size-info);
}

.branch-dialog .validation-container .locknote {
  margin-top: 0.6rem;
}

.branch-dialog .-lead-time-note,
.branch-dialog .-indicator-note {
  max-width: none;
  white-space: nowrap;
}

.branch-dialog .checkrow .lead-time-indicator {
  margin-left: 1.2rem;
}

/* The example must carry BOTH modifiers, and this is worth a note because it has now drifted from
 * the order row twice.
 *
 * The row pill gets its shape from `-reserved` (the box a participating screen reserves) and its
 * color from `-on`. The dialog has no screen to opt in, so it has to say `-reserved` explicitly.
 * Without it the example renders as a colored text run with no padding, no radius and no gap: the
 * right color in the wrong shape, which is a worse preview than none.
 *
 * The underlying problem is that this example is hand-written markup rather than the
 * <lead-time-indicator> element itself, so nothing keeps the two in step. Rendering the element
 * with a synthetic branch would fix the class, the icon, the date format and the tooltip in one
 * go. Left as a follow-up rather than done here. */
.branch-palette {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 1.2rem;
}
.branch-palette__box {
  width: 3.4rem;
  height: 2.6rem;
  padding: 0;
  border: 1px solid #8e8e8e;
  border-radius: 0.3rem;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}
.branch-palette__pop {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: repeat(5, 2.2rem);
  gap: 0.6rem;
  padding: 1.1rem;
  background: #fff;
  border: 1px solid #8e8e8e;
  border-radius: 0.4rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.26);
}
.branch-palette__swatch {
  width: 2.2rem;
  height: 2.2rem;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.22);
  border-radius: 0.3rem;
  cursor: pointer;
}
.branch-palette__swatch.-selected {
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #2c2c46;
}
.branch-palette__swatch:focus-visible {
  outline: 2px dashed #2c2c46;
  outline-offset: 3px;
}

.quantity-selector {
  display: flex;
  align-items: center;
  border-radius: 0.5rem;
  box-shadow: -2px 4px 7px rgba(0, 0, 0, 0.3);
}
.quantity-selector__button {
  background: #2383bc;
  border: 1px #2383bc solid;
  padding: 0.5rem;
  cursor: pointer;
  font-size: 1.25rem;
}
.quantity-selector__button .icon {
  display: flex;
  fill: #fafefd;
}
.quantity-selector__button:disabled {
  background-color: #b9ddf2;
  cursor: not-allowed;
}
.quantity-selector button:first-child {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.quantity-selector button:last-child {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.quantity-selector__button:focus {
  border: 1px #2383bc solid;
}
.quantity-selector .label {
  padding: 0.4rem;
}
.quantity-selector__input {
  width: 4rem;
  text-align: center;
  border: 1px solid #ccc;
  margin: 0;
  padding: 0.25rem;
  border-top: 1px solid #2383bc !important;
  border-bottom: 1px solid #2383bc !important;
  background-color: #fafefd !important;
  font-size: 2rem;
  font-weight: 700;
  box-shadow: none !important;
  min-width: 5rem;
}

.popover-portal {
  position: relative;
}
.popover-portal__content {
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  font-size: 1.4rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
}
.popover-portal__content footer {
  margin-bottom: 0;
}
.popover-portal__content ul,
.popover-portal__content li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.popover-portal__content .popover-portal__arrow {
  width: 12px;
  height: 12px;
  background: #2c2c46;
  position: absolute;
  box-shadow: -1px -1px 1px rgba(0, 0, 0, 0.1);
  z-index: -1;
}
.popover-portal__content.portal-arrow--left-center {
  border-left-color: #2c2c46;
}
.popover-portal__content.portal-arrow--left-center .popover-portal__arrow {
  top: calc(50% - 8px);
  transform: translateX(-50%) rotate(45deg);
}
.popover-portal__content.portal-arrow--left-top {
  transform: translateY(-18px);
  border-left-color: #2c2c46;
}
.popover-portal__content.portal-arrow--left-top .popover-portal__arrow {
  top: 10px;
  transform: translateX(-50%) rotate(45deg);
}
.popover-portal__content.portal-arrow--left-bottom {
  transform: translateY(18px);
  border-left-color: #2c2c46;
}
.popover-portal__content.portal-arrow--left-bottom .popover-portal__arrow {
  top: calc(100% - 26px);
  transform: translateX(-50%) rotate(45deg);
}
.popover-portal__content.portal-arrow--right-center {
  border-right-color: #2c2c46;
}
.popover-portal__content.portal-arrow--right-center .popover-portal__arrow {
  top: calc(50% - 8px);
  right: 0;
  transform: translateX(50%) rotate(45deg);
}
.popover-portal__content.portal-arrow--right-top {
  transform: translateY(-18px);
  border-right-color: #2c2c46;
}
.popover-portal__content.portal-arrow--right-top .popover-portal__arrow {
  top: 10px;
  right: 0;
  transform: translateX(50%) rotate(45deg);
}
.popover-portal__content.portal-arrow--right-bottom {
  transform: translateY(18px);
  border-right-color: #2c2c46;
}
.popover-portal__content.portal-arrow--right-bottom .popover-portal__arrow {
  top: calc(100% - 26px);
  right: 0;
  transform: translateX(50%) rotate(45deg);
}
.popover-portal__content.portal-arrow--top-left {
  transform: translateX(-18px);
  border-top-color: #2c2c46;
}
.popover-portal__content.portal-arrow--top-left .popover-portal__arrow {
  left: 12px;
  top: 0;
  transform: translateY(-50%) rotate(45deg);
}
.popover-portal__content.portal-arrow--top-center {
  border-top-color: #2c2c46;
}
.popover-portal__content.portal-arrow--top-center .popover-portal__arrow {
  left: calc(50% - 5px);
  top: 0;
  transform: translateY(-50%) rotate(45deg);
}
.popover-portal__content.portal-arrow--top-right {
  transform: translateX(18px);
  border-top-color: #2c2c46;
}
.popover-portal__content.portal-arrow--top-right .popover-portal__arrow {
  right: 10px;
  top: 0;
  transform: translateY(-50%) rotate(45deg);
}
.popover-portal__content.portal-arrow--bottom-left {
  transform: translateX(-18px);
  border-bottom-color: #2c2c46;
}
.popover-portal__content.portal-arrow--bottom-left .popover-portal__arrow {
  left: 10px;
  bottom: 0;
  transform: translateY(50%) rotate(45deg);
}
.popover-portal__content.portal-arrow--bottom-center {
  border-bottom-color: #2c2c46;
}
.popover-portal__content.portal-arrow--bottom-center .popover-portal__arrow {
  left: calc(50% - 6px);
  bottom: 0;
  transform: translateY(50%) rotate(45deg);
}
.popover-portal__content.portal-arrow--bottom-right {
  transform: translateX(18px);
  border-bottom-color: #2c2c46;
}
.popover-portal__content.portal-arrow--bottom-right .popover-portal__arrow {
  right: 10px;
  bottom: 0;
  transform: translateY(50%) rotate(45deg);
}
.popover-portal__content--action-menu {
  background-color: #2c2c46;
  min-width: 20rem;
  right: 10px;
  padding: 0.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  font-family: "Source Sans Pro", sans-serif;
}
.popover-portal__content--action-menu .item {
  color: #fff;
  display: block;
  white-space: nowrap;
  cursor: pointer;
  font-weight: 600;
  line-height: 4rem;
  flex: 1;
  font-size: 1.4rem;
}
.popover-portal__content--action-menu .item .icon {
  fill: #2383bc;
  vertical-align: sub;
  margin-right: 0.5rem;
  width: 1.5rem;
  height: 1.5rem;
}
.popover-portal__content--action-menu .item:hover {
  color: #b9ddf2;
}
.popover-portal__content--action-menu .item:hover .icon {
  fill: #389eda;
}
.popover-portal__title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
}

.popover-portal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: transparent;
  pointer-events: all;
  z-index: -1;
}

.note-popover {
  width: 33rem;
  font-weight: 400;
  background-color: #2c2c46;
  border-radius: 0.4rem;
  color: #b9b8d7;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  border-top-color: #2c2c46;
}
.note-popover textarea {
  margin: 1rem 1.5rem 0.5rem 1.5rem;
  width: calc(100% - 3rem);
  min-height: 7rem;
}
.note-popover footer {
  font-size: 1.4rem;
}

.action-menu-popover {
  background-color: #2c2c46;
  border-color: #2c2c46;
  width: -moz-fit-content;
  width: fit-content;
  right: 10px;
  padding: 0.5rem 1.5rem;
  display: flex;
  flex-direction: column;
}
.action-menu-popover .item {
  color: #fff;
  display: block;
  white-space: nowrap;
  cursor: pointer;
  font-weight: 600;
  line-height: 4rem;
  font-size: 1.4rem;
}
.action-menu-popover .item .icon {
  fill: var(--action-menu-item-icon-color, #2383bc);
  color: var(--action-menu-item-icon-color, #2383bc);
  vertical-align: sub;
  margin-right: 0.5rem;
  width: 1.5rem;
  height: 1.5rem;
}

.popover-portal__content--document-description {
  border: none;
}
.popover-portal__content--document-description button:focus {
  background-color: transparent;
}

.cutout-types-table {
  overflow-y: auto;
  display: block;
  height: calc(100vh - 20rem);
}
.cutout-types-table .indago-table__head th:nth-child(1),
.cutout-types-table .indago-table__body td:nth-child(1),
.cutout-types-table .indago-table__head th:nth-child(2),
.cutout-types-table .indago-table__body td:nth-child(2) {
  width: 47rem;
}
.cutout-types-table .indago-table__body td:nth-child(1) .indago-table__cell,
.cutout-types-table .indago-table__body td:nth-child(2) .indago-table__cell {
  justify-self: flex-start;
  width: 100%;
}
.cutout-types-table .indago-table__head th:nth-child(3) .indago-table__cell,
.cutout-types-table .indago-table__head th:nth-child(4) .indago-table__cell {
  justify-content: center;
}
.cutout-types-table .indago-table__head th:nth-child(3),
.cutout-types-table .indago-table__body td:nth-child(3),
.cutout-types-table .indago-table__head th:nth-child(4),
.cutout-types-table .indago-table__body td:nth-child(4) {
  width: 7rem;
}
.cutout-types-table .indago-table__head th:nth-child(3) input[type=checkbox],
.cutout-types-table .indago-table__body td:nth-child(3) input[type=checkbox],
.cutout-types-table .indago-table__head th:nth-child(4) input[type=checkbox],
.cutout-types-table .indago-table__body td:nth-child(4) input[type=checkbox] {
  width: 1.5rem;
  height: 1.5rem;
}
.cutout-types-table .indago-table__head th:nth-child(5),
.cutout-types-table .indago-table__body td:nth-child(5) {
  width: 6rem;
}
.cutout-types-table .indago-table__body td:nth-child(3) .indago-table__cell,
.cutout-types-table .indago-table__body td:nth-child(4) .indago-table__cell {
  justify-self: center;
}
.cutout-types-table .grid-cell__user-actions {
  display: flex;
}

.organization-selector {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  height: 100vh;
  width: calc(50% - 8rem);
  padding-left: 8rem;
}
.organization-selector .organization-list {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-self: center;
}
.organization-selector .organization-list__title {
  margin: 1.6rem 0;
  font-size: 3rem;
}
.organization-selector .organization-list__grid {
  max-height: 60vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
  gap: 1.6rem;
  padding: 1.6rem 1.6rem 1.6rem 0;
  margin-bottom: 1.6rem;
  min-height: 10rem;
}
.organization-selector .organization-list__card {
  height: 10rem;
  width: 20rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background-color: #2c2c46;
  color: #fafefd;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  box-shadow: 3px 3px 5px 1px #8e8e8e;
  text-align: center;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
  font-size: 1.5rem;
}
.organization-selector .organization-list__card > section.content {
  justify-content: center;
  padding: 0 0 0 0;
}
.organization-selector .organization-list__card > section.content > div {
  padding: 1.6rem;
}
.organization-selector .organization-list__card:hover, .organization-selector .organization-list__card:focus {
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.organization-selector .organization-list button {
  width: fit-content;
}
.organization-selector__footer {
  flex-shrink: 0;
  font-size: 12px;
  color: darkgray;
  padding-bottom: 6rem;
}

production-order-item {
  display: contents;
}

.production-order-item {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: subgrid;
  grid-column: 1/-1;
  cursor: pointer;
}
.production-order-item__row {
  display: grid;
  grid-template-columns: var(--poi-grid-columns);
  height: 100%;
  grid-auto-flow: column;
  border: 1px solid #e0e0e0;
}
.production-order-item indago-accordion-panel {
  grid-column: 1/-1;
  padding-left: 2.2rem;
  overflow-anchor: none;
}
.production-order-item__panel {
  margin-left: 0.6rem;
  background-color: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 1;
}
.production-order-item__panel-content {
  width: 100%;
}
.production-order-item__row {
  grid-template-areas: "details summary route actions";
  grid-column-gap: 0.6rem;
  grid-row-gap: 0;
  background-color: white;
  display: grid;
  grid-template-columns: subgrid;
  grid-column: 1/-1;
  z-index: 2;
}
.production-order-item__row > * {
  min-width: 0;
}
.production-order-item__row--on-hold {
  border: 1px solid #f6b4c8;
  background: #fdf4f7;
}
.production-order-item__row--is-directional {
  border: 1px solid #ffbb4d;
  background: #fff6e8;
}
.production-order-item__row:hover {
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.25);
}
.production-order-item__cell--content {
  display: flex;
  align-items: center;
  min-height: 100%;
}
.production-order-item__cell--summary {
  grid-area: summary;
  height: 100%;
}
.production-order-item__cell--actions {
  display: flex;
  grid-area: actions;
  padding: 0 1.6rem;
  gap: 1.6rem;
  align-items: center;
}
.production-order-item__cell--actions action-menu {
  display: flex;
}
.production-order-item__cell action-menu-item svg.icon {
  margin: 0;
}
.production-order-item__details-btn {
  grid-area: details;
  background-color: #222236;
  cursor: pointer;
  line-height: 0;
  width: 2.2rem;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.production-order-item__icon--expand .icon, .production-order-item__icon--collapse .icon {
  fill: #fff;
  width: 1rem;
  height: 1rem;
  margin: 0;
}
.production-order-item__expand {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
.production-order-item__expand .icon {
  width: 1.5rem;
  height: 1.5rem;
  fill: #2383bc;
}
.production-order-item__expand .expand--placeholder {
  cursor: default;
}
.production-order-item__expand .expand--placeholder .icon {
  visibility: hidden;
}
@media (max-width: 1865px) {
  .production-order-item__row {
    grid-template-columns: 2.2rem 1fr auto;
    grid-template-rows: auto auto auto;
    grid-template-areas: "details summary actions" "details summary actions" "details route route";
    grid-auto-flow: row;
    align-items: start;
    gap: 0 0;
  }
  .production-order-item__cell--content {
    margin: 0.5rem 1.6rem 2.4rem 1.6rem;
  }
  .production-order-item__cell--actions {
    align-items: flex-start;
    padding-top: 1.6rem;
  }
}

.production-order-summary {
  min-width: 0;
  min-height: 4.7rem;
  display: flex;
  gap: 1.2rem;
  align-items: center;
  overflow: hidden;
  flex-wrap: wrap;
  line-height: 1.6rem;
}
.production-order-summary .production-order-summary__order-attributes .icon {
  vertical-align: sub;
  width: 1.5rem;
  height: 1.5rem;
}
.production-order-summary .production-order-summary__note .icon {
  padding: 0.5rem;
}
.production-order-summary__note .toggle-notes svg.icon {
  height: 1.7rem;
  width: 1.7rem;
}
.production-order-summary__cell {
  display: flex;
  justify-items: center;
  gap: 0.6rem;
}
.production-order-summary__cell .icon {
  vertical-align: sub;
  width: 1.8rem;
  height: 1.8rem;
}
@media (max-width: 1865px) {
  .production-order-summary__cell--order-number {
    margin-left: 1.2rem;
  }
}
.production-order-summary__cell--flag {
  min-width: 2.5rem;
  display: flex;
  align-self: center;
  justify-content: center;
}
.production-order-summary__cell--flag .rush svg.icon {
  width: 2rem;
  height: 2rem;
}
.production-order-summary__cell--inventoryStatus {
  flex: 0 0 7.8rem;
  white-space: nowrap;
}
.production-order-summary__cell--sqFt {
  flex: 0 0 6.9rem;
  min-width: 10rem;
}
.production-order-summary__cell--completion-date {
  flex: 0 0 7.3rem;
}
.production-order-summary__cell--completion-date.-reserved {
  flex: 0 0 9.7rem;
}
.production-order-summary__cell--branch {
  flex: 0 0 9.3rem;
}
.production-order-summary__cell--icons {
  gap: 0;
}
.production-order-summary__cell--onHold {
  flex: 0 0 auto;
  min-width: 1.5rem;
}
.production-order-summary__cell--onHold .in-house-remake-icon {
  flex: 0 0 auto;
  width: 1.8rem;
  height: 1.8rem;
  vertical-align: sub;
  fill: var(--content-row-icon-warning);
  color: var(--content-row-icon-warning);
}
.production-order-summary__cell--color {
  flex: 0 0 6rem;
  flex-wrap: wrap;
  gap: 0;
}
.production-order-summary__cell--color .icon {
  vertical-align: sub;
  margin-right: 0.3rem;
  width: 1.5rem;
  height: 1.5rem;
}
.production-order-summary__cell:not(.production-order-summary__cell--order-number) .icon {
  height: 1.5rem;
  width: 1.5rem;
}
.production-order-summary__color-edge-combos {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  width: auto;
  overflow: visible;
  align-items: flex-start;
  padding: 0.4rem 0;
}
.production-order-summary__color-edge-combo {
  display: flex;
  flex-direction: column;
  min-width: 0;
  max-width: 100%;
  overflow: visible;
  justify-content: center;
}
.production-order-summary__color-edge-line {
  display: block;
  overflow-wrap: anywhere;
  white-space: normal;
  line-height: 1.4rem;
}
@media (max-width: 1865px) {
  .production-order-summary {
    flex-wrap: nowrap;
    padding: 0 1.6rem;
  }
  .production-order-summary__cell {
    margin-left: 0.6rem;
  }
  .production-order-summary__color-edge-combos {
    flex: 1 0 100%;
    width: 100%;
    flex-direction: column;
  }
  .production-order-summary__color-edge-combo {
    width: 100%;
    display: inline-block;
    line-height: 1.6rem;
  }
  .production-order-summary__color-edge-line {
    display: inline;
  }
  .production-order-summary__color-edge-line--edge::before {
    content: " - ";
  }
}

@media (max-width: 1865px) {
  .-actions indago-popover {
    width: fit-content !important;
    flex-direction: column !important;
  }
}
indago-accordion-panel {
  display: block;
  overflow-anchor: none;
}

.indago-accordion__content {
  overflow: hidden;
  height: 0;
  opacity: 0;
  will-change: height, opacity;
  transition: height var(--accordion-duration, 260ms) var(--accordion-ease, cubic-bezier(0.25, 0.8, 0.25, 1)), opacity var(--accordion-duration, 260ms) var(--accordion-ease, cubic-bezier(0.25, 0.8, 0.25, 1));
}
.indago-accordion__content--open {
  opacity: 1;
}
.indago-accordion__content--open:not(.indago-accordion__content--animating) {
  height: auto;
  overflow: visible;
}
.indago-accordion__content--animating {
  overflow: hidden;
}

.indago-accordion__content-inner {
  display: flow-root;
}

.indago-export-data__label {
  display: inline-grid;
}
.indago-export-data__label-option {
  grid-area: 1/1;
  white-space: nowrap;
}
.indago-export-data__label-option.-isHidden {
  visibility: hidden;
}

.indago-export-data--generating {
  position: relative;
  overflow: hidden;
}
.indago-export-data--generating[disabled] {
  opacity: 1;
  cursor: progress;
}
.indago-export-data--generating::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(115deg, rgba(44, 44, 70, 0) 25%, rgba(44, 44, 70, 0.12) 50%, rgba(44, 44, 70, 0) 75%);
  transform: translateX(-120%) skewX(-18deg);
  animation: indago-export-data-wave 1.4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes indago-export-data-wave {
  from {
    transform: translateX(-120%) skewX(-18deg);
  }
  to {
    transform: translateX(120%) skewX(-18deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .indago-export-data--generating::after {
    animation: none;
    transform: none;
    background: rgba(44, 44, 70, 0.06);
  }

  .indago-export-data__label-option.-isBusy::after {
    content: "...";
  }
}
.view-production-schedule .order-list {
  display: grid;
  grid-template-columns: 2.2rem auto minmax(45rem, 1fr) auto;
  row-gap: 0.2rem;
  overflow-anchor: none;
}

.workcenter-details {
  background-color: #2c2c46;
  color: #b9b8d7;
  min-width: 25rem;
  border-color: #2c2c46;
}
.workcenter-details button {
  color: inherit;
  line-height: inherit;
  font-weight: inherit;
  width: fit-content;
  align-self: center;
}
.workcenter-details .skipped-workcenter {
  display: flex;
  flex-direction: column;
  justify-self: center;
  padding: 1.6rem;
}
.workcenter-details .skipped-workcenter svg {
  justify-self: center;
  align-self: center;
  width: 3rem;
  height: 3rem;
  fill: #b9b8d7;
}
.workcenter-details .skipped-workcenter btn {
  width: fit-content;
  align-self: center;
}
.workcenter-details .workcenter-states {
  background-color: inherit;
  color: inherit;
  line-height: 2.7rem;
  font-weight: 600;
  display: flex;
  flex-direction: column;
}
.workcenter-details__header {
  background: #1a1a2a;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #535385;
  font-size: 1.5rem;
  border-radius: 0.4rem 0.4rem 0 0;
  line-height: 3.2rem;
  display: flex;
  justify-content: space-between;
}
.workcenter-details__title {
  text-transform: uppercase;
  font-weight: 700;
}
.workcenter-details__orderNumber {
  font-weight: 600;
}
.workcenter-details .workcenter-states {
  padding: 0.3rem 1.5rem;
  display: grid;
  grid-template-columns: max-content max-content max-content;
  column-gap: 1.6rem;
  align-items: center;
}
.workcenter-details .workcenter-states btn {
  cursor: pointer;
}
.workcenter-details .popover.--workcenterAsset div:nth-child(2) {
  display: flex;
  justify-content: space-between;
  margin-top: 0.8rem;
}

work-center-route {
  grid-area: route;
  flex-grow: 1;
}

.work-center-route {
  flex: 1 1 auto;
  position: relative;
  grid-area: route;
}
.work-center-route__item {
  flex: 0 0 auto;
}
.work-center-route__item .plus::after {
  top: 1.3rem;
}
@media (max-width: 1865px) {
  .work-center-route__item .plus::after {
    top: 1.6rem;
  }
}
.work-center-route__workcenter-list {
  display: flex;
  width: 100%;
  margin: 0.5rem 0;
  padding: 0.3rem 0;
  padding-right: 1px;
  overflow: hidden;
  gap: 1.6rem;
}
.work-center-route__workcenter-list > * {
  flex-shrink: 0;
  min-width: 0;
  flex-grow: 1;
}
.work-center-route__workcenter-list.-fill > * {
  flex: 1 1 auto;
  min-width: 5.5rem;
}
.work-center-route__scrollArrow {
  position: absolute;
  background: -moz-linear-gradient(left, white 0%, rgba(255, 255, 255, 0) 100%);
  background: -webkit-linear-gradient(left, white 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#00ffffff",GradientType=1 );
  top: 0;
  width: 8rem;
  height: 3rem;
  opacity: 0;
  visibility: hidden;
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
  transition: opacity 0.3s ease-in-out, visibility 0s linear 0.3s;
  z-index: 2;
  pointer-events: none;
}
.work-center-route__scrollArrow .arrowIcon {
  background: #2383bc;
  border-radius: 50%;
  width: 1.8rem;
  height: 1.8rem;
  transform: scaleX(-1);
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.7);
  pointer-events: auto;
}
.work-center-route__scrollArrow .arrowIcon .icon {
  fill: white;
  stroke: white;
  stroke-width: 4px;
  width: 0.8rem;
  height: 0.8rem;
  margin: 0.5rem;
}
@media (max-width: 1865px) {
  .work-center-route__scrollArrow .arrowIcon .icon {
    width: 1rem;
    height: 1rem;
    margin: 0.7rem;
  }
}
@media (max-width: 1865px) {
  .work-center-route__scrollArrow .arrowIcon {
    width: 2.3rem;
    height: 2.3rem;
  }
}
.work-center-route__scrollArrow--left {
  left: 0;
}
.work-center-route__scrollArrow--right {
  right: 0;
  transform: scaleX(-1);
}
.-hasMoreRight .work-center-route__scrollArrow--right, .-hasMoreLeft .work-center-route__scrollArrow--left {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease-in-out, visibility 0s linear 0s;
  pointer-events: auto;
}
@media (max-width: 1865px) {
  .work-center-route__scrollArrow {
    height: 3.5rem;
  }
}

.order-item-piece-row__cell .work-center-route__scrollArrow .arrowIcon .icon {
  width: 1rem;
  height: 1rem;
}

@media (max-width: 1865px) {
  work-center-route {
    display: block;
    padding: 0 1.6rem;
  }
  work-center-route .work-center-route {
    width: auto;
  }
}

.work-center-route__item .state-list {
  margin: 0.5rem 1.8rem;
  cursor: pointer;
}
.work-center-route__item .state-list > .state {
  position: relative;
  padding-left: 1.4rem;
  line-height: 2.7rem;
  font-weight: 600;
  white-space: nowrap;
  text-align: left;
}
.work-center-route__item .state-list > .state:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  height: 7px;
  width: 7px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: rgba(185, 184, 215, 0.35);
}
.work-center-route__item .state-list > .state:after {
  position: absolute;
  content: "";
  bottom: -9px;
  left: 3px;
  height: 18px;
  width: 1px;
  background: rgba(185, 184, 215, 0.2);
}
.work-center-route__item .state-list > .state:last-child:after {
  display: none;
}
.work-center-route__item .state-list > .state.-active:before {
  background-color: white;
}
.work-center-route__item .state-list > .state.-active {
  color: white;
}
.work-center-route__item .state-list .datewrapper {
  display: inline-block;
  margin-left: 0.3rem;
}
.work-center-route__item .state-list .date {
  width: 10em;
  padding: 0;
  background: none;
  color: #389eda;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  box-shadow: none;
}
.work-center-route__item .state-list .date::-ms-clear {
  display: none;
}
.work-center-route__item .state-list .date.-noPermissions {
  color: white;
}
.work-center-route__item .state-list .date:focus {
  background: none;
}
.work-center-route__item .state-list .icon.-thinArrow {
  width: 0.8rem;
  height: 0.8rem;
  fill: #389eda;
  stroke: #389eda;
  stroke-width: 3px;
  transform: rotate(90deg);
  margin: 0px 0px 0px -3px;
}
.work-center-route__item .skipped-workcenter {
  text-align: center;
  min-height: 142px;
}
.work-center-route__item .skipped-workcenter > .icon {
  width: 3rem;
  height: 3rem;
  fill: #b9b8d7;
  margin-top: 1.5rem;
}
.work-center-route__item .skipped-workcenter > .message {
  margin: 0 0 1rem 0;
}
.work-center-route__item .-workcenterStates {
  min-width: 21.5rem;
}
.work-center-route__item .-workcenterStates .manufacturing-order {
  text-align: left;
}
.work-center-route__item .-workcenterStates .workcenter-state__row.-blocked .workcenter-state__row-btn {
  cursor: not-allowed;
  opacity: 0.5;
}

.popover-portal__content.-inactivePieceWc .workcenter-details__title {
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIGZpbGw9JyNiOWI4ZDcnIHZpZXdCb3g9JzAgLTMgMTYuNSAyNi42Jz48cGF0aCBkPSdNMTUuMSw4LjdoLTEuM1Y2YzAtMy4zLTIuNy02LTYtNnMtNiwyLjctNiw2djIuN0gwLjRDMC4yLDguNywwLDguOSwwLDkuMXYxMC44YzAsMSwwLjgsMS43LDEuNywxLjdoMTIuMWMxLDAsMS43LTAuOCwxLjctMS43VjkuMUMxNS41LDguOSwxNS4zLDguNywxNS4xLDguN3ogTTkuMSwxNy43YzAsMC4xLDAsMC4yLTAuMSwwLjNjLTAuMSwwLjEtMC4yLDAuMS0wLjMsMC4xSDYuOWMtMC4xLDAtMC4yLTAuMS0wLjMtMC4xYy0wLjEtMC4xLTAuMS0wLjItMC4xLTAuM2wwLjMtMi40QzYuMywxNC45LDYsMTQuNCw2LDEzLjljMC0xLDAuOC0xLjcsMS43LTEuN3MxLjcsMC44LDEuNywxLjdjMCwwLjYtMC4zLDEuMS0wLjcsMS40TDkuMSwxNy43eiBNMTEuMiw4LjdINC4zVjZjMC0xLjksMS41LTMuNCwzLjQtMy40czMuNCwxLjUsMy40LDMuNFY4Ljd6Jy8+PC9zdmc+") no-repeat;
  padding-left: 1.8rem;
  background-size: 1.5rem 1.9rem;
  background-position: left center;
}
.popover-portal__content.-inactivePieceWc .workcenter-state__label,
.popover-portal__content.-inactivePieceWc .workcenter-state__user-name,
.popover-portal__content.-inactivePieceWc .workcenter-state__date,
.popover-portal__content.-inactivePieceWc .workcenter-state__time,
.popover-portal__content.-inactivePieceWc .workcenter-state__divider,
.popover-portal__content.-inactivePieceWc .asset-name {
  color: rgba(185, 184, 215, 0.75);
}
.popover-portal__content.-inactivePieceWc footer.popover .asset-label {
  color: rgba(185, 184, 215, 0.75);
}
.popover-portal__content.-inactivePieceWc .workcenter-state__row--active .workcenter-state__label,
.popover-portal__content.-inactivePieceWc .workcenter-state__row--active .workcenter-state__user-name,
.popover-portal__content.-inactivePieceWc .workcenter-state__row--active .workcenter-state__date,
.popover-portal__content.-inactivePieceWc .workcenter-state__row--active .workcenter-state__time,
.popover-portal__content.-inactivePieceWc .workcenter-state__row--active .workcenter-state__divider,
.popover-portal__content.-inactivePieceWc .workcenter-state__row--active .workcenter-state__icon {
  filter: none;
}
.popover-portal__content.-inactivePieceWc .workcenter-state__row--active::before {
  background: rgba(185, 184, 215, 0.35) !important;
}
.popover-portal__content.-inactivePieceWc,
.popover-portal__content.-inactivePieceWc * {
  cursor: default;
}

/* Typography*/
/* Colors */
/* Overlays */
/* Sidebar */
/* Shell */
/* Icons */
/* Z-index Order of elements */
/* Standard border radius for rounded elements*/
/* Matches the design-pieces button radius rather than $radius */
.order-item-pieces-list {
  display: grid;
  grid-template-columns: 10rem 4rem auto auto minmax(auto, 1fr) 5.5rem;
  grid-template-areas: "piece-mark image sqft edge-combo route actions";
  grid-template-rows: auto;
  row-gap: 0.4rem;
}
@media (max-width: 1865px) {
  .order-item-pieces-list {
    padding: 0;
  }
}
.order-item-pieces-list > .order-item-piece-row:first-child {
  margin-top: 0.4rem;
}
.order-item-pieces-list .skeleton {
  display: grid;
  grid-template-columns: max-content max-content max-content 1fr 9.5rem;
  grid-column: 1/-1;
}
.order-item-pieces-list .order-item-piece-row {
  display: grid;
  grid-template-columns: subgrid;
  grid-template-areas: "piece-mark image sqft edge-combo route actions";
  grid-column: 1/-1;
  min-height: 4.7rem;
  border: 1px solid #e0e0e0;
  background-color: #f7f7f7;
  align-content: center;
  align-items: center;
  gap: 1.2rem;
}
@media (max-width: 1865px) {
  .order-item-pieces-list .order-item-piece-row {
    grid-template-columns: auto auto auto auto 1fr auto;
    grid-template-rows: auto auto;
    grid-template-areas: "piece-mark image sqft edge-combo . actions" "route route route route route route";
    grid-auto-flow: row;
    align-items: center;
    gap: 0.8rem 1.2rem;
    padding-top: 0;
    padding: 0.8rem;
    row-gap: 0;
  }
}
.order-item-pieces-list .order-item-piece-row--empty {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 4.8rem;
}
.order-item-pieces-list .order-item-piece-row--directional {
  border: 1px solid #ffbb4d;
  background: #fff6e8;
}
.order-item-pieces-list .order-item-piece-row--on-hold {
  border: 1px solid #f6b4c8;
  background: #fdf4f7;
}
.order-item-pieces-list .order-item-piece-row--inactive {
  background: #f0f0f0;
  border: 1px dashed #b4b4b4;
  color: #8b8f92;
}
.order-item-pieces-list .order-item-piece-row--inactive .order-item-piece-row__cell--piece-mark {
  font-weight: 400;
  font-size: 1.4rem;
  grid-column: 1/5;
  width: auto;
  max-width: 40rem;
  min-width: 0;
  min-height: 3rem;
  align-items: center;
}
.order-item-pieces-list .order-item-piece-row--inactive .order-item-piece-row__cell--piece-mark span {
  min-width: 0;
  white-space: normal;
}
.order-item-pieces-list .order-item-piece-row--inactive .work-center-route__workcenter-list {
  filter: grayscale(1);
  opacity: 0.7;
}
.order-item-pieces-list .order-item-piece-row--inactive .work-center-route__scrollArrow {
  background: linear-gradient(to right, #f0f0f0 0%, rgba(240, 240, 240, 0) 100%);
}
.order-item-pieces-list .order-item-piece-row--inactive .work-center .plus {
  visibility: hidden;
}
.order-item-pieces-list .order-item-piece-row--inactive .work-center {
  cursor: default;
}
.order-item-pieces-list .order-item-piece-row--inactive .work-center .icon.-lock {
  display: none;
}
.order-item-pieces-list .order-item-piece-row--inactive .work-center.-pending {
  background: rgba(230, 230, 230, 0.3);
  color: rgba(91, 91, 91, 0.4);
  border: 1px solid rgba(191, 191, 191, 0.3);
  box-shadow: none;
}
.order-item-pieces-list .order-item-piece-row--inactive .order-item-piece-row__cell--sqft {
  min-width: 0;
}
.order-item-pieces-list .order-item-piece-row__cell {
  text-align: left;
  display: flex;
  gap: 0.6rem;
}
@media (max-width: 1865px) {
  .order-item-pieces-list .order-item-piece-row__cell--content {
    margin: 0.5rem 1.6rem 2.4rem 1.6rem;
  }
}
.order-item-pieces-list .order-item-piece-row__cell .icon {
  width: 1.5rem;
  height: 1.5rem;
}
.order-item-pieces-list .order-item-piece-row__cell--piece-mark {
  padding-left: 0.6rem;
  width: 9.6rem;
  font-size: 1.7rem;
  grid-area: piece-mark;
  padding-left: 1.6rem;
}
.order-item-pieces-list .order-item-piece-row__cell--image {
  grid-area: image;
  align-items: center;
  justify-content: center;
}
.order-item-pieces-list .order-item-piece-row__cell--image [indago-icon=image] {
  cursor: pointer;
}
.order-item-pieces-list .order-item-piece-row__cell--image [indago-icon=image] svg.icon {
  width: 3rem;
  height: 3rem;
}
.order-item-pieces-list .order-item-piece-row__cell--image [indago-icon=image].-disabled {
  cursor: default;
}
.order-item-pieces-list .order-item-piece-row__cell--image [indago-icon=image].-disabled svg.icon {
  fill: #bebebe;
}
.order-item-pieces-list .order-item-piece-row__cell--sqft {
  text-wrap: nowrap;
  align-items: center;
  min-width: 13.5rem;
  grid-area: sqft;
}
.order-item-pieces-list .order-item-piece-row__cell--edge-combo {
  grid-area: "edge-combo";
  min-width: 0;
}
.order-item-pieces-list .order-item-piece-row__cell--action-menu {
  display: flex;
  gap: 1.6rem;
  grid-area: actions;
}
.order-item-pieces-list .order-item-piece-row__cell--colorEdgeCombo {
  grid-area: edge-combo;
  display: none;
  align-items: flex-start;
  padding: 0.8rem 0;
}
@media (max-width: 1865px) {
  .order-item-pieces-list .order-item-piece-row__cell--colorEdgeCombo {
    padding: 0;
  }
}
.order-item-pieces-list .order-item-piece-row__cell--route {
  overflow: hidden;
  grid-area: route;
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
@media (max-width: 1865px) {
  .order-item-pieces-list .order-item-piece-row__cell--route {
    padding-left: 1.6rem;
  }
  .order-item-pieces-list .order-item-piece-row__cell--route work-center-route {
    padding-left: 0;
  }
}
.order-item-pieces-list .order-item-piece-row__cell--route .missing-piece-icon,
.order-item-pieces-list .order-item-piece-row__cell--route .in-house-remake-icon {
  flex: 0 0 auto;
  width: 1.8rem;
  height: 1.8rem;
  fill: var(--content-row-icon-warning);
  color: var(--content-row-icon-warning);
}
.order-item-pieces-list .order-item-piece-row__cell--route .missing-piece-icon.-placeholder,
.order-item-pieces-list .order-item-piece-row__cell--route .in-house-remake-icon.-placeholder {
  visibility: hidden;
}
.order-item-pieces-list .order-item-piece-row__cell--route > div {
  position: relative;
  width: 100%;
  min-width: 0;
  flex: 1 1 auto;
}
@media (max-width: 1865px) {
  .order-item-pieces-list .order-item-piece-row__cell--route .work-center-route__workcenter-list {
    margin: 0;
  }
}
.order-item-pieces-list .order-item-piece-row__color-edge-combo {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  min-width: 0;
  overflow: visible;
  justify-content: flex-start;
}
.order-item-pieces-list .order-item-piece-row__color-edge-combo:has(.order-item-piece-row__color-edge-line--edge) .order-item-piece-row__color-edge-line--color::after {
  content: " -";
}
.order-item-pieces-list .order-item-piece-row__color-edge-line {
  display: inline;
  overflow-wrap: break-word;
  white-space: normal;
  line-height: 1.4rem;
  min-width: 0;
}
.order-item-pieces-list .order-item-piece-row__color-edge-line--edge {
  display: block;
}

.order-item-pieces-list--show-color-edge .order-item-piece-row .order-item-piece-row__cell--colorEdgeCombo {
  display: flex;
}
.order-item-pieces-list--show-color-edge .order-item-piece-row--inactive .order-item-piece-row__cell--piece-mark {
  grid-column: 1/4;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
@keyframes ihr-enter {
  from {
    opacity: 0;
    transform: translateY(-0.8rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes ihr-demote {
  from {
    background: transparent;
    color: inherit;
  }
  to {
    background: #f0f0f0;
    color: #8b8f92;
  }
}
@keyframes ihr-promote {
  from {
    background: #f0f0f0;
    color: #8b8f92;
  }
  to {
    background: transparent;
    color: inherit;
  }
}
.order-item-piece-row.-isEntering {
  animation: ihr-enter 260ms ease-out both;
}
.order-item-piece-row.-isDemoting {
  animation: ihr-demote 420ms ease-out both;
}
.order-item-piece-row.-isPromoting {
  animation: ihr-promote 420ms ease-out both;
}

@media (prefers-reduced-motion: reduce) {
  .order-item-piece-row.-isEntering, .order-item-piece-row.-isDemoting, .order-item-piece-row.-isPromoting {
    animation: none !important;
  }
}
/* Typography*/
/* Colors */
/* Overlays */
/* Sidebar */
/* Shell */
/* Icons */
/* Z-index Order of elements */
/* Standard border radius for rounded elements*/
/* Matches the design-pieces button radius rather than $radius */
.workcenter-state__row {
  position: relative;
  padding-left: 1.4rem !important;
  display: grid;
  grid-template-columns: subgrid;
  grid-column: 1/-1;
  align-items: center;
}
.workcenter-state__row--active .workcenter-state__label,
.workcenter-state__row--active .workcenter-state__user-name,
.workcenter-state__row--active .workcenter-state__date,
.workcenter-state__row--active .workcenter-state__time,
.workcenter-state__row--active .workcenter-state__divider {
  filter: brightness(1.65);
}
.workcenter-state__row--active .workcenter-state__icon {
  filter: brightness(1.65);
}
.workcenter-state__row--active::before {
  background: white !important;
}
.workcenter-state__row.-blocked .workcenter-state__row-btn {
  cursor: not-allowed;
  opacity: 0.5;
}
.workcenter-state__row-btn {
  text-align: left;
  gap: 0.4rem;
  align-items: center;
  font-weight: 700;
  display: flex;
  padding: 0;
}
.workcenter-state__row::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  height: 7px;
  width: 7px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: rgba(185, 184, 215, 0.35);
}
.workcenter-state__row::after {
  position: absolute;
  content: "";
  bottom: -12px;
  left: 3px;
  height: 23px;
  width: 1px;
  background: rgba(185, 184, 215, 0.2);
}
.workcenter-state__row:last-child::after {
  display: none;
}
.workcenter-state__row .workcenter-state__icon {
  width: 1.6rem;
  height: 0.8rem;
  fill: #2383bc;
  stroke: #2383bc;
  stroke-width: 3px;
  transform: rotate(90deg);
  margin: 0px 0px 0px -3px;
}
.workcenter-state__row .workcenter-state__date, .workcenter-state__row .workcenter-state__time, .workcenter-state__row .workcenter-state__divider {
  color: #2383bc;
  font-weight: 700;
}
.workcenter-state__row .workcenter-state__picker {
  min-width: 1.6rem;
}

.bulk-update-panel {
  z-index: 10002;
  position: fixed;
  top: 0;
  right: -42rem;
  width: 40rem;
  height: 100vh;
  height: 100dvh;
  max-height: 100dvh;
  display: flex;
  flex-direction: column;
  font-family: "Source Sans Pro", sans-serif;
  background-color: #f7f7f7;
  box-shadow: -4px 0 1.8rem rgba(3, 3, 3, 0.35);
  box-sizing: border-box;
  transition: right 0.3s ease-in-out;
}
.bulk-update-panel__overlay {
  z-index: 10001;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: rgba(3, 3, 3, 0.75);
  pointer-events: all;
}
.bulk-update-panel.-displayed {
  right: 0;
}
.bulk-update-panel__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 2rem 0.8rem 2rem;
  font-size: 1.8rem;
  font-weight: 700;
  flex-shrink: 0;
  color: #030303;
}
.bulk-update-panel__close {
  cursor: pointer;
}
.bulk-update-panel__close svg {
  width: 1.4rem;
  fill: #2383bc;
  display: block;
}
.bulk-update-panel__body {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  padding: 1.6rem 2rem;
  display: flex;
  flex-direction: column;
}
.bulk-update-panel__footer {
  display: flex;
  justify-content: flex-end;
  gap: 0.8rem;
  padding: 0.8rem 2rem 1.6rem 2rem;
  flex-shrink: 0;
}
.bulk-update-panel__order-title {
  font-size: 2rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 1.6rem;
  color: #030303;
}
.bulk-update-panel__order-number {
  color: #2383bc;
}
.bulk-update-panel__loading {
  margin-top: 2.4rem;
  display: flex;
  justify-content: center;
}
.bulk-update-panel .widefield {
  margin-bottom: 1.2rem;
}
.bulk-update-panel .widefield:last-child {
  margin-bottom: 0;
}
.bulk-update-panel__helper-text {
  font-size: 1.2rem;
  color: #030303;
  margin: 1.2rem 0 0 0;
}
.bulk-update-panel__asset-section {
  margin-top: 2rem;
  border-top: 1px solid #ededed;
  padding-top: 1.2rem;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .bulk-update-panel__asset-section {
    grid-column: 1;
    grid-row: 2;
    align-self: stretch;
    margin-top: 2.4rem;
    min-height: 0;
  }
}
.bulk-update-panel__asset-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #030303;
  margin-bottom: 1.2rem;
  flex-shrink: 0;
}
.bulk-update-panel__asset-cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  overflow-y: auto;
  min-height: 0;
  padding-bottom: 4rem;
}
.bulk-update-panel__asset-card .widefield {
  margin: 0;
}
.bulk-update-panel__card-animate-in {
  animation: bulk-update-card-enter 0.22s ease-out both;
}
.bulk-update-panel__skeleton-label, .bulk-update-panel__skeleton-select {
  border-radius: 0.3rem;
  background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
  background-size: 200% 100%;
  animation: bulk-update-skeleton-shimmer 2.2s infinite;
}
.bulk-update-panel__skeleton-label {
  height: 1.6rem;
  width: 5rem;
  margin: 0.7rem 0;
  display: block;
}
.bulk-update-panel__skeleton-select {
  height: 3rem;
  width: 96%;
  display: block;
}
.bulk-update-panel__no-assets-text {
  margin: 0;
  padding: 0.8rem 0;
  font-size: 1.4rem;
  color: #030303;
}
.bulk-update-panel .validation-container:not(.has-error) .fieldtitle, .bulk-update-panel .validation-container:not(.has-error) indago-select-options.widefield > label {
  color: #030303;
}
.bulk-update-panel .fieldtitle, .bulk-update-panel indago-select-options.widefield > label {
  white-space: normal;
  overflow-wrap: break-word;
}
.bulk-update-panel .validation-container {
  display: flex;
  flex-direction: column;
}
.bulk-update-panel .validation-container:not(.has-error) .validation-message {
  display: none !important;
}
.bulk-update-panel__error-host {
  height: 0;
  overflow: visible;
}
.bulk-update-panel .validation-container.has-error .validation-message {
  position: relative;
  display: block;
  margin-top: 0.4rem;
}
.bulk-update-panel .validation-container.has-error:hover .validation-message,
.bulk-update-panel .validation-container.has-error:focus-within .validation-message {
  visibility: visible;
  opacity: 1;
  z-index: 1;
}
@media (min-width: 768px) {
  .bulk-update-panel {
    width: 60rem;
    right: -62rem;
  }
}
.bulk-update-panel__body-grid {
  flex: 1;
  min-height: 0;
}
@media (min-width: 768px) {
  .bulk-update-panel__body-grid {
    display: grid;
    grid-template-columns: 30rem 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    column-gap: 2rem;
    row-gap: 1.2rem;
  }
}
.bulk-update-panel__selection-col {
  min-width: 0;
  margin-top: 0;
}
.bulk-update-panel__selection-col .widefield {
  margin-top: 0;
}
@media (min-width: 768px) {
  .bulk-update-panel__selection-col {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
  }
}
.bulk-update-panel__pieces-col {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .bulk-update-panel__pieces-col {
    grid-column: 2;
    grid-row: 1/span 2;
    align-self: stretch;
    min-height: 0;
  }
}
.bulk-update-panel__pieces-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 0.7rem 0;
}
.bulk-update-panel__pieces-label {
  font-size: 1.3rem;
  font-weight: 600;
  color: #030303;
}
.bulk-update-panel__pieces-grid-shell {
  flex: 1;
  min-height: 0;
}
.bulk-update-panel__pieces-grid-shell .e-grid {
  height: 100%;
}
.bulk-update-panel .e-grid .e-row:hover > .e-rowcell,
.bulk-update-panel .e-grid .e-row:hover > .e-gridchkbox {
  background-color: #f2f2f2;
}
.bulk-update-panel .e-grid .e-row.e-selectionbackground > .e-rowcell,
.bulk-update-panel .e-grid .e-row.e-selectionbackground > .e-gridchkbox {
  background-color: inherit;
}
.bulk-update-panel .e-grid {
  border: none !important;
}
.bulk-update-panel .e-grid .e-headertext {
  font-size: 1.5rem !important;
}
.bulk-update-panel .e-grid .e-headercell.e-rightalign .e-headercelldiv,
.bulk-update-panel .e-grid .e-rowcell.e-rightalign {
  padding-right: 0 !important;
}
.bulk-update-panel .e-grid .e-rowcell {
  border: none !important;
}
.bulk-update-panel .e-grid .e-headercell {
  border: none !important;
}
.bulk-update-panel .e-grid .e-row,
.bulk-update-panel .e-grid .e-altrow {
  border: none !important;
}
.bulk-update-panel .e-grid .e-gridcontent,
.bulk-update-panel .e-grid .e-content {
  border: none !important;
}
.bulk-update-panel .e-grid .e-row.e-altrow .e-rowcell {
  background-color: #f2f2f2 !important;
}
.bulk-update-panel .e-grid .e-rowcell:focus, .bulk-update-panel .e-grid .e-rowcell:focus-within {
  outline: none !important;
  box-shadow: none !important;
}
.bulk-update-panel .e-grid .e-rowcell.e-focused {
  outline: none !important;
  box-shadow: none !important;
}
.bulk-update-panel .e-grid .e-gridcontent .e-rowcell.e-focused {
  outline: none !important;
  box-shadow: none !important;
}
.bulk-update-panel .e-grid .e-headercell:focus {
  outline: none !important;
  box-shadow: none !important;
}
.bulk-update-panel .e-grid .e-row.e-focused .e-rowcell {
  background: transparent !important;
}
.bulk-update-panel .e-grid .e-rowcell {
  font-size: 1.5rem !important;
  color: #030303;
}
.bulk-update-panel .e-grid .e-rowcell.e-focused, .bulk-update-panel .e-grid .e-rowcell.e-active {
  background: transparent !important;
}
.bulk-update-panel .e-grid .e-gridcontent,
.bulk-update-panel .e-grid .e-content {
  overflow-y: auto !important;
  overflow-x: hidden !important;
}
.bulk-update-panel .e-grid .e-rowcell.e-gridchkbox,
.bulk-update-panel .e-grid .e-headercell:first-child,
.bulk-update-panel .e-grid .e-headercell:first-child .e-headercelldiv {
  padding-left: 0.4rem !important;
  padding-right: 0.4rem !important;
  text-align: center !important;
}
.bulk-update-panel .e-grid .e-checkbox-wrapper .e-check::before,
.bulk-update-panel .e-grid .e-css.e-checkbox-wrapper .e-check::before {
  color: #fafefd;
}
.bulk-update-panel .e-grid .e-checkbox-wrapper .e-frame,
.bulk-update-panel .e-grid .e-css.e-checkbox-wrapper .e-frame {
  width: 1.3rem;
  height: 1.3rem;
  line-height: 0.6rem;
}
.bulk-update-panel .e-grid .e-checkbox-wrapper .e-frame .e-check::before,
.bulk-update-panel .e-grid .e-css.e-checkbox-wrapper .e-frame .e-check::before {
  color: #fafefd;
  font-size: 1rem;
}
.bulk-update-panel .e-grid .e-checkbox-wrapper .e-frame.e-check,
.bulk-update-panel .e-grid .e-css.e-checkbox-wrapper .e-frame.e-check {
  background-color: #2383bc;
  font-size: 1rem;
}
.bulk-update-panel .e-grid .e-checkbox-wrapper .e-frame.e-stop,
.bulk-update-panel .e-grid .e-css.e-checkbox-wrapper .e-frame.e-stop {
  background-color: #2383bc;
  border-color: #2383bc;
  color: #fafefd;
  font-size: 0.8rem;
}
.bulk-update-panel .e-grid .e-checkbox-wrapper:hover .e-frame,
.bulk-update-panel .e-grid .e-css.e-checkbox-wrapper:hover .e-frame {
  border-color: #666;
}
.bulk-update-panel .e-grid .e-checkbox-wrapper:hover .e-frame.e-check,
.bulk-update-panel .e-grid .e-css.e-checkbox-wrapper:hover .e-frame.e-check {
  background: #2383bc;
  border-color: #2383bc;
}
.bulk-update-panel .e-grid .e-checkbox-wrapper:hover .e-frame.e-stop,
.bulk-update-panel .e-grid .e-css.e-checkbox-wrapper:hover .e-frame.e-stop {
  color: #fafefd;
}
.bulk-update-panel .e-grid .e-checkbox-wrapper:hover .e-check .e-frame,
.bulk-update-panel .e-grid .e-css.e-checkbox-wrapper:hover .e-check .e-frame {
  background: #2383bc;
  border-color: #2383bc;
}

@media (max-width: 767.98px) {
  .bulk-update-panel__body {
    overflow-y: auto;
  }

  .bulk-update-panel__body-grid {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }

  .bulk-update-panel__selection-col {
    order: 1;
  }

  .bulk-update-panel__asset-section {
    order: 2;
    flex: none;
    overflow: visible;
    margin-bottom: 2.4rem;
  }

  .bulk-update-panel__pieces-col {
    order: 3;
    flex: none;
  }

  .bulk-update-panel__pieces-grid-shell {
    flex: none;
  }
  .bulk-update-panel__pieces-grid-shell .e-grid,
.bulk-update-panel__pieces-grid-shell .e-gridcontent,
.bulk-update-panel__pieces-grid-shell .e-content {
    height: auto !important;
  }
  .bulk-update-panel__pieces-grid-shell .e-gridcontent,
.bulk-update-panel__pieces-grid-shell .e-content {
    overflow: visible !important;
  }
}
@keyframes bulk-update-skeleton-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
@keyframes bulk-update-card-enter {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.view-production-schedule--workcenter .sticky-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #f5f5f5;
  margin-left: -3.4rem;
  margin-right: -3.4rem;
  padding-left: 3.4rem;
  padding-right: 3.4rem;
}
.view-production-schedule--workcenter .sticky-header indago-search-results-header {
  display: block;
  margin: 1.6rem 0;
}
.view-production-schedule--workcenter .sticky-header .list-toolbar {
  padding-top: 1.6rem;
}
.view-production-schedule--workcenter .report-container {
  min-height: auto;
}
.view-production-schedule--workcenter .workcenter-production-schedule {
  --poi-grid-columns: 2.2rem minmax(52rem, 1.65fr) minmax(34rem, 1fr) auto;
}
.view-production-schedule--workcenter .workcenter-production-schedule .list-toolbar {
  margin: 0;
  padding: 1.6rem 0;
  align-items: center;
}
.view-production-schedule--workcenter .workcenter-production-schedule .list-toolbar > .numberOfItems {
  font-weight: 600;
  margin: 0;
  display: block;
  height: max-content;
  padding: 0;
}
.view-production-schedule--workcenter .workcenter-production-schedule .order-list {
  grid-template-columns: var(--poi-grid-columns);
  align-items: start;
}
.view-production-schedule--workcenter .workcenter-production-schedule .order-list > .production-order-item,
.view-production-schedule--workcenter .workcenter-production-schedule .order-list > template > .production-order-item,
.view-production-schedule--workcenter .workcenter-production-schedule .production-order-item {
  grid-template-columns: subgrid;
}
.view-production-schedule--workcenter .workcenter-production-schedule .work-center-route-container {
  display: flex;
  align-items: center;
  min-height: 100%;
  width: 100%;
  margin-left: 0.8rem;
}
@media (max-width: 1300px) {
  .view-production-schedule--workcenter .workcenter-production-schedule work-center-route {
    padding: 0 0.6rem;
  }
}
.view-production-schedule--workcenter .workcenter-production-schedule .work-center-route {
  width: 100%;
  min-width: 0;
}
.view-production-schedule--workcenter .workcenter-production-schedule .work-center-route__workcenter-list {
  min-width: 0;
}
.view-production-schedule--workcenter .workcenter-production-schedule .work-center-route__workcenter-list > * {
  flex: 1 1 0;
  min-width: max-content;
}
.view-production-schedule--workcenter .workcenter-production-schedule .production-order-summary {
  flex-wrap: nowrap;
}
.view-production-schedule--workcenter .workcenter-production-schedule .production-order-summary__color-edge-combos {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  flex-direction: column;
  gap: 0.4rem;
  align-items: flex-start;
}
.view-production-schedule--workcenter .workcenter-production-schedule .production-order-summary__color-edge-combo {
  width: 100%;
  display: block;
}
.view-production-schedule--workcenter .workcenter-production-schedule .production-order-summary__color-edge-line {
  display: inline;
  line-height: 1.6rem;
}
.view-production-schedule--workcenter .workcenter-production-schedule .production-order-summary__color-edge-line--edge::before {
  content: " - ";
}
@media (max-width: 1300px) {
  .view-production-schedule--workcenter .workcenter-production-schedule .production-order-summary {
    flex-wrap: wrap;
  }
}
@media (max-width: 1865px) {
  .view-production-schedule--workcenter .workcenter-production-schedule {
    --poi-grid-columns: 2.2rem minmax(42rem, 1fr) auto;
  }
  .view-production-schedule--workcenter .workcenter-production-schedule .order-list > .production-order-item,
.view-production-schedule--workcenter .workcenter-production-schedule .order-list > template > .production-order-item,
.view-production-schedule--workcenter .workcenter-production-schedule .production-order-item {
    grid-template-columns: subgrid;
  }
  .view-production-schedule--workcenter .workcenter-production-schedule .production-order-item__row {
    grid-template-rows: auto auto;
    grid-template-areas: "details summary actions" "details route route";
  }
  .view-production-schedule--workcenter .workcenter-production-schedule .production-order-item__row--piece-route {
    grid-template-rows: auto;
    grid-template-areas: "details summary actions";
    align-items: center;
  }
  .view-production-schedule--workcenter .workcenter-production-schedule .production-order-item__row--piece-route .production-order-item__cell--content {
    display: none;
  }
  .view-production-schedule--workcenter .workcenter-production-schedule .production-order-item__row--piece-route .production-order-item__cell--summary {
    padding: 0;
    height: auto;
  }
  .view-production-schedule--workcenter .workcenter-production-schedule .production-order-item__row--piece-route .production-order-summary {
    flex-wrap: nowrap;
  }
  .view-production-schedule--workcenter .workcenter-production-schedule .production-order-item__row--piece-route .production-order-item__cell--actions {
    align-self: center;
    padding-top: 0;
  }
  .view-production-schedule--workcenter .workcenter-production-schedule .production-order-item__cell--summary {
    padding: 0.8rem 0 0.2rem;
  }
  .view-production-schedule--workcenter .workcenter-production-schedule .production-order-item__cell--content {
    align-items: flex-start;
    margin: 0 1.6rem 0.8rem 1.6rem;
  }
  .view-production-schedule--workcenter .workcenter-production-schedule .production-order-item__cell--actions {
    align-self: center;
    align-items: center;
    padding: 0 0.8rem;
  }
  .view-production-schedule--workcenter .workcenter-production-schedule .production-order-summary {
    box-sizing: border-box;
    padding: 0 1.6rem;
    align-content: flex-start;
  }
  .view-production-schedule--workcenter .workcenter-production-schedule .production-order-summary__cell--order-number {
    margin-left: 0;
  }
  .view-production-schedule--workcenter .workcenter-production-schedule .production-order-summary__color-edge-combos {
    padding: 0.2rem 0 0;
    gap: 0.4rem;
  }
  .view-production-schedule--workcenter .workcenter-production-schedule .production-order-summary__color-edge-combo {
    line-height: 1.6rem;
  }
}

.view-production-schedule {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 1rem;
  bottom: 0;
  left: 0;
  right: 0;
}
.view-production-schedule work-center-task-production-report {
  flex-grow: 1;
}
.view-production-schedule indago-search-results-header {
  margin: 1rem 3.4rem;
}
.view-production-schedule indago-loading-spinner {
  flex: 1 0 auto;
}
.view-production-schedule .filters {
  margin-left: 3.4rem;
  margin-right: 3.4rem;
}
.view-production-schedule .list-toolbar {
  padding: 0 3.4rem;
}
.view-production-schedule .list-toolbar .refreshIcon {
  margin: 0 1.5rem;
  cursor: pointer;
  height: 1.8rem;
}
.view-production-schedule .list-toolbar .refreshIcon .icon {
  fill: #2383bc;
}
.view-production-schedule .list-toolbar indago-search-popover {
  margin: 0 1.5rem;
}
.view-production-schedule .list-age {
  font-style: italic;
  font-weight: normal;
  margin-left: 1rem;
}
.view-production-schedule .item-container {
  flex: 1 0 auto;
  padding: 0 3.4rem;
  display: block;
  position: relative;
  overflow-y: auto;
  overflow-anchor: none;
  height: 0px;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  z-index: 0;
}
.view-production-schedule .item-container .report-container {
  display: flex;
  flex-direction: row;
  min-height: 21rem;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.view-production-schedule .item-container .grouped-by {
  font-weight: 700;
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  margin-top: 2rem;
}
.view-production-schedule .item-container .grouped-by:after {
  position: absolute;
  top: 51%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #d4d4d4;
  margin-left: 1rem;
}
.view-production-schedule .item-container order-item-list .order-item-piece-row {
  gap: 0.06rem;
}
.view-production-schedule .pagination-footer {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  padding: 1.2rem 3.4rem;
  border-top: 1px solid #bebebe;
  background: #f7f7f7;
}
@media (max-width: 1865px) {
  .view-production-schedule .orderitem-summary .content {
    padding: 0.8rem 0.8rem 1rem;
  }
}
.view-production-schedule .lazy-load {
  background: #ededed;
  width: 100%;
  display: block;
  text-align: center;
  margin: 1rem 0;
}
.view-production-schedule .lazy-load .main-button {
  margin: 1rem 0;
}
@media (max-width: 1865px) {
  .view-production-schedule--main .production-order-item {
    grid-template-columns: 2.2rem auto minmax(45rem, 1fr);
  }
}
.view-production-schedule--main .production-order-item {
  grid-template-columns: 2.2rem auto minmax(45rem, 1fr) auto;
}
@media (max-width: 1024px) {
  .view-production-schedule--main .production-order-item--pieces .production-order-summary {
    padding: 1.6rem !important;
  }
}
.view-production-schedule--production-schedule .production-order-item {
  margin: 0 0 0.2rem 0;
  cursor: pointer;
}
@media (max-width: 1865px) {
  .view-production-schedule .work-center {
    line-height: 3.7rem;
  }
  .view-production-schedule .content {
    flex-wrap: wrap;
  }
}
@media (max-width: 1865px) {
  .view-production-schedule .production-order-summary__cell,
.view-production-schedule .production-order-summary order-number {
    margin-left: 0;
  }
}

production-schedule-item {
  display: block;
  margin: 2px 0;
  box-sizing: border-box;
  height: 4.6rem;
  position: relative;
  border: 1px solid #e0e0e0;
}
@media (max-width: 1865px) {
  production-schedule-item {
    height: 15rem;
  }
}
@media (hover) {
  production-schedule-item:hover {
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.25);
  }
  production-schedule-item:hover .order-selector {
    opacity: 1;
  }
}
production-schedule-item.-selected {
  border: 1px solid #2383bc;
}
production-schedule-item.-selected .orderitem-summary {
  background: #f4f9fd;
}
production-schedule-item.-onHold {
  border: 1px solid #f6b4c8;
}
production-schedule-item.-onHold .orderitem-summary {
  background: #faf4f6;
}

production-schedule-item .-actions button,
.testWidget button {
  position: relative;
}
production-schedule-item .-actions indago-popover,
.testWidget indago-popover {
  background-color: #222236;
  width: 20rem;
  right: 10px;
  padding: 0.5rem 1.5rem;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1180px) {
  production-schedule-item .-actions indago-popover,
.testWidget indago-popover {
    width: 40rem;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
production-schedule-item .-actions indago-popover:after,
.testWidget indago-popover:after {
  left: calc(100% - 2rem);
}
production-schedule-item .-actions indago-popover .item,
.testWidget indago-popover .item {
  color: #fff;
  display: block;
  cursor: pointer;
  font-weight: 600;
  line-height: 4rem;
  flex: 1;
}
@media (max-width: 1180px) {
  production-schedule-item .-actions indago-popover .item,
.testWidget indago-popover .item {
    flex: 0 1 50%;
  }
}
production-schedule-item .-actions indago-popover .item:hover,
.testWidget indago-popover .item:hover {
  color: #b9ddf2;
}
production-schedule-item .-actions indago-popover .item:hover .icon,
.testWidget indago-popover .item:hover .icon {
  fill: #389eda;
}
production-schedule-item .-actions indago-popover .item > .icon,
.testWidget indago-popover .item > .icon {
  fill: #2383bc;
  vertical-align: sub;
  margin-right: 0.5rem;
}

.assetPicker {
  padding: 0 3rem;
  font-size: 2rem;
}
.assetPicker .userActions {
  display: flex;
  justify-content: flex-end;
  padding: 2rem;
  grid-gap: 1rem;
}
.assetPicker .itemsList {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.assetPicker .itemsList input {
  justify-self: center;
}
.assetPicker .itemsList div {
  display: grid;
  /*grid-template-columns: 1fr 2fr 1fr 5fr minmax(5rem, 5rem);*/
  grid-template-columns: 1fr 2fr;
  column-gap: 2rem;
  padding: 1.2rem;
}
.assetPicker .itemsList div:nth-child(1n+2) {
  background: white;
}
@media (hover) {
  .assetPicker .itemsList div:nth-child(1n+2):hover {
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.35);
    z-index: 3;
    cursor: pointer;
  }
}
.assetPicker .indago-grid .grid-header {
  padding: 1.2rem;
  background: #2c2c46;
}
.assetPicker .indago-grid .grid-header span.grid-cell {
  position: sticky;
  top: 0;
  align-self: center;
}
.assetPicker .export {
  right: 3rem;
  position: absolute;
}

.asset-picker-dialog- ux-dialog-header {
  border: 0;
}
.asset-picker-dialog- ux-dialog-body {
  /* width: 100rem;*/
  width: 70rem;
  min-height: 50rem;
  position: relative;
  padding: 0;
  font-size: 2rem;
}
.asset-picker-dialog- .details-header {
  margin-bottom: 0rem;
  margin-right: 1rem;
  margin-left: 2rem;
  background-color: #f7f7f7;
}
.asset-picker-dialog- .details-line {
  margin-right: 2rem;
  margin-left: 2rem;
  background-color: #d4d4d4;
  border: 1px inset;
}
.asset-picker-dialog- .header-line {
  background-color: #f7f7f7;
}
.asset-picker-dialog- .label-capacity {
  margin-left: 2rem;
}
.asset-picker-dialog- .capacityBlock {
  gap: 1rem;
  float: right;
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: 2rem;
}
.asset-picker-dialog- ux-dialog-footer {
  padding: initial;
}
.asset-picker-dialog- ux-dialog-footer button.-reject {
  background: linear-gradient(to bottom, #aa4347 0%, #82312e 100%);
}
.asset-picker-dialog- ux-dialog-footer button.-reject:hover {
  background: linear-gradient(to bottom, #c06064 0%, #a83f3b 100%);
}
.asset-picker-dialog- ux-dialog-footer button.-approve {
  background: linear-gradient(to bottom, #389b48 0%, #267933 100%);
}
.asset-picker-dialog- ux-dialog-footer button.-approve:hover {
  background: linear-gradient(to bottom, #49bd5c 0%, #32a043 100%);
}
.asset-picker-dialog- .orderSearch-bar {
  background-color: #3b3b4b;
  width: 100%;
  padding: 2rem;
  box-sizing: border-box;
}
.asset-picker-dialog- .orderSearch-bar .searchWrapper {
  width: 80%;
  position: relative;
  margin: 0 auto;
}
.asset-picker-dialog- .orderSearch-bar .indagoIcon {
  position: absolute;
  left: 1.7rem;
  top: 1.5rem;
}
.asset-picker-dialog- .orderSearch-bar .indagoIcon .icon {
  fill: #808080;
}
.asset-picker-dialog- .orderSearch-bar .searchInput {
  width: 93%;
  font-size: 1.6rem;
  padding: 1.3rem 0 1.3rem 4.4rem;
  box-sizing: content-box;
}
.asset-picker-dialog- .orderSearch-bar .-searchButton {
  position: absolute;
  right: 0.6rem;
  top: 0.7rem;
}
.asset-picker-dialog- .selected-order {
  /*margin: 2rem;*/
}
.asset-picker-dialog- .searchResults {
  margin: 2rem;
  height: 74%;
}
.asset-picker-dialog- .results-container {
  overflow-y: auto;
  height: 88%;
}
.asset-picker-dialog- .selectable-order {
  border: 1px solid #e4e4e4;
  box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  /*margin-top: .8rem;*/
  padding: 1.5rem;
}
.asset-picker-dialog- .selectable-order:hover {
  border: 1px solid #2383bc;
  box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.5);
}
.asset-picker-dialog- .selectable-order > .highlight {
  color: #2383bc;
  font-weight: 700;
}
.asset-picker-dialog- .requestBody header {
  border-bottom: 1px solid #d4d4d4;
  color: #030303;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
}
.asset-picker-dialog- .requestBody header .orderIdentification {
  font-size: 2rem;
}
.asset-picker-dialog- .requestBody header .orderType {
  font-size: 1.8rem;
  float: right;
  font-weight: 600;
}
.asset-picker-dialog- .requestBody header .icon {
  vertical-align: -2px;
}
.asset-picker-dialog- .requestBody header .emphasis {
  font-weight: 700;
}
.asset-picker-dialog- .request-type {
  background-color: #f3f3f3;
  border: 1px solid #ccc;
  display: flex;
  align-items: stretch;
  position: relative;
}
.asset-picker-dialog- .request-type.-rush {
  border-color: #b62d2c;
}
.asset-picker-dialog- .request-type.-rush .requestTypeIcon .icon {
  fill: #b62d2c;
}
.asset-picker-dialog- .request-type.-rush .requestTypeIcon:after {
  border-right: 1px solid #b62d2c;
}
.asset-picker-dialog- .request-type.-bump {
  border-color: #50b4cc;
}
.asset-picker-dialog- .request-type.-bump .requestTypeIcon .icon {
  fill: #50b4cc;
}
.asset-picker-dialog- .request-type.-bump .requestTypeIcon:after {
  border-right: 1px solid #50b4cc;
}
.asset-picker-dialog- .request-type .-override {
  text-decoration: line-through;
}
.asset-picker-dialog- .request-type .column {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 0;
}
.asset-picker-dialog- .request-type .column .text {
  color: #4b4b4b;
  font-weight: 600;
  margin: 0.7rem 0;
}
.asset-picker-dialog- .request-type .column .date {
  color: #808080;
  font-size: 2.2rem;
  margin: 0.5rem 0;
}
.asset-picker-dialog- .request-type .column .date .calendar {
  margin-left: 1rem;
}
.asset-picker-dialog- .request-type .column .form {
  margin-bottom: 0.7rem;
}
.asset-picker-dialog- .request-type .column .form input {
  width: 8.5rem;
  text-align: center;
}
.asset-picker-dialog- .request-type .requestTypeIcon {
  position: relative;
  background-color: #f3f3f3;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.asset-picker-dialog- .request-type .requestTypeIcon::after {
  content: "";
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
}
.asset-picker-dialog- .request-type .requestTypeIcon .iconWrapper {
  position: relative;
  margin: 0 0.5rem;
  display: inline-block;
  width: 6.5rem;
  text-align: center;
}
.asset-picker-dialog- .request-type .requestTypeIcon .iconWrapper .icon {
  width: 2.5rem;
  height: 2.5rem;
  margin: 8px 0;
  position: relative;
  z-index: 2;
  padding: 0 5px;
  background-color: #f3f3f3;
}
.asset-picker-dialog- .request-type .requestTypeIcon .iconWrapper:after, .asset-picker-dialog- .request-type .requestTypeIcon .iconWrapper:before {
  content: "";
  position: absolute;
  z-index: 1;
}
.asset-picker-dialog- .request-type .requestTypeIcon .iconWrapper:after {
  background: #cccccc;
  width: 100%;
  height: 3px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.asset-picker-dialog- .request-type .requestTypeIcon .iconWrapper:before {
  border-top: 3px solid #cccccc;
  border-right: 3px solid #cccccc;
  width: 0.7rem;
  height: 0.7rem;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.asset-picker-dialog- .wrapper {
  margin-top: 2rem;
  overflow: hidden;
}
.asset-picker-dialog- .wrapper .order-details {
  float: left;
  width: 48%;
}
.asset-picker-dialog- .wrapper .order-details .tab-container {
  margin: 0 0 1.6rem 0;
}
.asset-picker-dialog- .wrapper .order-details .orderInfo-tab {
  display: flex;
  flex-wrap: wrap;
}
.asset-picker-dialog- .wrapper .order-details .orderInfo-tab .element {
  flex: 0 0 50%;
  margin: 0.5rem 0;
  line-height: 2rem;
}
.asset-picker-dialog- .wrapper .order-details .orderInfo-tab .element:first-child {
  flex: 0 0 100%;
}
.asset-picker-dialog- .wrapper .order-details .orderInfo-tab .label {
  font-weight: 600;
}
.asset-picker-dialog- .wrapper .order-details .orderItem-tab {
  height: 21rem;
  overflow-y: auto;
}
.asset-picker-dialog- .wrapper .order-details .orderItem-tab .orderItem {
  background: #f2f2f2;
  padding: 1rem 1.3rem;
  margin-bottom: 0.6rem;
  line-height: 2.1rem;
  margin-right: 0.2rem;
  font-size: 1.4rem;
}
.asset-picker-dialog- .wrapper .order-details .orderItem-tab .orderItem .element span:first-child {
  font-weight: 600;
}
.asset-picker-dialog- .wrapper .changeRequest-summary .element {
  margin-bottom: 0.6rem;
  line-height: 2.1rem;
  font-size: 1.4rem;
}
.asset-picker-dialog- .wrapper .changeRequest-summary .element span:first-child {
  font-weight: 600;
}
.asset-picker-dialog- .wrapper .changeRequest-details {
  float: right;
  width: 49%;
  display: flex;
  flex-wrap: wrap;
}
.asset-picker-dialog- .wrapper .changeRequest-details .element {
  flex: 0 0 46%;
  margin: 0.8rem 0;
}
.asset-picker-dialog- .wrapper .changeRequest-details .element.-wide {
  flex: 0 0 100%;
}
.asset-picker-dialog- .wrapper .changeRequest-details .element:first-child {
  margin-right: 1rem;
}
.asset-picker-dialog- .wrapper .changeRequest-details label {
  font-weight: 600;
  display: block;
  margin-bottom: 0.7rem;
}
.asset-picker-dialog- .wrapper .changeRequest-details .select,
.asset-picker-dialog- .wrapper .changeRequest-details .textarea {
  width: 100%;
}
.asset-picker-dialog- .wrapper .changeRequest-details .textarea {
  height: 6rem;
}
.asset-picker-dialog- .wrapper .changeRequest-details input[type=checkbox] + label {
  display: inline;
}
.asset-picker-dialog- .wrapper .changeRequest-details input[type=checkbox]:disabled + label {
  color: #9a9a9a;
}
.asset-picker-dialog- .confirmationWrapper {
  margin-top: 3rem;
}
.asset-picker-dialog- .confirmationWrapper .title {
  font-size: 2.1rem;
  color: #595959;
  font-weight: 600;
  margin: 2rem 0;
}
.asset-picker-dialog- .confirmationWrapper .title span {
  font-weight: 700;
}
.asset-picker-dialog- .confirmationWrapper.-approve .title span {
  color: #267933;
}
.asset-picker-dialog- .confirmationWrapper.-reject .title span {
  color: #aa4347;
}
.asset-picker-dialog- .confirmationWrapper.-reject .form label {
  font-weight: 600;
  display: block;
  color: #4b4b4b;
  margin-bottom: 1rem;
}
.asset-picker-dialog- .confirmationWrapper.-reject .form textarea {
  width: 100%;
  height: 12rem;
}
.asset-picker-dialog- .bumpConfirmationWrapper {
  margin-top: 4rem;
}
.asset-picker-dialog- .bumpConfirmationWrapper h2 {
  color: #595959;
  font-weight: 600;
  font-size: 1.9rem;
}
.asset-picker-dialog- .bumpConfirmationWrapper strong {
  color: #2383bc;
}
.asset-picker-dialog- .error-description {
  padding: 1rem 1rem;
}
.asset-picker-dialog- .footer-button {
  margin-right: 0.5rem;
}

.prototype-container {
  display: flex;
  row-gap: 5rem;
  flex-direction: column;
}
.prototype-container .wrapper > div {
  display: flex;
  grid-gap: 10rem;
}
.prototype-container .wrapper > div > div {
  display: flex;
  flex-direction: column;
  width: 30%;
}
.prototype-container span.label.-click {
  padding: 2rem;
  border: 1px solid;
}