html.overflow-hidden {
  overflow: hidden;
}
:root {
  --primary-text: #051350;
  --grey-again: #4c5783;
  --secondary-text: #757d9f;
  --additional-text: #97a2c8;
  --primary-blue: #0e64cd;
  --primary-green: #3abf77;
  --primary-red: #ea4968;
  --asap-orange: #e4922e;
  --lines-grey: #d1d8f0;
  --light-grey: #f2f5fa;
  --denim: #1063CD;
  --black-squeeze: #F2F6FA;
  --white: #ffffff;
}
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
.container {
  max-width: 1480px;
  padding: 0 20px;
  margin: 0 auto;
}
.flexible-container {
  padding: 0 20px;
  margin: 0 auto;
}
.clear-link {
  text-decoration: none;
  color: inherit;
}
.clear-button {
  display: inline-block;
  padding: 0;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  text-transform: inherit;
  vertical-align: middle;
  background: transparent;
  border: 0;
  cursor: pointer;
  line-height: inherit;
  text-decoration: none;
  text-align: left;

  & svg {
    display: block;
    vertical-align: middle;
  }
}
.edit-location-button {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 500;
  color: #1063cd;
  text-align: left;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}
.approve-button {
  color: var(--primary-green);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;

  &.-approved {
    color: white;
    background-color: var(--primary-green) !important;

    & button:disabled {
      cursor: initial;

      &:hover {
        color: white;
      }
    }
  }
}
.link {
  color: var(--grey-again);
  text-decoration: none;
  cursor: pointer;
  &:hover {
    text-decoration: underline;
    color: var(--primary-blue);
  }
  &:disabled {
    pointer-events: none;
    opacity: 0.5;
  }
}
.primary-link {
  color: var(--primary-blue);
  text-decoration: none;
  cursor: pointer;
  &:hover {
    text-decoration: underline;
    color: var(--grey-again);
  }
}
.wonder-scroll {
  overflow: auto;
  scrollbar-width: thin;
  will-change: inherit !important;

  &::-webkit-scrollbar {
    width: 3px;
    height: 3px;
    background-color: #fff;
  }

  &::-webkit-scrollbar-thumb {
    background: var(--additional-text);
    border-radius: 3px;
  }
}
.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}
.text-center {
  text-align: center;
}
*, *::before, *::after {
  box-sizing: border-box;
}
body {
  /* text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; */
  font-family: 'Roboto', sans-serif !important;
  font-size: 16px;
  line-height: 1.48;
  color: var(--primary-text);
}
img {
  display: block;
  max-width: 100%;
}
input, button, a {
  outline: none
}
.Popover {
  background: #ffffff;
  border: 1px solid var(--lines-grey);
  box-shadow: 0 16px 26px rgba(5, 19, 80, 0.07);
  border-radius: 6px;
  z-index: 100;
}
.Popover-tip {
  display: none;
}
.header {
  background-color: #F6F7FC;
  margin-bottom: 24px;
}
.header_container {
  display: flex;
  align-items: center;
  height: 64px;
}
.header_logo {
  display: block;
  width: 30px;
  line-height: 0;
}
.header_separator {
  flex: 1 1;
}
.header_picker {
  padding-left: 38px;
  margin-left: 20px;
  position: relative;

  &:before {
    content: '';
    position: absolute;
    left: 0;
    height: 1px;
    width: 18px;
    background: #97A2C8;
    top: 50%;
  }
}
.header_user {
  margin-left: 47px;
}
.header_user-menu {
  text-align: center;
  padding: 5px 15px;
  margin: 12px 0 0 -20px;
  font-size: 14px;
}
.breadcrumb {
  display: flex;
}
.breadcrumb_item {
  display: flex;
  align-items: center;
  position: relative;
  margin-left: 54px;

  &::before {
    width: 18px;
    height: 1px;
    background-color: var(--additional-text);
    position: absolute;
    right: 100%;
    top: 50%;
    margin-right: 18px;
    content: "";
  }
}
.breadcrumb_menu {
  position: relative;

  &::before {
    content: '';
    position: absolute;
    background: #97A2C8;
    width: 1px;
    top: 0;
    bottom: 0;
    left: 23px;
  }

  & .menu_root-link {
    margin-left: 23px;

    &:first-child {
      margin-left: 24px;
    }
  }
}
.subheader_menu {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid #D6DFF7;

  & .menu_root-link {
    padding: 6px 12px;
    border-radius: 16px;

    &.-active {
      color: #FFFFFF;
      background-color: #1063CD; /* primary blue */
      font-weight: 500;
    }

    &.-active:hover {
      color: #FFFFFF;
      background-color: #1063CD;
    }

    &:first-child {
      margin-left: 20px;
    }
  }
}
.breadcrumb_button {
  display: flex;
  align-items: center;
  font-weight: 400;
  &:hover {
    color: #1063cd;
  }
}
.breadcrumb_chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border: 1px solid #97A2C8;
  border-radius: 100%;
  margin-left: 11px;

  &.-bold {
    border-color: #1063CD;
    box-shadow: 0 0 0 1px #1063CD;
  }

  & > svg {
    width: 10px;
    height: 9px;
    color: #1063CD;
    margin-top: -2px;
  }
}
.menu {
  height: 18px;
  position: relative;
}
.menu_toggle {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 400;

  & > svg {
    width: 24px;
    height: 24px;
    margin-left: 24px;
  }
}
.menu_popup {
  min-width: 160px;
  padding: 5px 15px;

  &.-replenishment {
    margin-left: 43px;
  }

  &.-settings {
    margin-left: 20px;
  }

  &.-help {
    width: 370px;
    text-align: center;
    font-weight: 400;
    padding: 30px;
    & h3 {
      display: block;
      font-size: 16px;
      margin-bottom: 20px;
    }
    & a {
      display: block;
      color: #1063CD;
      font-size: 20px;
    }
    & span {
      display: block;
      font-size: 13px;
      font-weight: 300;
      color: #757D9F;
    }
  }

  &.-top {
    margin-top: -10px;
  }
}
.menu_popup-divider {
  margin: 5px 0;
  border-top: 1px solid var(--lines-grey);
}
.menu_popup-link {
  cursor: pointer;
  width: 100%;
  color: var(--primary-text);
  display: block;
  padding: 3px 0;
  text-decoration: none;
  text-align: left;

  &:hover {
    color: var(--primary-blue);
  }

  &.-disabled, &:disabled {
    pointer-events: none;
    opacity: 0.5;
  }

  &.-external {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 16px;
    line-height: 1.8;

    & svg {
      margin-right: 7px;
    }
  }
}
.menu_root-link {
  margin-left: 11px;
  margin-right: 11px;
  font-weight: 400;
  font-size: 15px;

  &.-active {
    color: var(--additional-text);
  }
}
.subheader_menu-right {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.menu_root-place-order-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 12px 20px;
  gap: 10px;

  margin-right: 22px;
  background: #1063CD;
  border-radius: 4px;

  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  text-transform: uppercase;

  color: #FFFFFF;
  text-decoration: none;

  &:hover {
    background: #0A4F9E;
  }
}
.menu_root-cart-info .highlight {
  color: #E4922F;
  font-weight: 500;
}
.menu_root-cart-info {
  margin-right: 22px;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #757D9F;
}
.menu_popup-icon {
  &, &.menu_popup-icon {
    margin-left: 6px;
    width: 8px;
    height: 8px;
  }
}
.avatar {
  width: 32px;
  height: 32px;
  overflow: hidden;
  border-radius: 100%;
  background-color: #fff;
  border: 1px solid ;

  color: #fff;
  font-weight: 500;
  font-size: 13px;
  line-height: 32px;
  text-transform: uppercase;
  text-align: center;


  &.-bg0 {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
  }
  &.-bg1 {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
  }
  &.-bg2 {
    background-color: var(--asap-orange);
    border-color: var(--asap-orange);
  }
  &.-bg3 {
    background-color: var(--secondary-text);
    border-color: var(--secondary-text);
  }
}
.avatar_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.filter {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  padding-bottom: 9px;
  border-bottom: 1px solid #D6DFF7;

  & .search_border-indication {
    margin-top: 9px;
  }

  &.-centered {
    justify-content: center;
    margin-top: 52px;
    border-bottom: none;
  }
}
.filter_col {
  min-width: 160px;
  &.-fix300 {
    flex: 0 0 300px;
  }

  &.-fluid {
    min-width: 0;
  }
  &.-large {
    flex: 1 1;
  }
  &.-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  &.-actions {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 8px;
  }
  &.-small {
    justify-content: space-between;
    margin-top: 14px;
  }
}
.filter_sep {
  width: 1px;
  height: 30px;
  background-color: var(--additional-text);
  margin: 0 16px;

  &.-fluid {
    width: auto;
    flex: 1 1;
    background-color: transparent;
  }

  &:last-child {
    margin-right: 0;
  }
}
.search {
  position: relative;
}
.search_indication {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -10px;
  & > svg {
    display: block;
    width: 20px;
    height: 20px;
  }
}
.search_label {
  position: absolute;
  height: 14px;
  left: 0;
  top: 50%;
  margin-top: -7px;
  color: var(--primary-blue);

  & > svg {
    display: block;
    width: 14px;
    height: 14px;
  }
}
.search_input input {
  display: block;
  width: 100%;
  height: 40px;
  padding: 0 25px 0 25px;
  border-radius: 0;
  background-color: transparent;
  border: 0;
  font: inherit;
}
.search_input:focus-within + .search_border-indication {
  width: 100%;
}
.search_input svg {
  position: absolute;
  height: 28px;
  right: 0;
  top: 50%;
  margin-top: -14px;
  cursor: pointer;
}
.search_border-indication {
  position: absolute;
  left: 0;
  top: 100%;
  width: 0;
  transition: all 300ms ease;
  border-bottom: 1px solid var(--primary-blue);
}
.dropdown {
  &.-open {
    & .dropdown_button {
      color: var(--primary-blue);
    }
    & .dropdown_icon {
      transform: rotate(180deg);
    }
  }
}
.dropdown_text {
  margin-right: 10px;
}
.dropdown_button {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  color: var(--primary-text);

  &:hover {
    text-decoration: none;
  }
}
.dropdown_icon {
  width: 10px;
  height: 9px;
  margin-left: auto;
}
.dropdown_popup {
  width: 200px;
  margin-top: 18px;
  overflow: hidden;
  z-index: 9999;

  &.-md {
    width: 380px;
    margin-top: 0;
  }

  &.-top {
    margin-top: -10px;
    width: 250px;
  }
}
.dropdown_search {
  border-bottom: 1px solid #D6DFF7;
  position: relative;
}
.dropdown_search-label {
  position: absolute;
  height: 14px;
  left: 15px;
  top: 50%;
  margin-top: -7px;
  color: #0e64cd;

  & > svg {
    display: block;
    width: 14px;
    height: 14px;
  }
}
.dropdown_search-input {
  display: block;
  width: 100%;
  height: 42px;
  padding: 0 10px 0 40px;
  border: 0;
  border-radius: 0;
  font-size: 14px;
}
.dropdown_suggest {
  margin: 10px 0;
}
.dropdown_suggest-item {
  padding: 3px 15px;

  &.-highlighted {
    text-decoration: underline;
    color: var(--primary-blue);
  }
  &.-selected {
    color: var(--primary-text);
  }
}
.dropdown_noresult {
  padding: 3px 15px;
  color: var(--additional-text);
}
.Popover-body {
  max-height: 80vh;
  overflow-y: auto;
}
.button {
  display: flex;
  padding: 0 30px;
  align-items: center;
  justify-content: center;
  height: 40px;
  font-weight: 400;
  font-size: 14px;
  border-radius: 4px;
  text-transform: uppercase;
  position: relative;

  &[disabled] {
    opacity: 0.5;
    pointer-events: none;
    user-select: none;
  }

  &.-block {
    width: 100%;
  }

  &.-primary {
    color: #ffffff;
    background: #1063cd;
    &:hover {
      background-color: #1a4fb5;
    }
  }

  &.-success {
    color: #ffffff;
    background: var(--primary-green);
    &:hover {
      background-color: #2aa882;
    }
  }

  &.-danger {
    color: #ffffff;
    background: var(--primary-red);
    &:hover {
      background-color: #d24260;
    }
  }

  &.-success-border {
    border: 2px solid currentColor;
    color: var(--primary-green);
    &:hover {
      color: #2aa882;
    }
  }

  &.-red-link {
    color: var(--primary-red);
    &:hover {
      color: #d24260;
    }
  }

  &.-default-link {
    color: var(--secondary-text);
    &:hover {
      color: var(--grey-again);
    }
  }

  &.-warning-link {
    color: var(--asap-orange);
    &:hover {
      color: var(--grey-again);
    }
  }

  &.-primary-link {
    color: var(--primary-blue);
    &:hover {
      color: var(--grey-again);
    }
  }

  &.-muted {
    color: #4c5783;
    background: #f2f6fa;
    &:hover {
      background-color: #f2f6fa;
    }
  }

  &.-warning {
    color: var(--white);
    background: var(--asap-orange);
  }

  &.-md {
    height: 56px;
    border-radius: 6px;
  }

  &.-xs {
    font-size: 13px;
    height: 30px;
  }

  &.-w152 {
    width: 152px;
  }
}
.__react_component_tooltip {
  text-transform: none !important;
}
.button_loading {
  width: 16px;
  height: 16px;

  &.-right {
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -8px;
  }

  &.-center {
    width: 26px;
    height: 26px;
  }
}
.table {
  width: 100%;
  font-size: 14px;
}
.table_loading-wrapper {
  position: relative;
}
.table_head-tr {
  display: flex;
  align-items: center;
  margin-bottom: 8px;

  &.-fixed-height {
    min-height: 48px;
    margin-bottom: 3;
  }
}
.table_tr {
  display: flex;
  align-items: center;
  background-color: var(--light-grey);
  margin:0 0 8px;
  border-radius: 4px;


  &.-link, & .-link {
    cursor: pointer;
    &:hover {
      background-color: #DEE8F1;
    }
  }

  &.-fixed-height {
    min-height: 64px;
  }
}
.table_td {
  flex: 0 1;
  padding: 12px 15px;

  &:empty {
    flex: 0 1;
  }

  & b {
    font-weight: 500;
  }

  & small {
    font-size: 12px;
  }

  &.-avatar {
    padding-right: 0;
    flex-basis: 50px;
  }
  &.-no-scale {
    flex-grow: 0;
    flex-basis: auto;
  }
  &.-auto {
    flex-grow: 1;
    flex-basis: auto;
  }
  &.-w12 {
    flex-basis: 12%;
  }
  &.-w15 {
    flex-basis: 15%;
  }
  &.-w17 {
    flex-basis: 17%;
  }
  &.-w50 {
    flex-basis: 50%;
  }
  &.-g8 {
    flex-grow: 1;
    flex-basis: 8%;
  }
  &.-g16 {
    flex-grow: 1;
    flex-basis: 16%;
  }
  &.-g20 {
    flex-grow: 1;
    flex-basis: 20%;
  }
  &.-g25 {
    flex-grow: 1;
    flex-basis: 25%;
  }
  &.-g33 {
    flex-grow: 1;
    flex-basis: 33%;
  }
  &.-g50 {
    flex-grow: 1;
    flex-basis: 50%;
  }
  &.-fix50 {
    flex-basis: 50px;
    flex-shrink: 0;
  }
  &.-fix100 {
    flex-basis: 100px;
    flex-shrink: 0;
  }
  &.-fix150 {
    flex-basis: 150px;
    flex-shrink: 0;
  }
  &.-fix200 {
    flex-basis: 200px;
    flex-shrink: 0;
  }
  &.-fix250 {
    flex-basis: 250px;
    flex-shrink: 0;
  }
  &.-fix75 {
    flex-basis: 75px;
    flex-shrink: 0;
  }
  &.-text-right {
    text-align: right;
  }
  &.-fix-date {
    flex-basis: 105px;
  }
  &.-fix-full-date {
    flex-basis: 170px;
  }
  &.-fix-id {
    flex-basis: 110px;
  }
  &.-human-readable-date {
    flex-basis: 170px;
    white-space: nowrap;
  }
  &.-truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  &.-hint {
    position: relative;
  }

  & .table_hint {
    display: none;
    position: absolute;
    top: 100%;
    font-size: 13px;
    line-height: 15px;
    color: #FFFFFF;
    padding: 6px 9px;
    background: rgba(22, 22, 22, 0.9);
    border-radius: 4px;
    z-index: 999;
    white-space: nowrap;
  }

  &:hover {
    & .table_hint {
      display: inline-block;
    }
  }
}
.table_title {
  padding: 0 15px;
  color: var(--secondary-text);
  text-align: left;
  white-space: nowrap;
}
.table_edit-link {
  width: 46px;
  height: 16px;
  display: block;
}
.table_text {
  &.-lines-2 {
    max-height: 40px;
    word-break: break-word;
    overflow: hidden;
  }

  &.-danger {
    color: #EA4968;
  }

  &.-danger.status {
    border-bottom: 1px dotted #EA4968;
  }

  &.-success {
    color: #3ABF77;
  }

  &.-warning {
    color: #E4922F;
  }

  &.-dotted-underline {
    border-bottom: 1px dotted;

    &.-warning {
      border-bottom-color: #E4922F;
    }

    &.-danger {
      border-bottom-color: #EA4968;
    }
  }
}
.table-button {
  cursor: pointer;
  color: #1063CD;
  font-weight: 500;
  font-size: 13px;
  line-height: normal;
  text-transform: uppercase;
  display: inline-block;
}
.table-button-separator {
  margin: 0 10px;
  color: #1063CD;
  font-weight: 500;
  font-size: 13px;
  line-height: normal;
  display: inline-block;
}
.status {
  display: inline-flex;
  align-items: center;
  position: relative;
  white-space: nowrap;
  &.-open {
    color: var(--primary-blue);
  }
  &.-delayed {
    color: var(--primary-blue);
  }
  &.-submitted {
    color: #449e48;
  }
  &.-approved {
    color: #449e48;
  }
  &.-skipped {
    color: var(--asap-orange);
  }
  &.-requested {
    color: #E4922F;
  }
}
.status.-children:not(.-short) .status_label::after {
  border: 16px solid transparent;
  content: '';
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-left: 0;
  border-right-width: 7px;
  margin-left: 5px;
  margin-right: -16px;
}
.status_label {
  height: 32px;
  display: flex;
  align-items: center;
  background-color: #fff;
  font-weight: 500;
  font-size: 12px;
  padding: 0 10px;
  position: relative;
  border-bottom-left-radius: 8px;
  text-transform: uppercase;
}
.status_text {
  font-weight: 400;
  font-size: 12px;
  margin-left: 8px;
  color: var(--primary-text);

  &.-delayed {
    color: var(--asap-orange);
  }
}
.status.-short {
  display: inline-block;
  overflow: inherit !important;
}
.status.-short .status_label {
  background: none;
  padding: 0;
  height: auto;
  display: inline-block;
  text-transform: capitalize;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
}
.order-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;

  & > svg {
    display: block;
  }
}
.toggle {
  display: flex;
  align-items: center;
}
.toggle_button {
  font-weight: 400;
  font-size: 15px;
  height: 40px;
  color: var(--secondary-text);
  transition: all 150ms ease;
  margin-right: 13px;

  &.-active {
    color: #1c2960;
  }
}
.toggle_runner {
  width: 40px;
  height: 20px;
  margin-right: 13px;
  border-radius: 40px;
  border: 2px solid var(--primary-blue);
  position: relative;

  &::after {
    width: 14px;
    height: 14px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    background-color: var(--primary-blue);
    content: "";
    left: 10px;
    border-radius: 100%;
    transition: all 150ms ease;
  }

  &.-left::after {
    left: 2px;
  }

  &.-right::after {
    left: 20px;
  }

  &.-single.-left::after {
    background-color: var(--secondary-text);
  }
}
.modal {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: #fff;
}
.modal_backdrop {
  width: 100%;
  height: 1000%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background-color: #fff;
}
.modal_open {
  overflow: hidden;
}
.modal_close {
  width: 16px;
  height: 16px;
  position: fixed;
  right: 32px;
  top: 32px;
  z-index: 1010;
}
.modal_title {
  height: 80px;
  position: absolute;
  padding: 0 32px;
  display: flex;
  align-items: center;
  left: 0;
  top: 0;
  background-color: #F2F6FA;
  width: 100%;
}
.modal_title h2 {
  font-weight: 400;
  font-size: 19px;
  display: block;
  max-width: 1293px;
  margin: 0 auto;
  width: 100%;
}
.modal_container {
  height: 100%;
  overflow: auto;
  position: relative;
}
.modal_dialog {
  padding: 80px 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;

  &.-tiny {
    padding: 30px 0 72px;
  }
}
.modal_inner-dialog {
  flex: 1 1;
}
.form {
  max-width: 610px;
  margin: 0 auto;

  &.-md {
    max-width: 800px;
  }
}
.form_title {
  text-align: center;
  margin: 0 0 40px;
  font-weight: 400;
  font-size: 16px;

  & + .form_text {
    margin-top: -40px;
  }
}
.form_password_title {
  text-align: center;
  font-weight: 500;
  font-size: 16px;
}
.form_password_subtitle {
  text-align: center;
  color: #4C5783;
  white-space: nowrap;
  margin-bottom: 20px;
  font-weight: 400;
}
.form_text {
  margin: 0 0 40px;
  text-align: center;

  & b {
    font-weight: 400;
  }
}
.form_group {
  margin-bottom: 15px;
}
.form_row {
  display: flex;
  flex-direction: row;
}
.form_col {
  flex: 1 1;

  & + .form_col {
    margin-left: 20px;
  }
}
.form_controls {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1020;
  background: #FFFFFF;
  box-shadow: 0px -1px 34px rgba(48, 76, 109, 0.1);
}
.form_controls-hint {
  padding: 16px 0;
  max-width: 150px;
  font-weight: 400;
  font-size: 12px;
  color: gray;
}
.form_controls-container {
  max-width: 610px;
  padding: 16px 0;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.form_controls.-replenishment .form_controls-container {
  max-width: 1600px;
  margin: 0 auto;
  justify-content: flex-end;
  padding: 16px 20px;
}
.form_controls.-replenishment .form_controls-container .replcut_body {
  width: auto;
}
.form_controls.-replenishment .form_controls-container .replcut_body div div {
  display: inline-block;
  padding: 0 8px;
}
.form_controls.-replenishment .form_controls-container .replcut_body div div + div {
  border-left: 1px solid #757D9F;
}
.form_section {
  padding: 10px 25px;
  border: 1px dashed #D1D9F0;
  border-radius: 6px;

  & + .form_section {
    margin-top: 20px;
  }
}
.form_divider {
  height: 1px;
  background: #757D9F;
  border: 0;
  margin: 20px 0 17px;
}
.form_section-delete {
  margin-top: 9px;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  cursor: pointer;
  color: #EA4968;
}
.form_control{
  &.-size {
    width: 160px;
  }
  &.-right {
    margin-left: auto;
  }
  &.-left {
    margin-right: auto;
  }
}
.form_buttons {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.form_toggle {
  background: #D6DFF7;
  border-radius: 12px;
  padding: 4px 16px;
}
.input {
  position: relative;
}
.input_title {
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 8px;
  color: #757D9F;
  text-transform: uppercase;

  &.-flex-between {
    display: flex;
    justify-content: space-between;
  }
}
.input_title-published {
  margin-left: 8px;
  color: #757D9F;
}
.input_label,
.dropdown > label {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: var(--secondary-text);
  margin-bottom: 5px;
  text-transform: uppercase;
}
.section_label {
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 5px;
  text-transform: uppercase;
  color: #051350;
}
.input_label-tooltip {
  display: inline-block;
  left: 5px;
  position: relative;
  bottom: -4px;
}
.input_label .__react_component_tooltip {
  text-transform: none;
}
.input_label_info {
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 5px;
}
.input_input {
  display: block;
  width: 100%;
  height: 56px;
  border: 1px solid var(--secondary-text);
  border-radius: 6px;
  padding: 0 15px;
  font-size: inherit;

  &::placeholder {
    color: var(--additional-text);
  }

  &:focus {
    border-color: var(--primary-blue);
  }

  &.-error {
    border-color: var(--primary-red);
  }

  &.-sm {
    font-size: 14px;
    height: 40px;
  }

  &.-flex {
    display: flex;
  }
}
.input_error {
  position: absolute;
  top: 5px;
  right: 0;
  font-size: 13px;
  line-height: 15px;
  color: var(--primary-red);
}
.order-snippet_edit-row {
  display: flex;
  margin: 0 -4px 0;

  &.-flex-end {
    align-items: flex-end;
  }
}
.order-snippet_edit-col {
  flex: 1 1;
  margin: 0 4px;

  &.-label {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 13px 0;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.16;
    text-transform: uppercase;
    color: var(--secondary-text);
  }
}
.input_textarea {
  border: 1px solid #757d9f;
  border-radius: 6px;
  width: 100%;
  height: 178px;
  display: block;
  padding: 15px;
  font-size: inherit;
  font-family: inherit;

  &.-sm {
    width: 100%;
    min-height: 328px;
    resize: none;
  }
}
.input_preview {
  border: 1px solid #757d9f;
  border-radius: 6px;
  width: 608px;
  min-height: 144px;
  padding: 15px;
  background-color: #f9f9f9;
}
.input_hint {
  margin-top: 12px;
  font-size: 12px;
  line-height: 14px;
  color: #757D9F;
  text-align: left;
}
#tooltip-checkout-manager {
  width: 240px;
  font-size: 13px;

  & ul {
    margin: 15px 0 0;

    & li {
      list-style: initial;
      margin-left: 20px;
    }
  }
}
.white-bg {
  background-color: white;
}
.select {
  position: relative;
}
.select_label {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: var(--secondary-text);
  margin-bottom: 5px;
  text-transform: uppercase;
}
.select_error {
  position: absolute;
  top: 5px;
  right: 0;
  font-size: 13px;
  line-height: 15px;
  color: var(--primary-red);
}
.select__control {
  border: 1px solid var(--secondary-text);
}
.select__multi-value {
  background-color: var(--light-grey);
}
.select__value-container {
  padding: 5px 8px !important;
}
.select__control {
  border: 1px solid var(--secondary-text) !important;
  border-radius: 6px !important;
  min-height: 56px !important;
}
.select__control--is-focused {
  box-shadow: none !important;
  border-color: var(--primary-blue) !important;
}
.select__input {
  margin-left: 4px !important;
}
.select__multi-value {
  background-color: var(--light-grey) !important;
}
.select__multi-value__label {
  font-size: 16px !important;
  font-weight: 400;
  padding: 8px !important;
  color: var(--grey-again) !important;
}
.select__multi-value__remove {
  color: var(--grey-again) !important;
  cursor: pointer;

  &:hover {
    background-color: #DEE8F1 !important;
  }

  & > svg {
    width: 18px !important;
    height: 18px !important;
  }
}
.select__placeholder {
  color: var(--additional-text) !important;
  margin-left: 6px !important;
}
.select__menu {
  z-index: 1030 !important;
}
.upload-avatar {
  position: relative;
}
.upload-avatar_circle {
  width: 96px;
  height: 96px;
  position: absolute;
  z-index: 0;
  top: 0;
  right: 100%;
  margin: 10px 40px 0 0;
  overflow: hidden;
  border: 1px solid var(--lines-grey);
  background-color: var(--lines-grey);
  border-radius: 100%;
  transition: all 150ms ease;
  cursor: pointer;

  &:hover {
    background-color: var(--primary-blue);
  }

  &::after {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    content: 'Upload photo';
    font-size: 15px;
    line-height: 1;
    font-weight: 400;
    color: #fff;
  }
}
.upload-avatar_input {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 400px;
  z-index: -1;
  cursor: pointer;
}
.upload-avatar_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.order-snippet {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  margin: 10px 0;

  &:first-child {
    margin-top: 0;
  }
  &:last-child {
    margin-bottom: 0;
  }
}
.order-snippet.-hero {
  & .order-snippet_col {
    background-color: transparent;
  }

  & .order-snippet_col.-info {
    padding-left: 0;
    grid-template-columns: 130px auto auto;
    min-height: 140px;
  }

  & .order-snippet_price,
  & .order-snippet_sku,
  & .order-snippet_erp-catalog {
    font-size: 15px;
  }

  & .order-snippet_title {
    font-size: 18px;
  }
}
.order-snippet.-small {
  position: relative;
  margin: 0;
  & .order-snippet_col {
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 0;
    background-color: transparent;
    grid-template-columns: 80px auto 40px;
  }

  & .order-snippet_col.-info {
    flex: 1 1;
    padding-left: 10px;
    padding-right: 10px;
    grid-template-areas:
      'image title title threshold'
      'image packaging packaging packaging'
      'image info price price';
    grid-template-rows: min-content min-content 1fr;
  }

  & .order-snippet_image-wrapper {
    margin-right: 10px;
  }

  & .order-snippet_title {
    font-size: 14px;
    line-height: 18px;
    overflow: hidden;
  }

  & .order-snippet_count {
    grid-area: image;
    font-size: 12px;
    position: absolute;
    left: -10px;
    bottom: -10px;
  }

  & .order-snippet_price {
    font-size: 13px;
    color: #051350;
    align-self: end;
  }
}
.order-snippet.-small .order-snippet_packaging {
  margin-top: 0;
}
.order-snippet.-small .order-snippet_col {
  min-height: 0;
}
.order-snippet_col {
  padding: 20px;
  background-color: rgba(0, 69, 150, 0.05);
  min-height: 100px;

  &.-info {
    display: grid;
    grid-template-areas:
      'image title title extra'
      'image title title extra'
      'image packaging packaging packaging'
      'image info price price';
    grid-template-rows: auto auto auto 20px;
    grid-template-columns: 100px auto min-content;
    flex: 1 1 380px;
    position: relative;
    &.-large {
      flex-grow: 1;
    }
  }

  &.-edit {
    flex: 1 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding-bottom: 14px;
  }

  &:first-child {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
  }

  &:last-child {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
  }
}
.order-snippet_image-wrapper {
  grid-area: image;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  position: relative;
  min-height: 60px;
}
.order-snippet_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.order-snippet_sep {
  flex: 0 0 2px;
  background-color: #fff;
}
.order-snippet_title {
  grid-area: title;
  font-weight: 400;

  & a {
    color: inherit;
  }
}
.order-snippet_inventory {
  text-align: right;

  & span {
    color: #3ABF77;
  }
}
.order-snippet_price {
  grid-area: price;
  text-align: right;
  line-height: 20px;
  font-size: 15px;
  color: var(--secondary-text);
  white-space: nowrap;

  & b {
    font-weight: 400;
  }
}
.order-snippet_erp {
  grid-area: info;
  text-align: left;
  line-height: 20px;
  font-size: 15px;
  color: var(--secondary-text);
  white-space: nowrap;

  & b {
    font-weight: 400;
  }
}
.order-snippet_info {
  grid-area: info;
  line-height: 20px;
  font-size: 13px;
  color: var(--secondary-text);
  display: flex;
  align-self: end;
}
.order-snippet_erp-catalog::before {
  content: "•";
  margin: 0 5px;
}
.order-snippet_edit-amount {
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: var(--primary-text);
  border-bottom: 1px dashed var(--additional-text);

  & + .order-snippet_edit-title {
    margin-top: 7px;
  }
}
.order-snippet_edit-price {
  font-weight: 500;
}
.order-snippet_edit-title {
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  color: var(--primary-text);

  &.-not-available {
    font-weight: 400;
    color: var(--secondary-text);
  }

  & + .order-snippet_edit {
    margin-top: 2px;
  }
}
.order-snippet_edit-link {
  color: var(--denim);
}
.order-snippet_edit-opener {
  width: 46px;
  height: 16px;

  color: var(--primary-blue);

  & > svg {
    display: block;
    width: 100%;
    height: 100%;
  }
}
.order-snippet_edit-popup {
  width: 265px;
  padding: 16px;
  z-index: 9999;
}
.order-snippet_edit-toggle {
  margin: -16px -16px 16px;
  padding: 5px 16px;
  border-bottom: 1px solid #d6dff7;
}
.order-snippet_count {
  grid-area: extra;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  text-align: right;
  font-weight: 400;
  white-space: nowrap;
}
.order-snippet_hint {
  margin: 9px 0;
  padding: 6px 4px 4px;
  background: var(--black-squeeze);
  border-radius: 4px;
  text-align: center;
  font-size: 11px;
  line-height: 1.18;
  text-transform: uppercase;
  color: var(--secondary-text);
}
.order-snippet_action {
  width: 24px;
  height: 24px;
  color: #97A2C8;
  cursor: pointer;
  position: absolute;
  top: 5px;
  right: 5px;
  padding: 5px;

  &:hover {
    color: var(--primary-red);
  }
}
.order-snippet_packaging {
  grid-area: packaging;
  line-height: 20px;
  font-size: 12px;
  color: #051350;
  margin-top: 2px;
}
.order-snippet_threshold-button-wrapper {
  grid-area: threshold;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.order-snippet_threshold-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 52px;
  height: 24px;
  padding: 0 8px;
  font-size: 12px;
  font-weight: 500;
  color: #757D9F;
  background-color: #FFFFFF;
  border: 1px solid #E0E4ED;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;

  & svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }

  &:hover {
    border-color: #757D9F;
    background-color: #F8F9FB;
  }

  &.-active {
    color: #FFFFFF;
    background-color: #E4922F;
    border-color: #E4922F;

    &:hover {
      background-color: #D37F1C;
      border-color: #D37F1C;
    }
  }
}
.order-details {
  display: flex;
}
.order-details_col {
  &.-left {
    border-top: 1px solid #D6DFF7;
    flex: 0 0 360px;
    margin-right: 96px;
  }

  &.-right {
    flex: 1 1;
  }
}
.order-details_title {
  padding: 16px 0;
  margin-left: 40px;
  border-bottom: 1px solid #D6DFF7;
  position: relative;
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.order-details_title-icon{
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100%;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.order-details_props {
  margin: 20px 0 20px 40px;
  & dt {
    font-size: 10px;
    color: var(--additional-text);
    text-transform: uppercase;
  }
  & dd {
    text-transform: capitalize;
  }
}
.order-details_download {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.14;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  color:var(--denim);
  appearance: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
}
.order-details_download-icon {
  margin-right: 7px;
  line-height: 0;
}
.catalog {
  &.-fixed-height {
    height: calc(100vh - 131px);
  }
}
.catalog_col {
  &.-left {
    flex: 0 0 260px;
    margin-right: 20px;
  }

  &.-right {
    flex: 1 1;
  }
}
.catalog_title {
  font-size: 15px;
  color: var(--secondary-text);
}
.catalog_props {
  margin: 20px 0;
  & dt {
    margin-bottom: 5px;
    font-size: 10px;
    color: var(--additional-text);
    text-transform: uppercase;
  }

  & dd {
    line-height: 1.5;
  }
}
.catalog_virtual-list {
  & > div {
    max-width: 1152px;
    margin: 0 auto;
    position: relative;
  }
}
.catalog_update-col {
  display: flex;
  align-items: center;
  padding-left: 50px;
  margin-left: auto;
}
.catalog_update {
  margin-left: 55px;
  padding-left: 0;
  padding-right: 0;

  & > svg {
    width: 15px;
    height: 14px;
    margin-right: 7px;
  }
}
.catalog_update-count {
  font-size: 14px;
  color: var(--secondary-text);
}
.pager {
  height: 40px;
  display: flex;
  align-items: center;

  &.-right {
    justify-content: flex-end;
  }
}
.pager_button {
  width: 16px;
  height: 16px;

  & > svg {
    width: 100%;
    height: 100%;
    display: block;
  }
}
.pager_title {
  font-weight: 400;
  width: 155px;
  text-align: center;
}
.pager_info {
  margin-right: 40px;
  color: var(--secondary-text);
  font-size: 14px;
  line-height: 1.14;
}
.replenishment {
  height: calc(100vh - 148px);
  overflow: hidden;
  overscroll-behavior: contain;
  position: relative;
  z-index: 0;
}
.replenishment_container {
  max-width: 1600px;
  margin: 0 auto;
}
.replenishment_iframe {
  margin-top: -10px;
  width: 100%;
  height: calc(100vh - 150px);
  border: 0;
}
.replenishment_body {
  width: 100%;
  //height: calc(100vh - 148px - 42px - 52px);
  height: calc(100vh - 148px - 42px);

  &.-month-selected > div > div > div {
    margin-bottom: 100px;
  }
}
.replenishment_col {
  flex: 1 1 100px;
  border-left: 2px solid #fff;

  &.-product {
    flex: 0 0 300px;
    position: sticky;
    left: 0;
    background-color: #fff;
    z-index: 1;
    border: 0;
    box-shadow: 2px 0 0 0 #fff;
  }
}
.replenishment_product {
  position: relative;
  z-index: 0;
  background-color: #f2f6fa;
}
.replenishment_product-link {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  cursor: pointer;

  &::after {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    z-index: -1;
  }

  &.-delete {
    &::after {
      background-color: #f2f6fa;
    }

    &:hover::after {
      background-color: #dee8f1;
    }
  }

  &.-add {
    &::after {
      background-color: #e7f5ea;
    }

    &:hover::after {
      background-color: #f2f8f5;
    }
  }
}
.replenishment_row {
  display: flex;
  border-bottom: 2px solid #fff;
  padding-right: 2px;
  position: relative;

  &.-empty {
    background-color: #f4f8f2;
    align-items: center;
  }

  &.-header,
  &.-footer {
    width: 100%;
    position: sticky;
    z-index: 2;
    overflow: hidden;
    background-color: #fff;
    padding-right: 0;

    &:not(.-empty) {
      padding-right: 5px;
      @supports (scrollbar-width: thin) {
        padding-right: 13px;
      }
    }
  }

  &.-header {
    top: 0;
    box-shadow: 0px -1px 20px rgba(48, 76, 109, 0.144);
  }

  &.-footer {
    bottom: 0;
    box-shadow: 0px -1px 20px rgba(48, 76, 109, 0.144);
  }
}
.replenishment_title {
  display: flex;
  height: 40px;
  align-items: center;
  font-weight: 400;
  background-color: #fff;
}
.replenishment_month {
  height: 40px;
  text-align: center;
  position: relative;
  padding-top: 4px;
}
.replenishment_month-status {
  height: 100%;

  &.-delayed {
    background-color: var(--asap-orange);
  }

  &.-open {
    background-color: var(--primary-green);
  }

  &.-skipped {
    background-color: var(--primary-red);
  }

  &.-submitted {
    background-color: var(--primary-green);
  }

  &.-done {
    background-color: var(--primary-green);
  }

  &.-current {
    background-color: var(--primary-red);
  }
}
.replenishment_month-title {
  width: 100%;
  display: flex;
  height: 26px;
  align-items: center;
  border-radius: 2px;

  font-size: 13px;
  justify-content: center;
  cursor: pointer;

  &.-button {
    background-color: var(--light-grey);
  }

  &:hover,
  &.-selected {
    background-color: var(--light-grey);
    color: var(--primary-green);
  }
}
.replenishment_month-icon {
  margin-right: 8px;

  &.-lock {
    width: 11px;
    height: 15px;
    color: var(--asap-orange);
  }

  &.-lock-ok {
    width: 11px;
    height: 15px;
    color: var(--primary-green);
  }

  &.-chevron {
    width: 8px;
    height: 5px;
    margin: 0 0 0 8px;
  }

  &.-rotate {
    transform: rotate(180deg);
  }

  &.-cross {
    width: 13px;
    height: 13px;
    color: var(--primary-red);
  }

  &.-lock-dot {
    width: 13px;
    height: 13px;
    color: var(--primary-green);
  }

  &.-check-circle {
    width: 15px;
    height: 15px;
    color: var(--primary-green);
  }
}
.replenishment_month-status-wrapper {
  height: 3px;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: var(--lines-grey);
  overflow: hidden;
  border-radius: 1px;
}
.replenishment_costs-inner-wrapper {
  display: flex;
}
.replenishment_costs-title {
  height: 50px;
  padding-right: 36px;
  font-weight: 400;
  font-size: 14px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: #3a405f;

  &.-with-sum {
    padding-bottom: 18px;
  }
}
.replenishment_cost {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 50px;
  font-size: 13px;
  color: var(--secondary-text);
}
.replenishment_cost-sum {
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  color: #3a405f;
}
.replenishment_add-button {
  width: 100px;
  position: sticky;
  left: calc(50% + 100px);
}
.replenishment_item-action {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.replenishment-empty {
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--light-grey);
  color: var(--grey-again);
  position: relative;
}
.replenishment-empty_icon {
  position: absolute;
  width: 46px;
  height: 50px;
  left: 50%;
  top: 50%;
  transform: translate(-184px, 77px);
}
.replenishment-empty_title {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 5px;
}
.replenishment-empty_message {
  font-size: 13px;
  line-height: 15px;
}
.auth-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  flex-direction: column;
}
.auth-wrapper_form {
  max-width: 400px;
  margin: 0 auto;
}
.auth-wrapper_logo {
  line-height: 0;
  margin-bottom: 64px;
  z-index: 100;
}
.auth-wrapper_title {
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 20px;
}
.alert {
  display: flex;
  align-items: center;
  border-radius: 6px;
  padding: 20px;
  margin: 40px 0;
  font-size: 15px;

  &.-red {
    background-color: rgba(234, 73, 104, 0.1);
    color: var(--primary-red);
  }
}
.alert_icon {
  width: 18px;
  height: 22px;
  display: block;
  margin-right: 20px;
}
.alert_list {
  list-style: disc;
  padding-left: 1em;
}
.product {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: #fff;
  padding-bottom: 50px;
  z-index: 1;
}
.product_header {
  background-color: #f2f6fa;
  border-bottom: 2px solid #fff;
}
.product_container {
  position: relative;
}
.product_header-title {
  padding: 30px 0;
  font-weight: 400;
  font-size: 19px;
}
.product_close{
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  margin-top: -8px;
  right: 32px;

  & > svg {
    display: block;
    width: 100%;
    height: 100%;
  }

  &:hover {
    color: var(--primary-blue);
  }
}
.product_header-row {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
}
.product_header-col {

  &.-big {
    position: relative;
    flex: 1 1;
  }

  &.-small {
    padding: 10px 0;
    flex: 0 0 25%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
  }
  &.-v-sep {
    width: 2px;
    background-color: #fff;
  }
  &.-h-sep {
    width: 100%;
    height: 2px;
    background-color: #fff;
  }
}
.product_range {
  padding-top: 20px;
  padding-left: 50px;
  position: relative;
  padding-right: 90px;
}
.product_range-title {
  font-weight: 400;
  font-size: 15px;
  margin-bottom: 20px;
}
.product_range-reset {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 19px;
  right: 0;
  color: var(--secondary-text);
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;


  & > svg {
    display: block;
    width: 12px;
    height: 16px;
    margin-right: 5px;
  }
}
.product_row {
  display: flex;
}
.product_col {
  flex: 1 1 94px;
  margin-left: 2px;
}
.product_month-title {;
  text-align: center;
  color: var(--grey-again);
  font-size: 14px;
  padding-bottom: 13px;
  position: relative;
  z-index: 3;

  &.-current::after {
    width: 3px;
    height: 3px;
    margin-left: -2px;
    content: "";
    position: absolute;
    left: 50px;
    bottom: 5px;
    background-color: currentColor;
    border-radius: 100%;
  }
}
.product_toggle-compare {
  & .toggle .toggle_runner.-single.-right::after {
    background-color: #E6ABBB;
  }
}
.range {
  margin-top: 8px;
}
.range_control {
  display: block;
  border-radius: 1px;
  background: linear-gradient(270deg, #56cc8c 9.45%, rgba(85, 255, 224, 0) 74.61%), #1063cd;
  appearance: none;
  width: 100%;
  height: 4px;
  margin: 0;
  cursor: pointer;

  &::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: 6px solid transparent;
    border-top-color: #2a96c9;
    border-top-width: 8px;
    width: 0;
    height: 0;
    position: relative;
    margin-top: -6px;
  }

  &::-ms-track {
    width: 100%;
    cursor: pointer;
    background: transparent;
    border-color: transparent;
    color: transparent;
  }
}
.range_controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  box-shadow: 0px 7px 11px rgba(5, 19, 80, 0.07);
  border-radius: 0px 0px 6px 6px;
  padding: 12px;
  position: relative;

  &::before {
    content: "";
    position: absolute;
    border: 3px solid transparent;
    border-bottom-color: #fff;
    bottom: 100%;
    left: 50%;
    margin-left: -3px;
  }
}
.range_button {
  width: 57px;
}
.range_value {
  text-align: center;
  flex: 1 1;
  font-size: 17px;
  color: #36AABE;
  font-weight: 400;
}
.tile {
  height: 100px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  &.-forecast {
    background-color: rgba(250, 192, 26, 0.11) !important;
  }

  &.-done {
    background-color: #f2f6fa;
  }

  &.-available {
    border: 2px solid #d1d9f0;
    margin: 0 -2px;
  }

  &.-protected {
    background: repeating-linear-gradient(-45deg, #f2f6fa, #f2f6fa 5px, #fff 5px, #fff 10px);
  }

  &.-product {
    flex-basis: auto;
  }

  &.-bordered {
    border: 2px solid #d1d9f0;
  }

  &.-selected {
    background-color: rgba(58, 191, 119, 0.1);
    border: 1px solid #3ABF77;

    &.-protected {
      background: repeating-linear-gradient(-45deg, #f2f6fa, #f2f6fa 5px, #fff 5px, #fff 10px);
    }

    &.-done {
      background-color: #f2f6fa;
    }

    &.-available {
      border-right-width: 3px;
    }
  }

  & .stock-state {
    position: absolute;
    bottom: 5px;
    left: 5px;
    right: 5px;
    z-index: 10;

    & div {
      padding: 4px 0;
      text-align: center;
      font-size: 10px;
      border-radius: 2px;
    }
    & .in-stock {
      background-color: #F2F6FA;
      color: #757D9F;
    }
    & .low-stock {
      background-color: #E4922F;
      color: #FFFFFF;
    }
    & .out-of-stock {
      background-color: #EA4968;
      color: #FFFFFF;
    }
  }
}
.shipment-amount {
  position: relative;
}
.shipment-amount span {
  position: absolute;
  bottom: 0;
  font-weight: 400;
  font-size: 13px;
  color: var(--grey-again);
}
.tile_count-toggle {
  &:hover {
    color: var(--primary-blue);
  }
}
.tile_filled-in {
  position: absolute;
  bottom: 2px;
  color: var(--grey-again);
  font-size: 13px;
}
.tile_statuses {
  position: absolute;
  top: 5px;
  right: 5px;
  display: flex;
  align-items: flex-start;
}
.tile_correlation {
  display: block;
  width: 14px;
  height: 14px;
  margin-left: 1px;
  margin-top: 3px;

  &.-up {
    color: var(--primary-green);
  }

  &.-down {
    color: var(--primary-red);
  }
}
.tile_count {
  background-color: #fff;
  position: absolute;
  top: -2px;
  left: -1px;
  right: -1px;
  bottom: -2px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary-blue);
  border-radius: 4px;
  z-index: 2;
}
.tile_count-controls {
  display: flex;
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 4px;
  /* overflow: hidden; */
  border-radius: 2px;
}
.tile_count-control {
  flex: 1 1;
  height: 24px;
  background: linear-gradient(0deg, #f2f6fa, #f2f6fa), #d1dbf6;
  color: #05135078;
  font-weight: 400;
  font-size: 13px;
  text-align: center;

  &:hover {
    color: var(--primary-blue);

    & + .replcut {
      display: block;
      margin-top: 6px;
    }
  }

  & + .replcut {
    display: none;
  }
}
.tile_count-input {
  width: 100%;
  display: block;
  padding: 0;
  appearance: textfiled;
  border: 0;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  text-align: center;
  font-family: inherit;

  &::-webkit-outer-spin-button,
  &::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
}
.tile_count-hint {
  position: absolute;
  top: 100%;
  padding: 8px 12px;
  right: 50%;
  width: 191px;
  font-size: 13px !important;
  line-height: 15px !important;
  margin-top: 3px;
  margin-right: 6px;

  &::before {
    content: none !important;
  }

  &.-right {
    left: 50%;
    margin-left: 6px;
    margin-right: 0;
    right: auto;
  }
}
.tcut {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
}
.tile_count + .tcut {
  display: none;
}
.tcut_body {
  display: flex;
  padding: 14px 0 16px 8px;
}
.tcut_col {
  flex: none;
  width: 254px;
  padding: 0 8px;
}
.tcut_scroll {
  max-height: 225px;
  overflow: auto;
  padding-right: 5px;
}
.tcut_popover {
  z-index: 80;
  &.Popover-below {
    margin-top: -5px;
  }
  &.Popover-above {
    margin-top: -15px;
  }
}
.tcut_toggle {
  display: flex;
  position: absolute;
  left: 50%;
  margin-left: -15px;
  top: -25px;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background: #fff;
  border: 1px solid var(--lines-grey);
  &.-active {
    z-index: 90;
  }
}
.Popover-above .tcut_toggle {
  top: auto;
  bottom: -25px;
}
.tcut_icon {
  &.-hellip {
    width: 16px;
    height: 4px;
    color: var(--secondary-text);
  }
  &.-cross {
    width: 16px;
    height: 16px;
    color: currentColor;
  }
}
.tcut_title {
  display: flex;
  align-items: center;
  font-size: 12px;
  margin-bottom: 8px;
  font-weight: 400;
  color: var(--secondary-text);
}
.tcut_circle {
  width: 8px;
  height: 8px;
  border-radius: 100%;
  margin-left: 4px;
  margin-bottom: 1px;

  &.-blue {
    background-color: var(--primary-blue);
  }

  &.-pink {
    background-color: #f19cbd;
  }
}
.tcut_item {
  display: block;
  padding: 10px 10px 35px 38px;
  position: relative;
  background-color: var(--light-grey);
  border: 1px solid transparent;
  border-radius: 4px;
  text-decoration: none;
  font-size: 15px;
  color: var(--primary-text);
  margin-bottom: 8px;

  &:last-child {
    margin-bottom: 0;
  }

  &:hover {
    border-color: var(--lines-grey);
    box-shadow: 0px 7px 11px rgba(5, 19, 80, 0.07);
    background-color: #fff;

    & .tcut_item-icon.-link {
      display: block;
    }
  }
}
.tcut_item-icon {
  position: absolute;

  &.-link {
    top: 7px;
    right: 7px;
    width: 9px;
    height: 9px;
    color: var(--primary-blue);
    display: none;
  }

  &.-status {
    top: 11px;
    left: 7px;
  }
}
.tcut_item-title {
  font-weight: 400;
}
.tcut_item-units {
  position: absolute;
  left: 38px;
  bottom: 10px;
}
.tcut_item-date {
  position: absolute;
  right: 10px;
  bottom: 10px;
  color: var(--secondary-text);
  font-size: 13px;
}
.graph {
  margin: 30px 0;
  height: 300px;
  display: flex;
  position: relative;
  align-items: stretch;
}
.graph path {
  pointer-events: none;
}
.graph circle {
  transition: 0.1s linear;
}
.graph_month {
  flex: 1 1;
  position: relative;
  color: var(--light-grey);

  &::before {
    width: 1px;
    height: 100%;
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    background-color: currentColor;
  }
}
.graph_dot {
  cursor: pointer;
}
.graph_frame {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  & img {
    height: 100%;
  }
}
.graph_replenish circle {
  fill: var(--primary-blue);
  r: 6.5;

  &:hover {
    r: 7.5;
  }
}
.graph_replenish path {
  stroke: var(--primary-blue);
  fill: transparent;
  stroke-width: 2px;
}
.graph_compare .graph_dot {
  fill: #F19CBD;
  r: 5.5;

  &:hover {
    r: 6.5;
  }
}
.graph_compare .graph_line {
  stroke: #F19CBD;
  stroke-width: 2px;
  fill: transparent;
}
.-dashed path {
  stroke-dasharray: 4 4;
}
.graph_planned circle {
  fill: var(--lines-grey);
  r: 3.5;

  &:hover {
    r: 4.5;
  }
}
.graph_planned path {
  stroke: var(--lines-grey);
  fill: transparent;
}
.graph_minmax circle {
  fill: var(--additional-text);
  r: 4.5;
  
  &:hover {
    r: 5.5;
  }
}
.graph_minmax path {
  display: none;
}
/* yeah... */
.graph_tooltip {
  font-size: 14px !important;
  pointer-events: auto !important;
  font-weight: 400 !important;
  color: var(--grey-again) !important;
  background-color: #f2f6fa !important;
  padding: 10px 15px !important;
  min-width: 120px !important;

  &:hover {
    visibility: visible !important;
    opacity: 1 !important;
  }

  &::before,
  &::after {
    content: none !important;
  }
}
.graph_tooltip strong {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.1;
}
.replcut {
  color: #D6DFF7;
  z-index: 1;
  background: #222F3E;
  border: 1px solid #D1D9F0;
  box-shadow: 0px 16px 26px rgba(5, 19, 80, 0.07);
  border-radius: 6px;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;

  &::before {
    height: 16px;
    width: 2px;
    position: absolute;
    left: 50%;
    margin-left: -1px;
    content: '';
    background-color: var(--lines-grey);

    @media (max-width: 1280px) {
      display: none;
    }
  }

  &.Popover-below {
    margin-top: 11px;

    &::before {
      bottom: 100%;
    }
  }

  &.Popover-above {
    margin-top: -11px;
    &::before {
      top: 100%;
    }
  }
}
.replcut_hr {
  height: 1px;
  border: none;
  background: #576574;
  margin: 6px -16px;
}
.replcut_body {
  min-width: 200px;
  padding: 10px 16px;

  &.-notice {
    width: 216px;
    padding: 14px 18px;
    font-family: 'Roboto', Arial, sans-serif !important;

    &.-auto {
      width: auto;
      max-width: 216px;
    }

    & div + div {
      margin-top: 5px;
    }
  }
}
.replcut_title {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 5px;
}
.replcut_year {
  float: right;
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 400;
  color: var(--secondary-text);
  margin-top: 4px;
}
.replcut_circle {
  width: 8px;
  height: 8px;
  border-radius: 100%;
  margin-left: 4px;
  margin-bottom: 1px;

  &.-blue {
    background-color: var(--primary-blue);
  }

  &.-pink {
    background-color: #f19cbd;
  }
}
.replcut_list {
  font-size: 14px;
  list-style: disc;
  padding: 0 0 0 18px;

  & li {
    margin: 2px 0;
  }

  & dl {
    display: flex;
    justify-content: space-between;
  }

  & dt {
    display: flex;
  }

  & dd {
    font-weight: 400;
  }

  & b {
    font-weight: 400;
  }
}
.replcut_list-icon {
  width: 25px;
  margin-left: -3px;
}
.replcut_text {
  font-weight: 400;
  font-size: 14px;
}
.replcut_sep {
  height: 1px;
  background-color: var(--lines-grey);
  margin: 11px -16px;
}
.replcut_reset {
  width: 100%;
}
.replcut_info {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 6px 0;
  color: #D6DFF7;

  & > svg {
    width: 14px;
    margin-right: 9px;
    margin-top: 2px;
  }

  &.-center {
    align-items: center;

    & > svg {
      margin-top: 0;
    }
  }

  &.-placeholder {
    padding: 10px 0;
    opacity: 0.5;
    font-weight: 400;
    justify-content: center;
    text-align: center;
  }
}
.replcut_info-text {
  flex: 1 1;
  font-size: 14px;
  line-height: 16px;
  text-align: left;

  &.-center {
    text-align: center;
  }

  & strong {
    display: block;
    font-weight: 500;
    margin-bottom: 2px;
  }
}
.replcut_mark {
  color: #EB5757;
}
.splash {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
}
.splash_wrapper {
  position: relative;
}
.splash_icon {
  width: 48px;
  height: 48px;
  color: var(--primary-blue);
}
.splash.-small .splash_icon {
  width: 24px;
  height: 24px;
}
.import {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.import_backdrop {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(13, 35, 74, 0.30);
  z-index: 1;
}
.import_dialog {
  width: 420px;
  height: 320px;
  background-color: #fff;
  border-radius: 6px;
  position: relative;
  z-index: 2;
  padding: 20px;
}
.import_close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 20px;
  height: 20px;
  transform: rotate(45deg);

  &::before, &::after {
    width: 100%;
    height: 2px;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: currentColor;
  }

  &::after {
    transform: rotate(90deg);
  }
}
.import_title {
  height: 25px;
  display: flex;
  align-items: center;
  font-weight: 400;
  margin: -4px 0 12px;
}
.import_dropzone {
  display: flex;
  height: 135px;
  border: 1px dashed var(--lines-grey);
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  margin-bottom: 17px;
  cursor: pointer;
  &.-selected {
    border-color: var(--primary-blue);
    font-weight: 400;
  }

  &:hover, &.-over {
    border: 2px solid var(--primary-green);
  }
}
.import_dropzone-input {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 400px;
  cursor: pointer;
}
.import_dropzone-text {
  font-size: 14px;
  color: var(--grey-again);
  text-align: center;
  pointer-events: none;
}
.import_download {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 40px;
  font-size: 12px;
  margin-bottom: -20px;
}
.import_info {
  height: 100%;
}
.import-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  height: 180px;

  &.-ok {
    color: var(--primary-green);
  }

  &.-wrong {
    color: var(--primary-red);
  }
}
.import_info-title {
  text-align: center;
  font-weight: 400;
}
.import_info-text {
  text-align: center;
  font-size: 13px;
  color: var(--grey-again);
}
.import_info-button {
  margin-top: 5px;
}
.notification {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.notification_backdrop {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(13, 35, 74, 0.30);
  z-index: 1;
}
.notification_dialog {
  width: 493px;
  height: auto;
  min-height: 200px;
  background-color: #fff;
  border-radius: 6px;
  position: relative;
  z-index: 2;
  padding: 20px;

  & p {
    margin-bottom: 20px;
  }

  & b {
    font-weight: 500;
  }
}
.notification_close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 20px;
  height: 20px;
  transform: rotate(45deg);

  &::before, &::after {
    width: 100%;
    height: 2px;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: currentColor;
  }

  &::after {
    transform: rotate(90deg);
  }
}
.notification_title {
  height: 25px;
  display: flex;
  align-items: center;
  font-weight: 400;
  margin: -4px 0 12px;
}
.repacking-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.repacking-modal_backdrop {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(13, 35, 74, 0.30);
  z-index: 1;
}
.repacking-modal_dialog {
  width: 540px;
  height: 560px;
  background-color: #fff;
  border-radius: 6px;
  position: relative;
  z-index: 2;
  padding: 20px;
}
.repacking-modal_close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 20px;
  height: 20px;
  transform: rotate(45deg);

  &::before, &::after {
    width: 100%;
    height: 2px;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: currentColor;
  }

  &::after {
    transform: rotate(90deg);
  }
}
.repacking-modal_title {
  height: 25px;
  display: flex;
  align-items: center;
  font-weight: 400;
  margin: -4px 0 12px;
}
.repacking-modal_info {
  height: 100%;
}
.repacking-modal-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  height: 180px;

  &.-ok {
    color: var(--primary-green);
  }

  &.-wrong {
    color: var(--primary-red);
  }
}
.repacking-modal_info-title {
  text-align: center;
  font-weight: 400;
}
.repacking-modal_info-text {
  text-align: center;
  font-size: 13px;
  color: var(--grey-again);
}
.repacking-modal_info-button {
  margin-top: 5px;
}
.repacking-modal_cancel {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 40px;
  font-size: 12px;
  margin-bottom: -20px;
}
.repacking-modal-info {
  font-size: 13px;
  color: #757D9F;
  margin: 15px 0 30px 0;
}
.repacking-modal_form {
  margin: 15px 0 30px 0;
}
//.rselect {}
.rselect__menu {
  position: static !important;
  margin: 0 !important;
  box-shadow: none !important;
}
.rselect__control {
  border-top: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  border-bottom: 1px solid var(--lines-grey) !important;
  border-radius: 0 !important;
  background-color: transparent !important;
  box-shadow: none !important;
}
.sync {
  display: flex;
  align-items: center;
}
.error_button {
  text-align: left;
}
.sync_button {
  display: flex;
  align-items: center;
  color: #2d9cdb;
  min-width: 120px;

  &[disabled] {
    opacity: 0.5;
    pointer-events: none;
  }

  &.-syncing {
    color: #828282;
    & .sync_icon {
      color: var(--primary-green);
      animation: spin 1s infinite linear;
    }
  }
}
.sync_icon {
  width: 16px;
  height: 16px;
  margin-right: 5px;
}
.sync_message {
  &.-success {
    color: var(--primary-green);
  }

  &.-failed {
    color: var(--primary-red);
  }

  &.-warning {
    color: var(--asap-orange);
  }
}
@keyframes spin {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.tabs {
  margin-bottom: 15px;
  margin-top: 30px;
  display: flex;
  border-bottom: 1px solid #D6DFF7;
}
.tabs_button {
  height: 28px;
  padding-bottom: 13px;
  border-bottom: 2px solid transparent;
  margin-right: 25px;
  color: var(--secondary-text);
  text-transform: uppercase;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  margin-bottom: -1px;

  &.-active {
    color: var(--primary-text);
    border-bottom-color: currentColor;
  }

  &:hover {
    color: var(--primary-text);
  }
}
.action-button_wrapper {
  position: relative;

  &.-always .action-button,
  &:hover .action-button {
    visibility: visible;
    opacity: 1;
  }
}
.action-button {
  grid-area: extra;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  /*transition: all 150ms ease;*/
  visibility: hidden;
  opacity: 0;

  &:hover > svg {
    display: none;
    &:last-child {
      display: block;
    }
  }

  & > svg {
    display: block;
    width: 20px;
    height: 20px;

    &:last-child {
      display: none;
    }
  }

  &.-delete {
    color: var(--primary-red);
    &:hover {
      background: rgba(0, 69, 150, 0.05);
    }
  }

  &.-add {
    color: var(--primary-red);
    &:hover {
      background: #e3f5e7;
    }
  }
}
.confirmation_links-title {
  text-align: center;
  font-weight: 400;
  margin: 70px 0 10px;
  font-size: 14px;
}
.confirmation_button {
  width: 180px;
  margin: -20px auto 0;
}
.confirmation_links {
  display: flex;
  justify-content: space-between;
  width: 230px;
  margin: 0 auto;
}
.confirmation_link {
  height: 34px;

  & img {
    display: block;
    height: 100%;
  }
}
.list {
  padding: 0 50px 50px;
}
.list_placeholder {
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  color: #4c5783;
  border-radius: 6px;
  padding: 29px;
  border: 1px dashed #d1d9f0;
}
.list_grid {
  margin-top: 23px;
}
.list_items {
  min-width: 500px;
  @media (min-width: 1220px) {
    padding: 0 16px;
  }
  & > div:first-child > div:first-child {
    will-change: inherit !important;
  }
}
.list_filter {
  background: #f2f6fa;
  border: 2px solid #f2f6fa;
  border-radius: 8px;
  padding: 18px 21px;

  & + .list_filter {
    margin-top: 10px;
  }
}
.list_filter-title {
  font-weight: 500;
  font-size: 13px;
  line-height: 15px;
  color: #757d9f;
  text-transform: uppercase;
  position: relative;

  & > button {
    visibility: inherit;
    height: auto;
    width: auto;
    opacity: 1;

    & circle,
    & path {
      stroke: var(--primary-blue) !important;
    }

    &:hover {
      background: none !important;

      & circle,
      & path {
        stroke: white !important;
        fill: var(--primary-blue) !important;
      }
    }
  }
}
.list_filter-row {
  margin-top: 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  line-height: 1.87;
  letter-spacing: 0.01em;
  color: #757d9f;
  cursor: pointer;

  & + .list_filter-row {
    margin-top: 6px;
  }

  &.-separated {
    border-top: 1px solid #97a2c8;
    margin-top: 12px;
    padding-top: 12px;
  }
}
.list_filter-row:hover .list_filter-value {
  /* color: #e4922f; */
  font-weight: 600;
}
.list_filter-value {
  color: #051350;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

  &.-selected {
    /* color: #e4922f; */
    font-weight: 600;
  }
}
.list_action {
  & + .list_action {
    margin-left: 5px;
  }
}
.user-card {
  background: rgba(0, 69, 150, 0.05);
  border-radius: 6px;
  padding: 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: pointer;

  &.-selected,
  &:hover {
    padding: 13px;
    border: 2px solid #757D9F;
  }

  &.-inactive {
    cursor: initial;

    &:hover {
      border: none;
      padding: 15px;
    }
  }

  & + .user-card {
    margin-top: 5px;
  }
}
.user-card_label {
  align-items: center;
  display: flex;
  margin-left: auto;
  margin-right: 9px;
}
.user-card_info {
  margin-left: 9px;
}
.user-card_name {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #051350;
  display: inline-block;
}
.user-card_email {
  color: #757D9F;
  display: inline-block;

  font-weight: 400;
  font-size: 13px;
  line-height: 15px;
}
.user-card_details {
  margin-top: 5px;
  font-size: 13px;
  line-height: 15px;
  color: #757D9F;

  & .-highlight {
    color: #E4922F;
  }
}
.user-card_tooltip {
  display: inline-block;
  border-bottom: 1px dotted #1063CD;
  color: #1063CD;
}
.user-view_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 16px 24px 24px;
    gap: 12px;

    background: rgba(0, 69, 150, 0.05);
    border-radius: 6px;

    margin-bottom: 8px;
}
.user-view_text {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 5px;
    width: 100%;
}
.user-view_invitation {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 5px;
    width: 100%;
}
.separated {
    border-top: 1px solid #D1D9F0;
    margin-top: 12px;
    padding-top: 12px;
}
.user-view_signed_in {
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
}
.user-view_names {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    margin-right: 4px;
    gap: 4px;

    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.user-view_name {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: #051350;
    display: inline-block;

    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.user-view_title {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 5px;

    width: 424px;
    height: 22px;

    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    text-transform: uppercase;

    color: #757D9F;
}
.user-view_email {
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 15px;
    display: flex;
    align-items: center;
    text-align: right;
    cursor: pointer;
    color: #1063CD;
}
.user-view_badge {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 0px;
    gap: 4px;

    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.user-default_badge {
    display: inline-block;

    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 4px 8px;
    gap: 10px;

    background: #D1D9F0;
    border-radius: 4px;

    font-style: normal;
    font-weight: 500;
    font-size: 11px;
    line-height: 14px;
    text-transform: uppercase;

    color: #051350;

    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.user-view_badge_list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 0px;
    gap: 8px;
}
.user-status_badge {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 4px 8px;
    gap: 10px;

    background: #E4922F;
    border-radius: 4px;

    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    text-transform: uppercase;

    color: #F2F6FA;
}
.user-status_badge.active {
    background-color: #28a745;
}
.user-status_badge.invited {
    background-color: #d1d9f0;
    color: #051350;
}
.user-status_badge.inactive {
    background-color: #dc3545;
}
.user-view_footer {
    width: calc(100% + 50px);
    margin: 24px -25px -25px;
    background: #E6EDF5;
    border-top: 1px solid #D1D9F0;

    border-radius: 0 0 8px 8px;
    overflow: hidden;
}
.edit-user_button {
    width: 100%;
    height: 64px;

    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    line-height: 15px;
    text-align: center;
    text-transform: uppercase;

    color: #1063CD;
    background: none;
    border: none;
    cursor: pointer;
}
.edit-user_button:hover {
    background: rgba(16, 99, 205, 0.1);
}
.user-view_resend {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 20px;
    gap: 10px;

    width: 100%;
    background: #F2F6FA;
    border: none;
    border-radius: 4px;

    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    text-transform: uppercase;

    color: #1063CD;
    cursor: pointer;
}
.user-view_resend:hover {
    background: rgba(16, 99, 205, 0.1);
}
.user-view_resend:active {
    background: rgba(16, 99, 205, 0.2);
}
.user-view_resend:disabled {
    background: #E0E0E0;
    color: #A0A0A0;
    cursor: not-allowed;
}
.user-form {
  position: relative;
}
.user-form_box {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;

  &.-slim {
    padding: 4px 16px;
  }

  & + .user-form_box {
    margin-top: 9px;
  }
}
.user-form_text {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.87;
  letter-spacing: 0.01em;
  color: #051350;

  &.-danger {
    color: #EA4968;
  }

  &.-primary {
    font-weight: 400;
    color: #1063CD;
  }

  &.-disabled {
    color: #828282;
  }

  &.-link {
    cursor: pointer;
  }

  &.-inline {
    flex: 1 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 20px;
  }
}
.user-form_info {
  position: relative;
}
.user-form_footer {
  width: calc(100% + 50px);
  margin: 24px -25px -25px;
  box-sizing: border-box;

  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  gap: 10px;

  background: #E6EDF5;
  border-top: 1px solid #D1D9F0;
  border-radius: 0px;
}
.user-form_full_width_border {
  width: calc(100% + 48px);
  margin: 24px -24px;
  border-top: 1px solid #D1D9F0;
}
.user-form_cancel {
  text-decoration: none;
  cursor: pointer;

  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 12px 20px;
  gap: 10px;

  width: 93px;
  height: 40px;

  background: #97A2C8;
  border-radius: 4px;

  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  text-transform: uppercase;

  color: #FFFFFF;

  &:hover {
    background: #6B789A;
    color: #E0E0E0;
  }
}
.user-form_delete {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  color: #FFFFFF;

  gap: 10px;

  width: 90px;
  height: 40px;

  background: #EA4968;
  border-radius: 4px;


  &:hover {
    color: #1c2960;
  }
}
.user-form_delete.-disabled {
  background: #97A2C8;
  color: #757D9F;

  width: 116px;
  height: 40px;
}
.user-form_actions-right {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-left: auto
}
.user-form_icon {
  height: 24px;
  width: 24px;
}
.user-form_field {
  & .input_error {
    top: 100%;
    margin-top: 4px;
    font-weight: 500;
  }

  & + .user-form_field {
    margin-top: 24px;
  }

  & + .user-form_box {
    margin-top: 24px;
  }

  &.-error + .user-form_field {
    margin-top: 41px;
  }
}
.user-form_all {
  & .toggle_button {
    font-weight: 500;
    color: #051350;
  }
}
.user-checkouts {
  
}
.user-checkouts_item {
  background: #F2F6FA;
  border: 2px solid #D1D9F0;
  border-radius: 6px;
  padding: 19px 25px 17px;
  font-size: 16px;
  line-height: 19px;

  & + .user-checkouts_item {
    margin-top: 5px;
  }
}
.user-checkouts_price {
  font-weight: 500;
  color: #757D9F;
}
.user-checkouts_date {
  margin-top: 4px;
  color: #757D9F
}
.user-info {
  background: #F2F6FA;
  border: 2px solid #F2F6FA;
  box-sizing: border-box;
  border-radius: 8px;
  min-width: 500px;
}
.user-info_title {
  box-sizing: border-box;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-bottom: 24px;
  gap: 10px;
  width: 100%;
  border: 0px solid #97A2C8;
}
.user-info_title.-separated {
  border-bottom: 1px solid #D1D9F0;
  width: calc(100% + 48px);
  margin-left: -24px;
  margin-right: -24px;
  margin-bottom: 24px;
}
.user-info_sections {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2px;
  background: #FFFFFF;
  border-radius: 6px;
  width: 100%;
}
.user-info_toggler {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 4px 12px;
  gap: 10px;
  flex-grow: 1;
  height: 36px;
  border-radius: 4px;
  color: #1063CD;
  cursor: pointer;

  &.-active {
    background: #1063CD;
    color: #F2F6FA;
  }
}
.user-info_form_title {
  font-weight: 700;
  font-size: 13px;
  line-height: 15px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #757D9F;
  text-transform: uppercase;
}
.user-info_updated_at {
  text-transform: none;
  font-weight: 400;
  margin-left: auto;

  &.-active {
    color: var(--primary-green);
    font-weight: 500;
  }
}
.user-info_branch {
  color: #E4922F;
}
.user-info_box {
  background: #D6DFF7;
  border-radius: 12px;
  padding: 9px 16px;

  &.-slim {
    padding: 4px 12px;
  }

  & + .user-info_box {
    margin-top: 9px;
  }
}
.user-info_info {
  padding: 24px;
}
.user-info_footer {
  padding: 20px 24px;
  border-top: 1px solid #97A2C8;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.user-info_cancel {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #051350;
  margin-left: 15px;
  text-decoration: none;
  cursor: pointer;
}
.user-info_field {
  & + .user-info_field {
    margin-top: 24px;
  }

  & + .user-info_box {
    margin-top: 82px;
  }
}
.user-info_all {
  & .toggle_button {
    font-weight: 500;
    color: #051350;
  }
}
.user-modal {
  position: relative;
  height: 255px;

  &.-sm {
    height: 260px;
  }

  &.-message {
    display: flex;
    flex-direction: column;
    width: 359px;
    min-height: 367px;
    height: auto;
  }
}
.user-modal_close {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 21px;
  right: 20px;
  cursor: pointer;
}
.user-modal_title {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #051350;

  .user-modal.-message & {
    font-weight: 500;
  }
}
.user-modal_field,
.user-modal_button {
  width: 100%;
  margin-top: 20px;
}
.user-modal_field {
  margin-top: 26px;
}
.user-modal_info {
  margin: 55px 0;

  .user-modal.-message & {
    flex: 1 1;
    margin-bottom: 20px;
  }
}
.user-modal_heading {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: #051350;

  & + .user-modal_text {
    margin-top: 2px;
  }
}
.user-modal_text {
  text-align: center;
  font-size: 13px;
  line-height: 15px;
  color: #757D9F;
}
.user-modal_cancel {
  padding: 12px;
  display: block;
  font-size: 12px;
  line-height: 1.83;
  text-align: center;
  width: 100%;
  color: #1063CD;
  text-decoration: none;
  cursor: pointer;

  &:hover {
    text-decoration: underline;
  }
}
.user-modal_message-date {
  font-size: 15px;
  letter-spacing: 0.2px;
  font-weight: 700;
  color: #051350;
}
.user-modal_message-content {
  font-size: 15px;
  letter-spacing: 0.2px;
  color: #051350;
  margin-top: 10px;
}
.user-modal_toggle-wrapper {
  margin: 16px 0;
}
.user-modal_close-button {
  width: 300px;
  height: 40px;
  margin: 0 auto;
  margin-top: 30px;
}
.shipment-modal {
  position: relative;
  height: auto;
  min-height: 300px;
  width: 950px;
}
.shipment-modal_close {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 21px;
  right: 20px;
  cursor: pointer;
}
.shipment-modal_title {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #051350;
}
.shipment-modal_field,
.shipment-modal_button {
  width: 100%;
  margin-top: 20px;
}
.shipment-modal_field {
  margin-top: 26px;
  max-height: 500px;
  overflow-y: auto;
}
.shipment-modal_info {
  margin: 55px 0;
}
.shipment-modal_heading {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: #051350;

  & + .shipment-modal_text {
    margin-top: 2px;
  }
}
.shipment-modal_text {
  text-align: center;
  font-size: 13px;
  line-height: 15px;
  color: #757D9F;
}
.shipment-modal_cancel {
  padding: 12px;
  display: block;
  font-size: 12px;
  line-height: 1.83;
  text-align: center;
  width: 100%;
  color: #1063CD;
  text-decoration: none;
  cursor: pointer;

  &:hover {
    text-decoration: underline;
  }
}
.shipping-tooltip {
  pointer-events: auto !important;
  color: #051350 !important;
  background-color: #fff !important;
  padding: 20px 25px !important;
  min-width: 120px !important;
  border-radius: 6px !important;
  border: 1px solid #D1D9F0 !important;
  text-align: left;

  &:hover {
    visibility: visible !important;
    opacity: 1 !important;
  }

  &::before,
  &::after {
    content: none !important;
  }
}
.__react_component_tooltip {
  font-weight: 400;
}
.input_list-tooltip a {
  cursor: pointer;
}
.grid-layout {
  display: grid;
  grid-template-columns: 270px 1fr minmax(360px, 35%);
  grid-gap: 8px;

  &.-static_wide {
    grid-template-columns: 270px 1fr minmax(420px, 580px);
  }

  &.-wide {
    grid-template-columns: 270px 1fr minmax(495px, 35%);
  }

  &.-same-width {
    grid-template-columns: 1fr 1fr 1fr;
  }

  &.-two-col {
    grid-template-columns: 1.5fr 1.5fr 1fr;
  }
}
.product-card {
  background: rgba(0, 69, 150, 0.05);
  border-radius: 6px;
  padding: 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
  position: relative;
  height: 102px;

  &.-selected,
  &:hover {
    padding: 13px;
    border: 2px solid #757d9f;

    @media (min-width: 1220px) {
      padding: 18px;
    }

    & .product-card_divider {
      right: 68px;
    }
  }

  & + .product-card {
    margin-top: 5px;
  }

  @media (min-width: 1220px) {
    padding: 20px;
  }
}
.product-card_info {
  flex: 1 1;

  @media (min-width: 1220px) {
    padding: 0 15px 0 0;
  }

  @media (min-width: 1300px) {
    padding: 0 23px;
  }
}
.product-card_name {
  font-size: 16px;
  line-height: 19px;
  color: #051350;
  font-weight: 500;
}
.product-card_image {
  width: 35px;

  @media (min-width: 1220px) {
    width: 62px;
    max-height: 62px;
  }
}
.product-card_logo {
  text-align: center;
  padding: 0 0 0 20px;
  margin: -13px 0;
  display: none;
  min-width: 50px;

  @media (min-width: 1220px) {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
}
.product-card_custom {
  width: 30px;
}
.product-card_divider {
  display: none;

  @media (min-width: 1220px) {
    display: block;
    position: absolute;
    background: #ffffff;
    width: 2px;
    top: 0;
    bottom: 0;
    right: 70px;
  }
}
.product-card_photo {
  display: none;

  @media (min-width: 1080px) {
    padding: 0 15px 0 5px;
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
}
.product-card_section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;

  & .product-card_name {
    max-width: 295px;
  }

  & + .product-card_section {
    margin-top: 7px;
  }

  & .-lowstock {
    color: #ea4968;
  }
}
.product-card_text {
  font-weight: 400;
  font-size: 13px;
  line-height: 15px;
  color: #757d9f;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.product-card_badge {
  background: #e5eaf1;
  border-radius: 30px;
  color: #757d9f;
  padding: 2px 6px 2px 2px;
  margin-right: 8px;
  height: 24px;

  & span {
    position: relative;
    top: -2px;
  }

  &.-no-icon {
    padding-left: 6px;

    & span {
      top: 2px;
    }
  }

  &.-exists {
    background: #3ABF77;
    color: white;
    padding: 4px 7px;
    & span {
      top: -4px;
    }
  }

  & .input_label-tooltip {
    position: relative;
    margin-right: 4px;
    top: 2px;
  }

  &.-threshold {
    & span {
      top: -5px;
    }

    & .input_label-tooltip {
      margin-right: 0;
      top: 0;
    }
  }
}
.product-card_repacking {
  margin-right: 8px;
}
.product-notify_threshold {
  margin-right: 8px;
}
.product-info {
  background: #F2F6FA;
  border: 2px solid #F2F6FA;
  border-radius: 8px;
  min-width: 500px;

  & input {
    &[disabled] {
      background-color: #F2F6FA;
    }
  }

  & .input_error {
    top: 100%;
    font-weight: 500;
  }
}
.product-info_section {
  padding-left: 22px;
  padding-right: 22px;
  padding-top: 20px;
  margin-bottom: 21px;

  &.-footer {
    border-top: 1px solid rgba(151, 162, 200, 0.32);
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: -22px;
    margin-right: -22px;
  }
}
.product-info_title {
  font-weight: 500;
  font-size: 13px;
  line-height: 15px;
  color: #757D9F;
  text-transform: uppercase;
  border-bottom: 1px solid #97A2C8;
  padding: 0 0 18px 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: left;
}
.product-info_updated_at {
  text-transform: none;
  font-weight: 400;
  margin-left: auto;

  &.-active {
    color: var(--primary-green);
    font-weight: 500;
  }
}
.product-info_toggler {
  cursor: pointer;

  &.-active {
    color: #1063CD;
  }

  & + .product-info_toggler {
    margin-left: 10px;
    border-left: solid 1px var(--additional-text);
    padding-left: 10px;
  }
}
.product-info_cancel {
  cursor: pointer;
  margin-left: 15px;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #051350;
}
.product-info_archive {
  cursor: pointer;
  font-weight: 500;
  font-size: 13px;
  line-height: 15px;
  text-transform: uppercase;
  color: #EA4968;
  margin-left: auto;
}
.product-info_details {
  margin-top: 18px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  border-bottom: 1px solid #97A2C8;
  padding-bottom: 10px;
}
.product-info_label {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  text-transform: uppercase;
  color: #757D9F;
}
.global-threshold {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: #051350;
}
.product-info_value {
  margin-top: 4px;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #051350;
}
.product-info_item {
  margin: 0 13px 13px 0;

  &.-sku {
    width: 115px;
    flex: 0 0 115px;

    & .input_error {
      left: 0;
      right: auto;
      min-width: 400px;
    }
  }

  &.-name {
    flex: 1 1;
    margin-right: 0;
  }

  &.-full-width {
    width: 100%;
    flex: 0 0 100%;
  }
}
.product-info_repacking {
  padding-top: 22px;
  margin-bottom: 23px;

  &.-horizontal {
    display: flex;
    flex-wrap: wrap;
    & .product-info_pricing {
      flex: 1 1 30%;
      margin-top: 0 !important;
    }
    & .product-info_pricing.-with-transfer {
      flex: 1 1 40%;
      & button {
        display: inline-block;
        top: 7px;
        left: -5px;
        height: 56px;
        width: 60px;
        & svg {
          margin-left: -13px;
          margin-top: 5px;
        }
      }
    }
    & .product-info_pricing + .product-info_pricing {
      padding-left: 13px;
    }
  }
}
.product-info_divisions {
  margin-top: 0;
}
.product-info_all {
  & .toggle_button {
    font-weight: 500;
    color: #051350;
  }
}
.product-info_box {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;

  & + .product-info_pricing {
    margin-top: 16px;
  }
}
.product-info_tip {
  line-height: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.product-info_pricing {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;

  & input {
    max-width: 200px;
  }

  &.-inline {
    width: 100%;
    margin-top: 0;

    & .product-info_arrow {
      padding-top: 0;
    }

    & input {
      max-width: 143px;
    }
  }

  & + .product-info_pricing {
    margin-top: 16px
  }
}
.product-info_arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 20px;

}
.product-info_text {
  font-size: 13px;
  line-height: 16px;
  color: #757D9F;
  margin-bottom: 3px;
}
.product-inventory_item {
  background: #F2F6FA;
  border: 2px solid #D1D9F0;
  border-radius: 6px;
  padding: 19px 25px 17px;
  font-size: 16px;
  line-height: 19px;
  position: relative;

  & + .product-inventory_item {
    margin-top: 5px;
  }
}
.product-inventory_amount {
  font-weight: 500;
  color: #757D9F;
  &.-negative {
    color: #EA4968;
  }
}
.product-inventory_stock_value {
  color: #757D9F;
  font-size: 16px;
  position: absolute;
  top: 19px;
  right: 17px;
}
.product-inventory_date {
  margin-top: 12px;
  color: #757D9F
}
.product-info_repacking_details {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding-top: 12px;
  margin-bottom: 23px;

  & .product-info_repacking_lines {
    flex: 1 1 60%;

    & .product-info_repacking_result {
      color: #E4922F;
      font-size: 13px;
      font-weight: 500;
    }

    & .product-info_repacking_source {
      font-size: 13px;
      color: #757D9F;
    }
  }

  & .product-info_repacking_link {
    flex: 1 1 40%;
    color: #1063CD;
    cursor: pointer;
    font-size: 13px;
    margin-left: auto;
    text-align: right;
    & svg {
      top: 4px;
      position: relative;
      margin-right: 4px;
    }
  }
}
.product-info_current.-with-transfer {
  & .input {
    display: inline-block;
    width: calc(100% - 70px);
  }
  & button {
    display: inline-block;
    top: -5px;
    height: 56px;
    width: 60px;
    & svg {
      margin-left: -13px;
      margin-top: 5px;
    }
  }
}
.product-info_locations {
  margin-top: 18px;
  margin-bottom: 18px;
}
.product-info_locations-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.product-info_locations-clear {
  font-size: 13px;
  color: #757D9F;
  cursor: pointer;
  text-transform: lowercase;
  font-weight: 400;
}
.product-info_locations-global {
  margin-bottom: 24px;
}
.product-info_locations-global .product-info_locations-threshold {
  & .input {
    & input {
      color: #051350;
      text-align: left;
    }

    & input:focus {
      border: 1px solid #051350;
      outline: none;
    }
  }
}
.product-info_locations-section {
  margin-top: 24px;
  margin-bottom: 12px;
  background: #F2F6FA;
}
.product-info_locations-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: #E5EAF1;
}
.product-info_locations-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  background: #F2F6FA;
}
.product-info_locations-name {
  flex: 1 1;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.15px;
  color: #051350;
}
.product-info_locations-inventory {
  flex: 0 0 60px;
  font-weight: 500;
  font-size: 15px;
  color: #051350;
  text-align: right;
}
.product-info_locations-threshold {
  flex: 0 0 107px;
  position: relative;

  & svg {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 19px;
    height: 19px;
    z-index: 1;
    pointer-events: none;
  }

  & .input {
    margin: 0;

    & input {
      max-width: 100%;
      background: #FFFFFF;
      border-radius: 6px;
      padding: 8px 12px 8px 46px;
      font-size: 16px;
      font-family: "Roboto", sans-serif;
      font-weight: 400;
      color: #1063CD;
      text-align: right;
    }
  }
}
.product-info_locations-item .product-info_locations-threshold {
  & .input {
    & input {
      height: 35px;
      border: none;
    }
  }
}
.product-modal {
  position: relative;
  min-height: 255px;
  width: 100%;
  max-width: 643px;
  max-height: 80%;
  overflow: auto;

  &.-sm {
    height: auto;
  }
}
.product-modal_close {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 21px;
  right: 20px;
  cursor: pointer;
}
.product-modal_title {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #051350;
}
.product-modal_hint {
  font-size: 15px;
  line-height: 1.87;
  letter-spacing: 0.01em;
  color: #051350;
  margin-top: 25px;
  display: flex;
  align-items: center;
}
.product-modal_form {
  margin-top: 12px;
}
.product-modal_filter {
  display: flex;
  flex-direction: row;

  & div {
    min-width: 255px;

    &:last-child {
      flex: 1 1;
    }

    & + div {
      margin-left: 15px;
    }
  }
}
.product-modal_new {
  margin-top: 29px;
}
.product-modal_new-title {
  font-size: 15px;
  line-height: 1.33;
  letter-spacing: 0.01em;
  color: #051350;
  margin-bottom: 13px;
}
.product-modal_list {
  margin-top: 30px;
}
.product-modal_list-head {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.product-modal_list-title {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.87;
  letter-spacing: 0.01em;
  color: #051350;
}
.product-modal_list-link {
  font-size: 15px;
  line-height: 1.87;
  letter-spacing: 0.01em;
  color: #1063CD;
  text-decoration: none;
}
.product-modal_list-product {
  margin-top: 18px;

  & + .product-modal_list-product {
    margin-top: 9px;
  }
}
.product-modal_empty {
  padding: 58px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.product-modal_empty-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #051350;
}
.product-modal_empty-hint {
  font-size: 13px;
  line-height: 15px;
  color: #757D9F;
  margin-bottom: 32px;
}
.product-modal_indicator {
  margin-left: 10px;
  width: 20px;
  height: 20px;
  color: var(--primary-blue);
}
.transfer-modal {
  position: relative;
  height: auto;
}
.transfer-modal_close {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 21px;
  right: 20px;
  cursor: pointer;
}
.transfer-modal_title {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #051350;
  width: 90%;
}
.transfer-modal_field,
.transfer-modal_button {
  width: 100%;
  margin-top: 20px;
}
.transfer-modal_field {
  margin-top: 26px;
}
.transfer-modal_field .alert {
  background-color: rgba(234, 73, 104, 0.2);
  padding: 8px 12px;
  margin: 0 0 25px 0;
}
.transfer-modal_field a {
  color: #1063CD;
  font-size: 13px;
  cursor: pointer;
  text-decoration: none;
  border-bottom: 1px dotted #1063CD;
}
.transfer-modal_info {
  margin: 55px 0;
}
.transfer-modal_heading {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: #051350;

  & + .transfer-modal_text {
    margin-top: 2px;
  }
}
.transfer-modal_text {
  text-align: center;
  font-size: 13px;
  line-height: 15px;
  color: #757D9F;
}
.transfer-modal_cancel {
  padding: 12px;
  display: block;
  font-size: 12px;
  line-height: 1.83;
  text-align: center;
  width: 100%;
  color: #1063CD;
  text-decoration: none;
  cursor: pointer;

  &:hover {
    text-decoration: underline;
  }
}
.order-modal {
  position: relative;
  margin-top: -30px;
}
.order-modal_head {
  background: #f2f6fa;
}
.order-modal_head-number_branch {
  display: flex;
  flex-direction: row;
  margin-bottom: -23px;
  padding-top: 15px;

  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 15px;
  align-items: center;
  color: #757D9F;
}
.order-modal_head-number {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 29px 0;
  text-transform: uppercase;
}
.order-modal_title {
  font-weight: 400;
  font-size: 19px;
  line-height: 22px;
  color: #051350;
}
.order-modal_number {
  cursor: pointer;
  font-weight: 400;
  font-size: 19px;
  line-height: 22px;
  color: #1063cd;
  display: flex;
  flex-direction: row;
  align-items: center;
  border-bottom: dotted 1px #1063cd;

  &.-disabled {
    border-bottom: 0;
    pointer-events: none;
    color: var(--primary);
  }
}
.order-modal_back {
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  margin-left: auto;
  text-decoration: none;
  line-height: 0;
  color: black;
}
.order-modal_info {
  margin-top: 16px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding-bottom: 16px;
  border-bottom: 1px solid #f2f6fa;

  & > div {
    padding-right: 32px;
    margin-top: 16px;
    flex: 0 0 25%;
    overflow: hidden;

    &:last-child {
      padding-right: 0;
    }
  }
}
.order-modal_separated {
  margin-top: 16px;
  border-bottom: 1px solid #f2f6fa;
}
.order-modal_forecast {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 16px 24px;
  gap: 12px;

  width: 100%;

  background: rgba(0, 69, 150, 0.05);
  border-radius: 6px;
}
.order-modal_forecast_info {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 5px;

  width: 560px;
  height: 42px;
}
.order-modal_forecast_info_text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 4px;

  width: 418px;
  height: 42px;
}
.order-modal_forecast_separated {
  width: 100%;
  border: 0.5px solid #D1D9F0;
  margin-top: 8px;
}
.order-modal_forecast_button {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 12px 20px;
  gap: 10px;

  width: 137px;
  height: 40px;

  background: #1063CD;
  border-radius: 4px;
}
.order-modal_forecast_info_text_title {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  display: flex;
  align-items: center;
  color: #051350;
}
.order-modal_forecast_info_text_subtitle {
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  display: flex;
  align-items: center;

  color: #757D9F;
}
.order-modal_forecast_info_note {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px;
  gap: 4px;
}
.order-modal_forecast_info_note_text {
  font-weight: 400;
  font-size: 13px;
  line-height: 15px;
  display: flex;
  align-items: center;
  color: #757D9F;
}
.order-modal_alert {
  background: #ffca89;
  border-radius: 4px;
  font-size: 13px;
  text-align: center;
  padding: 5px 8px;
  color: #051350;
  margin: 8px 0 3px 0;
}
.order-modal_label {
  font-size: 14px;
  line-height: 16px;
  color: #757d9f;
}
.order-modal_value {
  margin-top: 5px;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #1c2960;
  overflow: hidden;

  &:not(.-full) {
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
.order-modal_reject {
  max-width: 100% !important;
}
.order-modal_reason {
  color: #1c2960;
}
.order-modal_search {
  margin-top: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;

  & .search_border-indication {
    width: 100%;
  }
}
.order-modal_field {
  flex: 1 1;
}
.order-modal_total {
  padding: 4px 17px;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  color: #1c2960;

  & strong {
    display: block;
    margin-top: 2px;
    font-weight: 500;
  }
}
.order-modal_footer {
  display: flex;

  & button {
    & + button {
      margin-left: 10px;
    }
  }
}
.order-modal_footer_update_info {
  flex: 1 1;
  text-align: center;
  font-weight: 400;
  font-size: 13px;
  line-height: 15px;
  align-items: center;
  color: #757D9F;
}
.order-modal_list {
  margin-top: 8px;
}
.order-modal_list-item {
  display: grid;
  grid-template-columns: 1fr 100px 100px;
  grid-gap: 2px;
  margin-bottom: 2px;

  &.-product {
    grid-template-columns: 1fr 200px;
  }

  &.-full-width {
    grid-template-columns: 1fr;
  }
}
.order-modal_list-product {
  background-color: #f2f6fa;
  height: 100px;
}
.order-modal_list-action {
  font-size: 13px;
  line-height: 15px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #1063cd;
}
.order-modal_icon {
  margin-left: 5px;
}
.order-modal_status {
  border-top: solid 2px white;
  padding: 20px 0;
}
.order-modal_status-container {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.order-modal_status-name {
  font-size: 12px;
  line-height: 14px;
  text-align: right;
  text-transform: uppercase;
  color: #4c5783;
  margin-left: 6px;
}
.order-modal_status-icon {
  margin-left: auto;
  line-height: 0;
}
.order-modal_status-steps {
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  text-transform: uppercase;
  color: #4c5783;
}
.order-modal_status-step {
  display: inline-block;
  position: relative;

  &.-selected {
    color: #e4922f;

    &.-rejected {
      color: var(--primary-red);
      border-bottom: 1px dotted var(--primary-red);
      cursor: pointer;
    }
  }
}
.action-modal {
  position: relative;
  height: auto;
}
.action-modal_title {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #051350;
}
.action-modal_info {
  font-size: 14px;
  line-height: 1.4;
  color: #4C5783;
  margin-top: 20px;
}
.action-modal_info b {
  font-weight: 500;
}
.action-modal_actions {
  margin-top: 55px;
}
.action-modal_cancel {
  margin-top: 8px;
  text-transform: none;
}
.action-modal_field {
  margin-bottom: 13px;
}
.threshold-modal-dialog {
  width: 359px;
  height: 316px;
  display: flex;
  flex-direction: column;
}
.threshold-modal-dialog .action-modal_field {
  flex: 1 1;
  display: flex;
  flex-direction: column;
}
.threshold-modal_hint {
  margin-top: 8px;
  font-size: 13px;
  line-height: 16px;
  color: #757D9F;
}
.groups {
  margin-top: 25px;

  & .table_title {
    color: #757d9f;
    font-weight: 500;
    padding-right: 0;

    & > button {
      font-weight: 400;
    }

    &.table_td {
      font-weight: 400;
      font-size: 17px;
    }

    &.table_head-tr {
      border-left: 1px solid #97A2C8;
    }
  }

  & .table_tr {
    & .table_td.-text-right {
      padding: 0;
      & button:first-child {
        padding: 12px 12px;
      }
      & button:last-child {
        padding: 6px 4px;
        margin: 6px 0px;
        width: 80px;
        font-weight: 400;
        font-size: 13px;
        color: #1063cd;
        border-left: 1px solid #AEB7D5;
        text-transform: uppercase;
      }
    }
  }
}
/* Tooltip container */
.vanilla-tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}
/* Tooltip text */
.vanilla-tooltip .tooltiptext {
  visibility: hidden;
  width: auto;
  top: 24px;
  left: 80%;
  margin-left: -60px; /* Use half of the width (120/2 = 60), to center the tooltip */
  background-color: black;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;

  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
}
.vanilla-tooltip .tooltiptext div {
  white-space: nowrap;
}
/* Show the tooltip text when you mouse over the tooltip container */
.vanilla-tooltip:hover .tooltiptext {
  visibility: visible;
}
.vanilla-tooltip .tooltiptext::after {
  content: " ";
  position: absolute;
  bottom: 100%;  /* At the top of the tooltip */
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent black transparent;
}
.vanilla-tooltip span {
  color: #1063CD;
}
.location-add > .form {
  margin-top: 49px;
}
.location-add__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 0 12px 32px
}
.location-add__title {
  color: #051350;
  font-size: 19px;
  font-weight: 500;
  line-height: normal;
}
.cycle-count {
  max-width: 1293px;
  margin: 0 auto;
}
.cycle-count_verified-counter {
  color: #051350;
  text-align: right;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
}
.cycle-count_controls-wrapper {
  width: 100%;
  padding: 16px 32px;
}
.cycle-count_controls {
  max-width: 1293px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 0;
  flex-wrap: nowrap;
}
.cycle-count_controls > div {
  display: flex;
  justify-content: flex-end;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.cycle-count_status {
  padding-top: 24px;
  padding-bottom: 4px;
  margin-bottom: 19px;
  border-bottom: 1px solid #D1D9F0;
}
.user-modal_message-content {
  a {
    color: #1063cd;
    text-decoration: underline;

    &:hover {
      color: #1a4fb5;
    }
  }

  p {
    margin: 0 0 10px 0;

    &:last-child {
      margin-bottom: 0;
    }
  }

  strong {
    font-weight: 700;
  }

  em {
    font-style: italic;
  }

  ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0 0 10px 0;

    &:last-child {
      margin-bottom: 0;
    }
  }

  li {
    margin-bottom: 5px;

    &:last-child {
      margin-bottom: 0;
    }
  }
}


/*# sourceMappingURL=541-8ba0b2f6.css.map*/