@charset "UTF-8";@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap");
.rd-call-widget.status-missed .call-name.unknown[data-v-3db516c1],
.rd-call-widget.status-missed .call-name[data-v-3db516c1] { color: #c0392b;
}
.rd-call-widget.status-ended[data-v-3db516c1]  { opacity: 0.75;
}

/* ======= ТОКЕНЫ (локально, чтобы модалка была одинаковой в любом роуте) ======= */
.rd-cm[data-v-d8c8c5a2] {
  --ink: #1d2230;
  --ink-2: #393f4a;
  --ink-3: #6b7280;
  --ink-4: #8a909a;
  --line: #e8eaef;
  --line-2: #eeeef0;
  --bg: #f6f7f9;
  --surface:#ffffff;
  --blue: #1984e6;
  --blue-50:#e8f4ff;
  --green: #2ea043;
  --green-50:#e9f7ee;
  --amber: #d97706;
  --amber-50:#fef3c7;
  --red: #e5484d;
  --red-50: #feecec;
  background: var(--surface);
  width: 100%;
  max-width: 720px;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(16, 24, 40, 0.22), 0 6px 16px rgba(16, 24, 40, 0.08);
  overflow: hidden;
  font-size: 13px;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  max-height: min(720px, 100vh - 64px);
}
.rd-cm-overlay[data-v-d8c8c5a2] {
  background: rgba(10, 15, 25, 0.42);
  backdrop-filter: blur(2px);
}

/* ======= ШАПКА ======= */
.rd-cm__head[data-v-d8c8c5a2] {
  display: grid;
  grid-template-columns: 44px 1fr auto auto;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fff 0%, #fafbfc 100%);
  flex-shrink: 0;
}
.rd-cm__ava[data-v-d8c8c5a2] {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.rd-cm__ava svg[data-v-d8c8c5a2] {
  width: 20px;
  height: 20px;
}
.rd-cm__ava.tone-green[data-v-d8c8c5a2] {
  background: var(--green-50);
  color: var(--green);
}
.rd-cm__ava.tone-blue[data-v-d8c8c5a2] {
  background: var(--blue-50);
  color: var(--blue);
}
.rd-cm__ava.tone-red[data-v-d8c8c5a2] {
  background: var(--red-50);
  color: var(--red);
}
.rd-cm__ava.tone-gray[data-v-d8c8c5a2] {
  background: #f0f1f3;
  color: var(--ink-3);
}
.rd-cm__headMain[data-v-d8c8c5a2] {
  min-width: 0;
}
.rd-cm__title[data-v-d8c8c5a2] {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}
.rd-cm__meta[data-v-d8c8c5a2] {
  margin-top: 4px;
  font-size: 12.5px;
  color: var(--ink-3);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.rd-cm__meta[data-v-d8c8c5a2]:empty {
  display: none;
}
.rd-cm__dot[data-v-d8c8c5a2] {
  color: var(--ink-4);
}
.rd-cm__phone[data-v-d8c8c5a2] {
  font-family: "Ubuntu Mono", "Menlo", monospace;
}
.rd-cm__chips[data-v-d8c8c5a2] {
  display: flex;
  flex-direction: row;
  gap: 6px;
  align-items: center;
  flex-shrink: 0;
}
.rd-cm-chip[data-v-d8c8c5a2] {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.rd-cm-chip.chip-green[data-v-d8c8c5a2] {
  background: var(--green-50);
  color: var(--green);
}
.rd-cm-chip.chip-blue[data-v-d8c8c5a2] {
  background: var(--blue-50);
  color: var(--blue);
}
.rd-cm-chip.chip-red[data-v-d8c8c5a2] {
  background: var(--red-50);
  color: var(--red);
}
.rd-cm-chip.chip-gray[data-v-d8c8c5a2] {
  background: #f0f1f3;
  color: var(--ink-3);
}
.rd-cm-chip.chip-green-soft[data-v-d8c8c5a2] {
  background: #f2faf5;
  color: var(--green);
}
.rd-cm-chip.chip-amber-soft[data-v-d8c8c5a2] {
  background: #fef8ec;
  color: var(--amber);
}
.rd-cm__close[data-v-d8c8c5a2] {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-3);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.12s;
  flex-shrink: 0;
}
.rd-cm__close[data-v-d8c8c5a2]:hover {
  background: var(--bg);
  color: var(--ink);
}

/* ======= ТЕЛО ======= */
.rd-cm__body[data-v-d8c8c5a2] {
  padding: 18px 22px 6px;
  overflow-y: auto;
  flex: 1 1 auto;
  min-height: 0;
}
.rd-cm__loading[data-v-d8c8c5a2], .rd-cm__empty[data-v-d8c8c5a2] {
  padding: 18px;
  text-align: center;
  font-size: 13px;
  color: var(--ink-4);
  background: var(--bg);
  border-radius: 10px;
  border: 1px dashed var(--line);
}
.rd-cm__kpis[data-v-d8c8c5a2] {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}
.rd-cm-kpi[data-v-d8c8c5a2] {
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: 12px;
}
.rd-cm-kpi__lbl[data-v-d8c8c5a2] {
  font-size: 10px;
  color: var(--ink-4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.rd-cm-kpi__val[data-v-d8c8c5a2] {
  margin-top: 6px;
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  font-feature-settings: "tnum";
  line-height: 1.1;
}
.rd-cm-kpi__val--sm[data-v-d8c8c5a2] {
  font-size: 15px;
}
.rd-cm__line[data-v-d8c8c5a2] {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 8px 0;
  font-size: 12px;
  border-top: 1px dashed var(--line-2);
  border-bottom: 1px dashed var(--line-2);
  margin-bottom: 12px;
}
.rd-cm__lineLbl[data-v-d8c8c5a2] {
  color: var(--ink-4);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 10.5px;
  font-weight: 600;
}
.rd-cm__lineVal[data-v-d8c8c5a2] {
  color: var(--ink);
  font-weight: 500;
  font-size: 13px;
}
.rd-cm__section[data-v-d8c8c5a2] {
  margin-top: 16px;
}
.rd-cm__secTitle[data-v-d8c8c5a2] {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-4);
  margin-bottom: 8px;
}
.rd-cm-row[data-v-d8c8c5a2] {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.12s, background 0.12s;
  margin-bottom: 6px;
}
.rd-cm-row[data-v-d8c8c5a2]:hover {
  border-color: var(--blue);
  background: var(--blue-50);
}
.rd-cm-row__id[data-v-d8c8c5a2] {
  font-family: "Ubuntu Mono", "Menlo", monospace;
  font-size: 11px;
  color: var(--ink-3);
  background: var(--bg);
  padding: 2px 7px;
  border-radius: 5px;
}
.rd-cm-row__title[data-v-d8c8c5a2] {
  flex: 1;
  min-width: 0;
  font-size: 12.5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rd-cm-row__vol[data-v-d8c8c5a2] {
  font-family: "Ubuntu Mono", "Menlo", monospace;
  font-size: 11.5px;
  color: var(--ink-3);
  flex-shrink: 0;
}

/* ======= UNKNOWN ======= */
.rd-cm__seg[data-v-d8c8c5a2] {
  display: flex;
  gap: 0;
  background: var(--bg);
  padding: 3px;
  border-radius: 9px;
  width: fit-content;
  margin-bottom: 12px;
}
.rd-cm__segBtn[data-v-d8c8c5a2] {
  border: 0;
  background: transparent;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12.5px;
  color: var(--ink-3);
  cursor: pointer;
  transition: all 0.12s;
}
.rd-cm__segBtn.active[data-v-d8c8c5a2] {
  background: var(--ink);
  color: #fff;
  font-weight: 500;
}
.rd-cm__segBtn[data-v-d8c8c5a2]:hover:not(.active) {
  color: var(--ink);
}
.rd-cm__form[data-v-d8c8c5a2] {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rd-cm__field[data-v-d8c8c5a2] {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.rd-cm__fieldRow[data-v-d8c8c5a2] {
  display: grid;
  grid-template-columns: 1fr 160px;
  gap: 10px;
}
@media (max-width: 520px) {
.rd-cm__fieldRow[data-v-d8c8c5a2] {
    grid-template-columns: 1fr;
}
}
.rd-cm__field--inn[data-v-d8c8c5a2] {
  min-width: 0;
}
.rd-cm__label[data-v-d8c8c5a2] {
  font-size: 10.5px;
  color: var(--ink-4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.rd-cm__or[data-v-d8c8c5a2] {
  text-align: center;
  position: relative;
  color: var(--ink-4);
  font-size: 11px;
  margin: 2px 0;
}
.rd-cm__or[data-v-d8c8c5a2]::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: var(--line);
}
.rd-cm__or span[data-v-d8c8c5a2] {
  position: relative;
  background: #fff;
  padding: 0 10px;
}
.rd-cm__hint[data-v-d8c8c5a2] {
  font-size: 11.5px;
  color: var(--ink-3);
  background: var(--blue-50);
  border-left: 3px solid var(--blue);
  padding: 7px 10px;
  border-radius: 0 6px 6px 0;
  line-height: 1.4;
}
.rd-cm__hint b[data-v-d8c8c5a2] {
  color: var(--ink);
  font-weight: 600;
}

/* ======= ФУТЕР =======
   До 4-х кнопок (Закрыть · Карточка клиента · Карточка контакта · Открыть заявку).
   Чтобы не упираться по ширине, ghost-кнопки сжимаются по контенту, а primary
   — единственная, кто претендует на всё свободное место. На узких экранах
   (<560px) встаёт колонкой, primary — первой строкой. */
.rd-cm__foot[data-v-d8c8c5a2] {
  display: flex;
  gap: 8px;
  padding: 14px 22px;
  border-top: 1px solid var(--line);
  background: #fafbfc;
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.rd-cm-btn[data-v-d8c8c5a2] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 40px;
  padding: 0 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.12s;
  border: 1px solid transparent;
  white-space: nowrap;
}
.rd-cm-btn--ghost[data-v-d8c8c5a2] {
  background: #fff;
  color: var(--ink-2);
  border-color: var(--line);
  flex: 0 0 auto;
}
.rd-cm-btn--ghost[data-v-d8c8c5a2]:hover:not([disabled]) {
  background: var(--bg);
  color: var(--ink);
}
.rd-cm-btn--primary[data-v-d8c8c5a2] {
  background: var(--blue);
  color: #fff;
  flex: 1 1 200px;
  min-width: 180px;
  order: 99; /* primary всегда последней */
}
.rd-cm-btn--primary[data-v-d8c8c5a2]:hover:not([disabled]) {
  background: #0f74d1;
}
.rd-cm-btn[disabled][data-v-d8c8c5a2] {
  opacity: 0.5;
  cursor: not-allowed;
}
@media (max-width: 560px) {
.rd-cm__foot[data-v-d8c8c5a2] {
    flex-direction: column-reverse; /* primary сверху */
}
.rd-cm-btn[data-v-d8c8c5a2] {
    width: 100%;
    flex: 1 1 auto;
}
}
/* Element Plus inputs чуть плотнее, чтобы попадали в ритм */
[data-v-d8c8c5a2] .el-input__wrapper,[data-v-d8c8c5a2] .el-textarea__inner,[data-v-d8c8c5a2] .el-select .el-input__wrapper {
  border-radius: 8px;
  box-shadow: 0 0 0 1px var(--line) inset;
  transition: box-shadow 0.12s;
}
[data-v-d8c8c5a2] .el-input__wrapper:hover,[data-v-d8c8c5a2] .el-textarea__inner:hover,[data-v-d8c8c5a2] .el-select .el-input__wrapper:hover {
  box-shadow: 0 0 0 1px var(--ink-4) inset;
}
[data-v-d8c8c5a2] .el-input__wrapper.is-focus,[data-v-d8c8c5a2] .el-textarea__inner.is-focus,[data-v-d8c8c5a2] .el-select .el-input__wrapper.is-focus {
  box-shadow: 0 0 0 1px var(--blue) inset;
}
[data-v-d8c8c5a2] .el-input__inner,[data-v-d8c8c5a2] .el-textarea__inner {
  font-size: 13px;
}
/* Глобально: поппер el-select внутри модалки должен быть выше overlay. */
.rd-call-modal-popper.el-popper { z-index: 10020 !important;
}

/* Контейнер стека — fixed в левом нижнем углу, flex column-reverse:
   самый свежий звонок сверху, старые опускаются ниже к краю экрана.
   pointer-events: none на контейнере чтобы «пустые» зоны между
   виджетами не блокировали клики под ними; у самих карточек auto. */
.rd-call-stack[data-v-18bd3c93] {
    position: fixed;
    left: 84px;
    bottom: 16px;
    z-index: 9000;
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
    pointer-events: none;
}
.rd-call-stack__slot[data-v-18bd3c93] {
    pointer-events: auto;
    display: block;
}

/* Внутри стека отключаем fixed-позиционирование самой карточки
   (из crm-leads-redesign.scss), чтобы flex-контейнер мог её уложить.
   Оставляем все визуалы — тень, hover, анимацию пульсации иконки. */
.rd-call-stack[data-v-18bd3c93] .rd-call-widget {
    position: relative;
    left: auto;
    bottom: auto;
    /* свою встроенную rd-slide-in гасим — TransitionGroup ниже даст свою
       анимацию, иначе получится «двойной заход» (сдвиг + fade). */
    animation: none;
}

/* ====== Анимация TransitionGroup ======
   enter: вылет из-под левой кромки со slight scale-up + fade-in;
   leave: уходим влево с fade-out, чтобы не «моргать» в воздухе;
   move:  плавный сдвиг оставшихся, когда один ушёл и стек пересобрался. */
.rd-call-stack-enter-active[data-v-18bd3c93],
.rd-call-stack-leave-active[data-v-18bd3c93] {
    transition:
        transform 0.32s cubic-bezier(.2,.9,.2,1),
        opacity   0.24s ease-out;
}
.rd-call-stack-enter-from[data-v-18bd3c93] {
    opacity: 0;
    transform: translateX(-24px) scale(0.96);
}
.rd-call-stack-leave-to[data-v-18bd3c93] {
    opacity: 0;
    transform: translateX(-16px) scale(0.96);
}

/* Когда из стека выпадает карточка, leave должен происходить без занимания
   места, иначе соседи "прыгнут" только после окончания анимации. */
.rd-call-stack-leave-active[data-v-18bd3c93] {
    position: absolute;
    /* слот всё ещё фиксируется слева в контейнере, но убираем из потока */
}
.rd-call-stack-move[data-v-18bd3c93] {
    transition: transform 0.32s cubic-bezier(.2,.9,.2,1);
}


/* #ACAFC6 by Figma */
/* #B6B9CD by Figma */
/* #424242 by Figma */
/* #589EF8 by Figma */
/* #00D3CB by Figma */
#logo {
  padding: 32px 35px 36px 16px;
}
#logo .link {
  color: #fff;
  text-decoration: none;
  text-transform: capitalize;
  font-size: 1.2em;
  font-weight: 500;
}
#logo a {
  text-decoration: none;
  color: #fff;
  position: relative;
  width: 100%;
  display: block;
}
#logo span {
  position: absolute;
  left: 45px;
  top: -2.5px;
  line-height: 1.2;
  font-size: 16px;
}
#navigation {
  flex-grow: 1;
  overflow-y: auto;
}
#navigation::-webkit-scrollbar {
  display: none;
}
#navigation::-webkit-scrollbar-track {
  background: #2A2C45;
  border-radius: 5px;
}
#navigation::-webkit-scrollbar-thumb {
  background-color: #3F4059;
  border-radius: 5px;
}
#navigation::-webkit-scrollbar-thumb:hover {
  background-color: #4b4c68;
}
#navigation .link {
  width: 236px;
  display: block;
  position: relative;
  color: #747689;
  min-height: 50px !important;
  text-decoration: none;
  height: 50px;
  transition: all 0.1s;
  overflow: hidden;
}
#navigation .link svg {
  stroke: #747689;
  transition: all 0.1s;
}
#navigation .link:hover {
  color: #fff;
}
#navigation .link:hover svg {
  stroke: #fff;
}
#navigation .link:last-child {
  margin-bottom: 1rem;
}
#navigation .link .icon {
  position: absolute;
  left: 24px;
  top: 17px;
  width: 16px;
  height: 16px;
}
#navigation .link .icon svg {
  width: 16px;
  height: 16px;
}
#navigation .link .title {
  position: relative;
  margin-left: 54px;
  top: 14px;
}
#navigation .router-link-active {
  color: #fff;
  transition: all 0.1s;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 100%);
}
#navigation .router-link-active svg {
  stroke: #fff;
}
#navigation .router-link-active:before {
  left: 0;
  content: "";
  bottom: 0;
  height: 100%;
  width: 2px;
  position: absolute;
  background: #fff;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.object-selector {
  width: 188px;
  background-color: #15182d;
  border-radius: 8px;
  position: relative;
  margin-top: 24px;
  margin-left: 24px;
  margin-right: 24px;
}
.object-selector-current-selected {
  display: flex;
  border-bottom: 1px solid transparent;
  border-top: 1px solid transparent;
  align-items: center;
  justify-content: space-between;
  min-height: 20px;
  padding: 9px 20px;
  border-radius: 8px;
  cursor: pointer;
}
.object-selector-current-selected svg {
  width: 100%;
}
.object-selector-current-selected-arrow-icon {
  width: 20px;
  display: flex;
}
.object-selector-current-selected:hover {
  background-color: #0C0E21;
}
.object-selector-current-selected-label-text {
  margin-right: 5px;
  max-width: calc(100% - 26px);
}
.object-selector-current-selected-label-text__selected div:nth-child(2) {
  color: #fff;
  word-break: break-word;
}
.object-selector-option {
  padding: 7px 20px;
  cursor: pointer;
  word-break: break-word;
}
.object-selector-option:hover {
  background-color: #0C0E21;
}
.object-selector.opened-down {
  border-radius: 8px 8px 0 0;
}
.object-selector.opened-down .object-selector-current-selected {
  border-bottom: 1px solid;
  border-radius: 8px 8px 0 0;
}
.object-selector.opened-down .object-selector-current-selected:hover {
  background-color: #15182d;
}
.object-selector.opened-down .object-selector-options {
  overflow: hidden;
  z-index: 2;
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  background-color: #15182d;
  border-radius: 0 0 8px 8px;
}
.object-selector.opened-up {
  border-radius: 0 0 8px 8px;
}
.object-selector.opened-up .object-selector-current-selected {
  border-radius: 0 0 8px 8px;
  border-top: 1px solid;
}
.object-selector.opened-up .object-selector-current-selected:hover {
  background-color: #15182d;
}
.object-selector.opened-up .object-selector-options {
  position: absolute;
  z-index: 2;
  width: 100%;
  bottom: 100%;
  left: 0;
  background-color: #15182d;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}
#navigationFooter {
  background: #111428;
}
#navigationFooter .faq {
  background: #131736;
  border-radius: 5px;
  margin-bottom: 10px;
}
#navigationFooter .faqBody {
  padding: 15px;
}
#navigationFooter .faq h4 {
  color: white;
  font-size: 14px;
  margin: 0;
}
#navigationFooter .faq button {
  padding: 9px;
  min-height: auto;
  border: none;
  background: #0d1028;
  color: #bfc0c9;
  font-size: 12px;
}
#navigationFooter .faq button:hover {
  color: white;
}
#navigationFooter #navigation-footer-buttons {
  padding-left: 11px;
  padding-right: 35px;
  display: flex;
  margin: 20px 0;
  transition: 0.5s ease;
}
#navigationFooter #navigation-footer-buttons .navigation-footer-button {
  min-width: 40px;
  min-height: 40px;
  background-color: #15182d;
  cursor: pointer;
  margin-right: 12px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#navigationFooter #navigation-footer-buttons .navigation-footer-button svg {
  stroke: #FAFAFA;
  stroke: #666878;
  width: 14px;
}
#navigationFooter #navigation-footer-buttons .navigation-footer-button:hover {
  background-color: #0C0E21;
}
#navigationFooter #navigation-footer-buttons .navigation-footer-button.router-link-exact-active svg {
  stroke: #fff;
}
#navigationFooter p {
  padding-top: 10px;
  opacity: 0.5;
  margin-top: 0;
  font-size: 10px;
  border-top: 1px solid;
}
.dropdown-selector-menu {
  padding: 12px;
  min-width: 100px;
}
.selected-label {
  display: block;
  padding: 4px 0;
  border-bottom: 1px dashed #393F4A;
  color: #393F4A;
}
.dropdown-selector-menu-item {
  padding: 8px 0;
  border-bottom: 1px solid #EEEEF0;
  color: #393F4A;
  cursor: pointer;
}
.dropdown-selector-menu-item:last-child {
  border-bottom: none;
}
.dropdown-selector-popper {
  border: none !important;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
}
.dropdown-selector-popper .el-popper__arrow {
  display: none;
}
.dropdown-selector {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.selected-icon {
  width: 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.selected-icon svg {
  max-width: 70%;
}
#main .card-body {
  padding: 12px 25px;
  color: #3a3a3a;
}
@media (max-width: 1024px) {
  #main .card-body {
    padding: 12px;
    min-height: calc(100% + 80px);
  }
}
#main .card-body.guide-page {
  padding: 0;
}
body .card {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 15px;
}
body .card .el-input__inner:focus {
  border-color: #a2a5bf;
}
body .card .el-button--mini {
  padding: 0 16px;
  font-size: 12px;
}
body .card-title {
  padding: 15px 25px;
  font-size: 16px;
  color: #3a3a3a;
  font-weight: 500;
  border-bottom: 1px solid #f5f6f8;
}
body .card-title h2 {
  font-size: 16px;
  color: #3a3a3a;
  margin: 5px 0 0;
  font-weight: 500;
}
body .card-body {
  padding: 20px 25px;
}
body .card-footer {
  background: #ececec;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  padding: 5px 25px;
}
body .el-dropdown-menu__item {
  width: 190px;
  line-height: 16px;
}
body .el-dropdown-menu__item .el-row {
  padding: 6px 6px;
  width: 100%;
}
body .el-dropdown-menu__item .el-row .el-col:not(:first-child) {
  color: #a2a5bf;
  text-align: right;
}
body .el-dropdown-menu__item .el-row .el-col:first-child {
  color: #3a3a3a;
}
body .page-header {
  background: #F9F9F9;
}
@media screen and (max-width: 1024px) {
  body .page-header {
    padding-inline: 12px;
  }
}
body .page-header .el-dropdown {
  width: 100%;
  display: block;
}
body .page-header .el-col div {
  background: transparent;
  border-radius: 8px;
}
body .page-headerTitle {
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  body .page-headerTitle {
    padding: 20px 0;
  }
}
body .page-headerTitleText .title {
  font-weight: 500;
  font-size: 16px;
  color: #3a3a3a;
}
body .page-headerTitleText .settings {
  width: 16px;
  height: 16px;
  transition: 0.5s all;
}
body .page-headerTitleText .settings:hover {
  transition: 0.3s all;
  cursor: pointer;
  transform: rotate(45deg);
}
body .page-headerTitleText .settings:hover svg {
  stroke: #8c8fa9;
}
body .page-headerTitleText .settings svg {
  transition: 0.3s all;
  stroke: #a2a5bf;
}
body .page-headerTitleText .faqButton {
  padding: 0;
  border: none;
  min-height: auto;
  background: transparent;
}
body .page-headerTitleText .faqIcon {
  background: none;
  border: none;
  width: 16px;
  height: 16px;
  transition: 0.5s all;
}
body .page-headerTitleText .faqIcon:hover {
  transition: 0.3s all;
  cursor: pointer;
  transform: rotate(-10deg) scale(1.1, 1.1);
}
body .page-headerTitleText .faqIcon:hover svg {
  stroke: #8c8fa9;
}
body .page-headerTitleText .faqIcon svg {
  transition: 0.3s all;
  stroke: #a2a5bf;
}
body .page-headerTitle .faqButton {
  padding: 0;
  border: none;
  min-height: auto;
  background: transparent;
}
body .page-headerTitle .faqIcon {
  background: none;
  border: none;
  width: 16px;
  height: 16px;
  transition: 0.5s all;
}
body .page-headerTitle .faqIcon:hover {
  transition: 0.3s all;
  cursor: pointer;
  transform: rotate(-10deg) scale(1.1, 1.1);
}
body .page-headerTitle .faqIcon:hover svg {
  stroke: #8c8fa9;
}
body .page-headerTitle .faqIcon svg {
  transition: 0.3s all;
  stroke: #a2a5bf;
}
body .page-headerTitleIntegration {
  display: flex;
  margin-left: 15px;
}
body .page-headerTitleIntegration svg {
  height: 22px;
  position: relative;
  top: 2px;
}
body .page-headerTitleIntegration button {
  padding: 0;
  border: none;
  min-height: auto;
  background: transparent;
}
body .page-headerTitleIntegration button:hover {
  background-color: transparent;
}
body .page-headerTitleRelation {
  display: flex;
  margin-left: 15px;
}
body .page-headerTitleRelation svg {
  stroke: #a2a5bf;
  height: 22px;
  position: relative;
  top: 2px;
}
body .page-headerTitleRelation button {
  padding: 0;
  border: none;
  min-height: auto;
  background: transparent;
}
body .page-headerTitleRelation button:hover {
  background-color: transparent;
}
body .page-headerTitleRelation button:hover svg {
  stroke: #8c8fa9;
}
body .page-headerBreadcrumb {
  padding: 10px 25px;
}
body .page-headerUser {
  padding: 15px 0;
  font-size: 14px;
  width: 100%;
  outline: none !important;
}
body .page-headerUser .is-circle {
  transform: rotate(0deg);
  transition: 0.4s all;
}
body .page-headerUser .is-circle.rotate {
  transition: 0.2s all;
  transform: rotate(-180deg);
}
body .page-headerUser p {
  color: #3a3a3a;
  margin: 0 0 5px;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-left: 20px;
}
body .page-headerUser span {
  color: #a2a5bf;
  line-height: 1.2;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-left: 20px;
}
body .page-headerUser .el-button {
  min-height: 24px;
  padding: 4px;
  background: #F3F3F7;
  color: #a2a5bf;
  border: none;
  width: 24px;
  height: 24px;
  line-height: 1.2;
  font-size: 16px;
  position: relative;
  top: 5px;
}
body .page-headerRight {
  display: flex;
  align-items: center;
  gap: 8px;
}
body .page-headerRight .el-dropdown {
  flex: 1 1 auto;
  min-width: 0;
}
body .page-headerBell {
  flex: 0 0 auto;
}
body .page-header__faq-modal {
  margin: 0;
}
body .page-header__faq-modal .el-dialog__body {
  height: 90svh;
}
body .page-header__faq-modal .el-dialog__header {
  padding: 0;
}
body .page-header__faq-modal .el-dialog__headerbtn {
  z-index: 2;
}
@media (max-width: 520px) {
  body .page-header:not(#headTabs) {
    margin-bottom: 12px;
  }
}
.btn, .ci-btn {
  display: inline-block;
  background: #efefef;
  color: #3a3a3a;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-decoration: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.btn:hover, .ci-btn:hover {
  cursor: pointer;
  color: black;
}
.ci-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 44px;
  padding: 0 20px;
  font-weight: 600;
  border-radius: 8px;
  min-height: 46px;
}
.ci-btn_light {
  background-color: #E8F4FF;
  color: #1984e6;
}
.ci-btn_light:not([disabled]):hover {
  background-color: #b8ddfe;
  color: #1367B4;
}
.ci-btn_light:disabled {
  color: #b8ddfe;
}
.ci-btn_blue {
  background-color: #1984e6 !important;
  color: #fff !important;
}
.ci-btn_blue:hover {
  background-color: #1367B4 !important;
  color: #fff;
}
.ci-btn_blue:disabled {
  background-color: #96ccfe !important;
}
.ci-btn_default {
  background-color: #fff;
  color: #49515f;
  border: 1px solid #c9ccd0;
}
.ci-btn_default:hover {
  background-color: #eeeef0;
  color: #393f4a;
}
.ci-btn svg {
  height: 20px;
  width: 20px;
}
.ci-btn:disabled {
  cursor: not-allowed;
}
.selectAddressButton {
  cursor: pointer;
  position: absolute;
  right: 0;
  padding: 6px 15px;
}
.selectAddressButton svg {
  height: 20px;
  background: white;
}
.selectAddressButton svg path {
  stroke: #49a7fd;
}
.selectAddressButton svg:hover path {
  stroke: #1984e6;
}
.settingsButton {
  box-sizing: border-box;
  width: 26px;
  height: 26px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.settingsButton:hover {
  cursor: pointer;
}
.settingsButton:hover svg {
  transform: rotate(45deg);
  transition: 0.3s all;
}
.settingsButton:hover svg path {
  stroke: #393f4a;
}
.settingsButton svg path {
  stroke: #8a909a;
}
.settingsButton svg {
  transition: 0.5s all;
}
.disabled {
  cursor: not-allowed !important;
}
.disabled:hover {
  cursor: not-allowed !important;
}
.event-item {
  padding: 12px 24px;
  background: #fff;
}
@media screen and (max-width: 440px) {
  .event-item {
    padding: 0 12px;
  }
}
.event-item__body {
  flex: 1;
  max-width: calc(100% - 48px - 10px);
}
@media screen and (max-width: 440px) {
  .event-item__body {
    max-width: calc(100% - 40px - 10px);
  }
}
.event-item_style_yellow .event-item__square {
  background: #f7df9a;
}
.event-item_style_yellow .event-item__square svg path {
  stroke: #e27612;
}
.event-item_style_red .event-item__square {
  background: #fcb3ae;
}
.event-item_style_red .event-item__square svg path {
  stroke: #ad3028;
}
.event-item_style_blue .event-item__square {
  background: #b8ddfe;
}
.event-item_style_blue .event-item__square svg path {
  fill: #1984E6;
}
.event-item_style_grey {
  opacity: 0.4;
}
.event-item_style_grey .event-item__square {
  background: #eeeef0;
}
.event-item_style_grey .event-item__square svg.event-item__icon_warning path {
  stroke: #9698A3;
}
.event-item_style_grey .event-item__square svg.event-item__icon_calendar path {
  fill: #9698A3;
}
.event-item__square {
  height: max-content;
  width: 48px;
  height: 48px;
  border-radius: 8px;
}
@media screen and (max-width: 440px) {
  .event-item__square {
    padding: 8px !important;
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 440px) {
  .event-item__content-title {
    font-size: 12px !important;
    line-height: 16px !important;
  }
}
.event-item__number {
  padding: 4px 8px;
  background: #eeeef0;
  border-radius: 54px;
  min-width: max-content;
}
@media screen and (max-width: 440px) {
  .event-item__number {
    padding: 2px 4px;
    font-size: 12px !important;
    line-height: 16px !important;
  }
}
.event-list {
  list-style: none;
  margin-block: 0;
  padding-left: 0;
  max-width: 100%;
  max-height: 100%;
  width: 456px;
  overflow: hidden;
}
@media screen and (max-width: 1920px) {
  .event-list {
    width: 100%;
  }
}
.event-list__item {
  border-top: 1px solid #EEEEEE;
}
.event-list__item:first-child {
  border-top: none;
}
.event-list__item--new {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.event-list__item--new:hover {
  box-shadow: 0 5px 8px rgba(61, 61, 61, 0.07);
  transform: scale(1.01);
}
.event-modal-tabs {
  position: relative;
}
.event-modal-tabs__button {
  position: relative;
}
@media screen and (max-width: 1024px) {
  .event-modal-tabs__button {
    display: flex;
    align-items: center;
    gap: 4px;
  }
}
.event-modal-tabs__button-amount {
  padding: 0 4px;
  border-radius: 42px;
  background: #f8655b;
  color: #fff;
  min-width: 32px;
  text-align: center;
  position: absolute;
  left: 4px;
  top: 4px;
  transform: translate(-50%, -50%);
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .event-modal-tabs__button-amount {
    padding-block: 2px;
    left: 0;
    font-size: 12px !important;
    line-height: 16px !important;
  }
}
@media screen and (max-width: 440px) {
  .event-modal-tabs__button-amount {
    min-width: initial;
    width: 12px;
    height: 12px;
    right: -8px;
    left: initial;
  }
}
.event-modal-tabs__button-button {
  padding: 10px 12px;
  background: #F9F9F9;
  border: 1px solid #eeeef0;
  border-bottom: none;
  border-radius: 12px 12px 0 0;
  font-weight: 500;
  font-family: Ubuntu;
  color: #8a909a;
  height: initial !important;
  cursor: pointer;
}
.event-modal-tabs__button-button--active, .event-modal-tabs__button-button:hover {
  color: #2c3139;
  background: #fff;
  border-color: #eeeef0;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .event-modal-tabs__button-button {
    z-index: 1;
    padding: 8px;
  }
}
.event-modal-tabs__button-button .el-icon--left, .event-modal-tabs__button-button .el-icon--right {
  width: 24px;
  height: 24px;
}
.event-modal-tabs__button-button .el-icon--left svg, .event-modal-tabs__button-button .el-icon--right svg {
  width: 24px;
  height: 24px;
}
.event-modal-tabs__button-button .el-icon--left {
  margin-right: 10px;
}
.event-modal-tabs__button-button .el-icon--left svg path {
  stroke: #1677ff;
}
@media screen and (max-width: 1023px) {
  .event-modal-tabs__button-button .el-icon--left {
    margin-right: 0;
  }
}
.event-modal-tabs__button-button .el-icon--right {
  margin-left: 10px;
}
.event-modal-tabs__button-button .el-icon--right svg path {
  stroke: currentColor;
}
.event-modal-tabs__read-all-btn {
  padding-left: 12px;
  margin-left: -8px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.event-modal-tabs__read-all-btn:not(:disabled):hover {
  transition: all 0.3s ease;
  background: #1984e6;
  color: #fff;
}
.event-modal-tabs__read-all-btn:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}
.event-modal {
  position: relative;
}
.event-modal .el-overlay-dialog {
  overflow: visible;
}
.event-modal__overlay {
  top: 112px !important;
}
.event-modal__overlay .el-overlay-dialog {
  justify-content: flex-end;
  right: 26px;
  overflow: visible;
  top: 113px;
}
@media screen and (max-width: 1024px) {
  .event-modal__overlay .el-overlay-dialog {
    justify-content: center;
    right: 12px;
  }
}
@media screen and (max-width: 767px) {
  .event-modal__overlay .el-overlay-dialog {
    top: 118px;
  }
}
.event-modal.el-dialog {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0;
  margin: 0;
  max-width: 456px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.event-modal.el-dialog .el-dialog__body::-webkit-scrollbar {
  width: 4px;
  height: 20px;
}
.event-modal.el-dialog .el-dialog__body::-webkit-scrollbar-thumb {
  background-color: #eee;
  border-radius: 10px;
}
.event-modal.el-dialog .el-dialog__body::-webkit-scrollbar-thumb:hover {
  background-color: #ddd;
}
.event-modal.el-dialog .el-dialog__body::-webkit-scrollbar-track {
  background-color: #eee;
  border-radius: 10px;
}
.event-modal.el-dialog .el-dialog__body {
  scrollbar-width: thin;
  scrollbar-color: lightgrey #eee;
}
.event-modal.el-dialog .el-dialog__body {
  max-height: calc(70svh - 48px);
  overflow: hidden auto;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}
@media screen and (max-width: 1024px) {
  .event-modal.el-dialog {
    width: calc(100vw - 24px);
  }
}
.event-modal.el-dialog header {
  padding: 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eeeeee;
}
.event-modal.el-dialog .el-radio-button__original-radio:checked + .el-radio-button__inner {
  color: #1984e6;
}
.event-modal.el-dialog .el-radio-button__inner {
  padding: 12px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  border: none;
  background: transparent !important;
  box-shadow: none !important;
  color: #8a909a;
}
.event-modal.el-dialog .el-dialog__headerbtn {
  padding: 0;
  position: static;
  width: 24px;
  height: 24px;
}
.event-modal.el-dialog .el-dialog__close {
  width: 24px;
  height: 24px;
}
.event-modal.el-dialog .el-dialog__close svg {
  width: 100%;
  height: auto;
}
.event-modal.el-dialog_header {
  padding: 0 10px;
}
.event-modal__read-all-btn {
  padding: 0;
  margin-inline: auto 8px;
  border: none;
  background: transparent;
  cursor: pointer;
  width: 24px;
  height: 24px;
  display: flex;
}
.event-modal__read-all-btn:hover {
  transition: all 0.2s ease;
  color: #1984e6;
}
.event-modal__read-all-btn svg {
  margin: auto;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-light {
  font-weight: 300;
}
.text-500 {
  font-weight: 500;
}
.text-600 {
  font-weight: 600;
}
.d-block {
  display: block;
}
.d-flex {
  display: flex !important;
}
.justify-start {
  justify-content: flex-start;
}
.justify-center {
  justify-content: center;
}
.justify-end {
  justify-content: flex-end;
}
.p-relative {
  position: relative;
}
.f-direction-column {
  flex-direction: column;
}
.d-flex-full {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.d-flex-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.d-flex-start {
  display: flex;
  align-items: self-start;
}
.d-flex-center {
  justify-content: center;
  align-items: center;
  display: flex;
}
.d-flex-end {
  display: flex;
  justify-content: end;
}
.d-flex-full-stroke {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
}
.d-flex-full-stroke .is-circle {
  padding: 5px;
  height: 25px !important;
  width: 25px;
}
.flex-grow {
  flex-grow: 1 !important;
}
.content-center {
  align-content: center;
}
.gap-2 {
  gap: 2px;
}
.gap-4 {
  gap: 4px;
}
.gap-6 {
  gap: 6px;
}
.gap-8 {
  gap: 8px;
}
.gap-10 {
  gap: 10px;
}
.gap-12 {
  gap: 12px;
}
.gap-15 {
  gap: 15px;
}
.gap-16 {
  gap: 16px;
}
.gap-20 {
  gap: 20px;
}
.gap-24 {
  gap: 24px;
}
.gap-30 {
  gap: 30px;
}
.gap-32 {
  gap: 32px;
}
.gap-48 {
  gap: 48px;
}
.flex-1 {
  flex: 1;
}
.flex-wrap {
  flex-wrap: wrap;
}
.f-wrap {
  flex-wrap: wrap;
}
.f-shrink-0 {
  flex-shrink: 0;
}
.d-flex-full-stretch {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 20px;
  gap: 20px;
}
.d-flex-full-stretch div {
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: calc(50% - 10px);
}
.d-flex-full-stretch-topCard {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 20px;
  gap: 20px;
}
.d-flex-full-stretch-topCard div.topCard {
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: calc(50% - 51px);
}
.d-flex-direction-column {
  flex-direction: column;
}
.align-self-start {
  align-self: flex-start;
}
.align-self-center {
  align-self: center;
}
.align-start {
  align-items: flex-start;
}
.align-center {
  align-items: center;
}
.align-self-stretch {
  align-self: stretch;
}
.align-self-start {
  align-self: start;
}
.align-end {
  align-items: flex-end;
}
.text-underline {
  text-decoration: underline;
}
.text-line-through {
  text-decoration: line-through;
}
.text-none {
  text-decoration: none;
}
.bg-white {
  background-color: white !important;
}
.w-100 {
  width: 100%;
}
.w-75 {
  width: 75%;
}
.w-50 {
  width: 50%;
}
.w-25 {
  width: 25%;
}
.w-max-content {
  width: max-content;
}
.break-words {
  word-break: break-word;
}
.hidden {
  opacity: 0;
  pointer-events: none;
}
.cutOverflow {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.maxLines2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
}
.maxLines3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
  white-space: normal;
}
.maxLines5 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5; /* number of lines to show */
  line-clamp: 5;
  -webkit-box-orient: vertical;
  white-space: normal;
}
.maxLines6 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 6; /* number of lines to show */
  line-clamp: 6;
  -webkit-box-orient: vertical;
  white-space: normal;
}
.overflowHidden {
  overflow: hidden;
}
.nowrap {
  white-space: nowrap;
}
.justify-between {
  justify-content: space-between;
}
.back-g-none {
  background: none;
}
.w-fit {
  width: fit-content;
}
.mw-70 {
  max-width: 70%;
}
.mw-fit-content {
  max-width: fit-content;
}
.mh-50px {
  max-height: 50px;
}
.headingXL {
  font-size: 60px;
  line-height: 72px;
  letter-spacing: -0.02em;
}
.headingXLMedium {
  font-weight: 500;
}
.headingLG {
  font-size: 36px;
  line-height: 30px;
  letter-spacing: -0.02em;
}
.headingLGBold {
  font-weight: 700;
}
.headingXS {
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.02em;
}
.headingXSMedium {
  font-weight: 500;
}
.headingXSRegular {
  font-weight: 400;
}
.headingSM {
  font-size: 30px;
  line-height: 36px;
}
.headingRegular {
  font-weight: 400;
}
.headingMedium {
  font-weight: 500;
}
.headingBold {
  font-weight: 700;
}
.textSM {
  font-size: 14px;
  line-height: 20px;
}
.textSMMedium {
  font-weight: 500;
}
.textSMRegular {
  font-weight: 400;
}
.textSMBold {
  font-weight: 700;
}
.textXS {
  font-size: 12px;
  line-height: 16px;
}
.textXSMedium {
  font-weight: 500;
}
.textXSRegular {
  font-weight: 400;
}
.textXSBold {
  font-weight: 700;
}
.textMD {
  font-size: 16px;
  line-height: 24px;
}
.textMDMedium {
  font-weight: 500;
}
.textMDRegular {
  font-weight: 300;
}
.textMDBold {
  font-weight: 700;
}
.textLG {
  font-size: 18px;
  line-height: 24px;
}
.textLGMedium {
  font-weight: 500;
}
.textLGRegular {
  font-weight: 300;
}
.textLGBold {
  font-weight: 700;
}
.textXL {
  font-size: 24px;
  line-height: 32px;
}
.textMedium {
  font-weight: 500;
}
.textRegular {
  font-weight: 300;
}
.textRegular400 {
  font-weight: 400;
}
.textBold {
  font-weight: 700;
}
.no-wrap {
  text-wrap: nowrap;
}
.success300 {
  color: #00d0a3;
}
.success400 {
  color: #009272;
}
.warning50 {
  color: #FDF7E6;
}
.warning300 {
  color: #ecaf02;
}
.danger200 {
  color: #f8655b;
}
.danger300 {
  color: #f74539;
}
.danger400 {
  color: #ad3028;
}
.primary300 {
  color: #66b5fe;
}
.primary500 {
  color: #1b91fd;
}
.primary600 {
  color: #1984e6;
}
.primary700 {
  color: #1367B4;
}
.neutral30 {
  color: #F9F9F9;
}
.neutral50 {
  color: #eeeef0;
}
.neutral100 {
  color: #c9ccd0;
}
.neutral200 {
  color: #afb3ba;
}
.neutral300 {
  color: #8a909a;
}
.neutral400 {
  color: #737a86;
}
.neutral500 {
  color: #505968;
}
.neutral600 {
  color: #49515f;
}
.neutral700 {
  color: #393f4a;
}
.neutral800 {
  color: #2c3139;
}
.neutral900 {
  color: #22252c;
}
.deep-blue200 {
  color: #9698A3;
}
.deep-blue700 {
  color: #131526;
}
.deep-blue900 {
  color: #0B0D17;
}
.regular {
  color: #606266;
}
.grey200 {
  color: #b3b3b3;
}
.bg-neutral30 {
  background: #F9F9F9;
}
.bg-neutral50 {
  background: #eeeef0;
}
.bg-neutral100 {
  background: #c9ccd0;
}
.bg-neutral200 {
  background: #afb3ba;
}
.bg-neutral300 {
  background: #8a909a;
}
.bg-neutral400 {
  background: #737a86;
}
.bg-neutral500 {
  background: #505968;
}
.bg-neutral700 {
  background: #393f4a;
}
.bg-neutral800 {
  background: #2c3139;
}
.bg-neutral900 {
  background: #22252c;
}
.bg-primary50 {
  background: #E8F4FF;
}
.bg-primary100 {
  background: #b8ddfe;
}
.mekaColor {
  color: #ffba00;
}
.elkonColor {
  color: #0e74c4;
}
.smartMixColor {
  color: #008c3a;
}
body .mb-0 {
  margin-bottom: 0 !important;
}
body .ml-0 {
  margin-left: 0 !important;
}
body .ml-5 {
  margin-left: 5px !important;
}
body .ml-8 {
  margin-left: 8px !important;
}
body .ml-10 {
  margin-left: 10px !important;
}
body .ml-15 {
  margin-left: 15px !important;
}
body {
  /* margin От 0 до 10 с шагом 0.5px */
}
body .m-0 {
  margin: 0;
}
body .m-0-5 {
  margin: 0.5px;
}
body .m-1 {
  margin: 1px;
}
body .m-1-5 {
  margin: 1.5px;
}
body .m-2 {
  margin: 2px;
}
body .m-2-5 {
  margin: 2.5px;
}
body .m-3 {
  margin: 3px;
}
body .m-3-5 {
  margin: 3.5px;
}
body .m-4 {
  margin: 4px;
}
body .m-4-5 {
  margin: 4.5px;
}
body .m-5 {
  margin: 5px;
}
body .m-5-5 {
  margin: 5.5px;
}
body .m-6 {
  margin: 6px;
}
body .m-6-5 {
  margin: 6.5px;
}
body .m-7 {
  margin: 7px;
}
body .m-7-5 {
  margin: 7.5px;
}
body .m-8 {
  margin: 8px;
}
body .m-8-5 {
  margin: 8.5px;
}
body .m-9 {
  margin: 9px;
}
body .m-9-5 {
  margin: 9.5px;
}
body .m-10 {
  margin: 10px;
}
body {
  /* margin От 10 до 30 с шагом 5px */
}
body .m-12 {
  margin: 12px;
}
body .m-15 {
  margin: 15px;
}
body .m-18 {
  margin: 18px;
}
body .m-20 {
  margin: 20px;
}
body .m-25 {
  margin: 25px;
}
body .m-30 {
  margin: 30px;
}
body .m-auto {
  margin: auto;
}
body {
  /* margin-top От 0 до 10 с шагом 0.5px */
}
body .mt-0 {
  margin-top: 0;
}
body .mt-0-5 {
  margin-top: 0.5px;
}
body .mt-1 {
  margin-top: 1px;
}
body .mt-1-5 {
  margin-top: 1.5px;
}
body .mt-2 {
  margin-top: 2px;
}
body .mt-2-5 {
  margin-top: 2.5px;
}
body .mt-3 {
  margin-top: 3px;
}
body .mt-3-5 {
  margin-top: 3.5px;
}
body .mt-4 {
  margin-top: 4px;
}
body .mt-4-5 {
  margin-top: 4.5px;
}
body .mt-5 {
  margin-top: 5px;
}
body .mt-5-5 {
  margin-top: 5.5px;
}
body .mt-6 {
  margin-top: 6px;
}
body .mt-6-5 {
  margin-top: 6.5px;
}
body .mt-7 {
  margin-top: 7px;
}
body .mt-7-5 {
  margin-top: 7.5px;
}
body .mt-8 {
  margin-top: 8px;
}
body .mt-8-5 {
  margin-top: 8.5px;
}
body .mt-9 {
  margin-top: 9px;
}
body .mt-9-5 {
  margin-top: 9.5px;
}
body .mt-10 {
  margin-top: 10px;
}
body {
  /* margin-top От 10 до 30 с шагом 5px */
}
body .mt-12 {
  margin-top: 12px;
}
body .mt-15 {
  margin-top: 15px;
}
body .mt-16 {
  margin-top: 16px;
}
body .mt-18 {
  margin-top: 18px;
}
body .mt-20 {
  margin-top: 20px;
}
body .mt-25 {
  margin-top: 25px;
}
body .mt-30 {
  margin-top: 30px;
}
body .mt-32 {
  margin-top: 32px;
}
body .mt-48 {
  margin-top: 48px;
}
body .mt-auto {
  margin-top: auto;
}
body {
  /* margin-bottom От 0 до 10 с шагом 0.5px */
}
body .mb-0 {
  margin-bottom: 0;
}
body .mb-0-5 {
  margin-bottom: 0.5px;
}
body .mb-1 {
  margin-bottom: 1px;
}
body .mb-1-5 {
  margin-bottom: 1.5px;
}
body .mb-2 {
  margin-bottom: 2px;
}
body .mb-2-5 {
  margin-bottom: 2.5px;
}
body .mb-3 {
  margin-bottom: 3px;
}
body .mb-3-5 {
  margin-bottom: 3.5px;
}
body .mb-4 {
  margin-bottom: 4px;
}
body .mb-4-5 {
  margin-bottom: 4.5px;
}
body .mb-5 {
  margin-bottom: 5px;
}
body .mb-5-5 {
  margin-bottom: 5.5px;
}
body .mb-6 {
  margin-bottom: 6px;
}
body .mb-6-5 {
  margin-bottom: 6.5px;
}
body .mb-7 {
  margin-bottom: 7px;
}
body .mb-7-5 {
  margin-bottom: 7.5px;
}
body .mb-8 {
  margin-bottom: 8px;
}
body .mb-8-5 {
  margin-bottom: 8.5px;
}
body .mb-9 {
  margin-bottom: 9px;
}
body .mb-9-5 {
  margin-bottom: 9.5px;
}
body .mb-10 {
  margin-bottom: 10px;
}
body {
  /* margin-bottom От 10 до 30 с шагом 5px */
}
body .mb-12 {
  margin-bottom: 12px;
}
body .mb-15 {
  margin-bottom: 15px;
}
body .mb-16 {
  margin-bottom: 16px;
}
body .mb-18 {
  margin-bottom: 18px;
}
body .mb-20 {
  margin-bottom: 20px;
}
body .mb-24 {
  margin-bottom: 24px;
}
body .mb-25 {
  margin-bottom: 25px;
}
body .mb-30 {
  margin-bottom: 30px;
}
body .mb-auto {
  margin-bottom: auto;
}
body {
  /* margin-right От 0 до 10 с шагом 0.5px */
}
body .mr-0 {
  margin-right: 0;
}
body .mr-0-5 {
  margin-right: 0.5px;
}
body .mr-1 {
  margin-right: 1px;
}
body .mr-1-5 {
  margin-right: 1.5px;
}
body .mr-2 {
  margin-right: 2px;
}
body .mr-2-5 {
  margin-right: 2.5px;
}
body .mr-3 {
  margin-right: 3px;
}
body .mr-3-5 {
  margin-right: 3.5px;
}
body .mr-4 {
  margin-right: 4px;
}
body .mr-4-5 {
  margin-right: 4.5px;
}
body .mr-5 {
  margin-right: 5px;
}
body .mr-5-5 {
  margin-right: 5.5px;
}
body .mr-6 {
  margin-right: 6px;
}
body .mr-6-5 {
  margin-right: 6.5px;
}
body .mr-7 {
  margin-right: 7px;
}
body .mr-7-5 {
  margin-right: 7.5px;
}
body .mr-8 {
  margin-right: 8px;
}
body .mr-8-5 {
  margin-right: 8.5px;
}
body .mr-9 {
  margin-right: 9px;
}
body .mr-9-5 {
  margin-right: 9.5px;
}
body .mr-10 {
  margin-right: 10px;
}
body {
  /* margin-right От 10 до 30 с шагом 5px */
}
body .mr-12 {
  margin-right: 12px;
}
body .mr-15 {
  margin-right: 15px;
}
body .mr-18 {
  margin-right: 18px;
}
body .mr-20 {
  margin-right: 20px;
}
body .mr-25 {
  margin-right: 25px;
}
body .mr-30 {
  margin-right: 30px;
}
body .mr-40 {
  margin-right: 40px;
}
body .mr-auto {
  margin-right: auto;
}
body {
  /* margin-left От 0 до 10 с шагом 0.5px */
}
body .ml-0 {
  margin-left: 0;
}
body .ml-0-5 {
  margin-left: 0.5px;
}
body .ml-1 {
  margin-left: 1px;
}
body .ml-1-5 {
  margin-left: 1.5px;
}
body .ml-2 {
  margin-left: 2px;
}
body .ml-2-5 {
  margin-left: 2.5px;
}
body .ml-3 {
  margin-left: 3px;
}
body .ml-3-5 {
  margin-left: 3.5px;
}
body .ml-4 {
  margin-left: 4px;
}
body .ml-4-5 {
  margin-left: 4.5px;
}
body .ml-5 {
  margin-left: 5px;
}
body .ml-5-5 {
  margin-left: 5.5px;
}
body .ml-6 {
  margin-left: 6px;
}
body .ml-6-5 {
  margin-left: 6.5px;
}
body .ml-7 {
  margin-left: 7px;
}
body .ml-7-5 {
  margin-left: 7.5px;
}
body .ml-8 {
  margin-left: 8px;
}
body .ml-8-5 {
  margin-left: 8.5px;
}
body .ml-9 {
  margin-left: 9px;
}
body .ml-9-5 {
  margin-left: 9.5px;
}
body .ml-10 {
  margin-left: 10px;
}
body {
  /* margin-left От 10 до 30 с шагом 5px */
}
body .ml-12 {
  margin-left: 12px;
}
body .ml-15 {
  margin-left: 15px;
}
body .ml-16 {
  margin-left: 16px;
}
body .ml-18 {
  margin-left: 18px;
}
body .ml-20 {
  margin-left: 20px;
}
body .ml-25 {
  margin-left: 25px;
}
body .ml-30 {
  margin-left: 30px;
}
body .ml-auto {
  margin-left: auto;
}
body {
  /* padding От 0 до 10 с шагом 0.5px */
}
body .p-0 {
  padding: 0;
}
body .p-0-5 {
  padding: 0.5px;
}
body .p-1 {
  padding: 1px;
}
body .p-1-5 {
  padding: 1.5px;
}
body .p-2 {
  padding: 2px;
}
body .p-2-5 {
  padding: 2.5px;
}
body .p-3 {
  padding: 3px;
}
body .p-3-5 {
  padding: 3.5px;
}
body .p-4 {
  padding: 4px;
}
body .p-4-5 {
  padding: 4.5px;
}
body .p-5 {
  padding: 5px;
}
body .p-5-5 {
  padding: 5.5px;
}
body .p-6 {
  padding: 6px;
}
body .p-6-5 {
  padding: 6.5px;
}
body .p-7 {
  padding: 7px;
}
body .p-7-5 {
  padding: 7.5px;
}
body .p-8 {
  padding: 8px;
}
body .p-8-5 {
  padding: 8.5px;
}
body .p-9 {
  padding: 9px;
}
body .p-9-5 {
  padding: 9.5px;
}
body .p-10 {
  padding: 10px;
}
body {
  /* padding От 10 до 30 с шагом 5px */
}
body .p-12 {
  padding: 12px;
}
body .p-15 {
  padding: 15px;
}
body .p-18 {
  padding: 18px;
}
body .p-20 {
  padding: 20px;
}
body .p-25 {
  padding: 25px;
}
body .p-30 {
  padding: 30px;
}
body {
  /* padding-top От 0 до 10 с шагом 0.5px */
}
body .pt-0 {
  padding-top: 0;
}
body .pt-0-5 {
  padding-top: 0.5px;
}
body .pt-1 {
  padding-top: 1px;
}
body .pt-1-5 {
  padding-top: 1.5px;
}
body .pt-2 {
  padding-top: 2px;
}
body .pt-2-5 {
  padding-top: 2.5px;
}
body .pt-3 {
  padding-top: 3px;
}
body .pt-3-5 {
  padding-top: 3.5px;
}
body .pt-4 {
  padding-top: 4px;
}
body .pt-4-5 {
  padding-top: 4.5px;
}
body .pt-5 {
  padding-top: 5px;
}
body .pt-5-5 {
  padding-top: 5.5px;
}
body .pt-6 {
  padding-top: 6px;
}
body .pt-6-5 {
  padding-top: 6.5px;
}
body .pt-7 {
  padding-top: 7px;
}
body .pt-7-5 {
  padding-top: 7.5px;
}
body .pt-8 {
  padding-top: 8px;
}
body .pt-8-5 {
  padding-top: 8.5px;
}
body .pt-9 {
  padding-top: 9px;
}
body .pt-9-5 {
  padding-top: 9.5px;
}
body .pt-10 {
  padding-top: 10px;
}
body {
  /* padding-top От 10 до 30 с шагом 5px */
}
body .pt-12 {
  padding-top: 12px;
}
body .pt-15 {
  padding-top: 15px;
}
body .pt-18 {
  padding-top: 18px;
}
body .pt-20 {
  padding-top: 20px;
}
body .pt-25 {
  padding-top: 25px;
}
body .pt-30 {
  padding-top: 30px;
}
body .pt-42 {
  padding-top: 42px;
}
body .pt-48 {
  padding-top: 48px;
}
body {
  /* padding-bottom От 0 до 10 с шагом 0.5px */
}
body .pb-0 {
  padding-bottom: 0;
}
body .pb-0-5 {
  padding-bottom: 0.5px;
}
body .pb-1 {
  padding-bottom: 1px;
}
body .pb-1-5 {
  padding-bottom: 1.5px;
}
body .pb-2 {
  padding-bottom: 2px;
}
body .pb-2-5 {
  padding-bottom: 2.5px;
}
body .pb-3 {
  padding-bottom: 3px;
}
body .pb-3-5 {
  padding-bottom: 3.5px;
}
body .pb-4 {
  padding-bottom: 4px;
}
body .pb-4-5 {
  padding-bottom: 4.5px;
}
body .pb-5 {
  padding-bottom: 5px;
}
body .pb-5-5 {
  padding-bottom: 5.5px;
}
body .pb-6 {
  padding-bottom: 6px;
}
body .pb-6-5 {
  padding-bottom: 6.5px;
}
body .pb-7 {
  padding-bottom: 7px;
}
body .pb-7-5 {
  padding-bottom: 7.5px;
}
body .pb-8 {
  padding-bottom: 8px;
}
body .pb-8-5 {
  padding-bottom: 8.5px;
}
body .pb-9 {
  padding-bottom: 9px;
}
body .pb-9-5 {
  padding-bottom: 9.5px;
}
body .pb-10 {
  padding-bottom: 10px;
}
body {
  /* padding-bottom От 10 до 30 с шагом 5px */
}
body .pb-12 {
  padding-bottom: 12px;
}
body .pb-15 {
  padding-bottom: 15px;
}
body .pb-18 {
  padding-bottom: 18px;
}
body .pb-20 {
  padding-bottom: 20px;
}
body .pb-25 {
  padding-bottom: 25px;
}
body .pb-30 {
  padding-bottom: 30px;
}
body .pb-40 {
  padding-bottom: 30px;
}
body {
  /* padding-right От 0 до 10 с шагом 0.5px */
}
body .pr-0 {
  padding-right: 0;
}
body .pr-0-5 {
  padding-right: 0.5px;
}
body .pr-1 {
  padding-right: 1px;
}
body .pr-1-5 {
  padding-right: 1.5px;
}
body .pr-2 {
  padding-right: 2px;
}
body .pr-2-5 {
  padding-right: 2.5px;
}
body .pr-3 {
  padding-right: 3px;
}
body .pr-3-5 {
  padding-right: 3.5px;
}
body .pr-4 {
  padding-right: 4px;
}
body .pr-4-5 {
  padding-right: 4.5px;
}
body .pr-5 {
  padding-right: 5px;
}
body .pr-5-5 {
  padding-right: 5.5px;
}
body .pr-6 {
  padding-right: 6px;
}
body .pr-6-5 {
  padding-right: 6.5px;
}
body .pr-7 {
  padding-right: 7px;
}
body .pr-7-5 {
  padding-right: 7.5px;
}
body .pr-8 {
  padding-right: 8px;
}
body .pr-8-5 {
  padding-right: 8.5px;
}
body .pr-9 {
  padding-right: 9px;
}
body .pr-9-5 {
  padding-right: 9.5px;
}
body .pr-10 {
  padding-right: 10px;
}
body {
  /* padding-right От 10 до 30 с шагом 5px */
}
body .pr-12 {
  padding-right: 12px;
}
body .pr-15 {
  padding-right: 15px;
}
body .pr-18 {
  padding-right: 18px;
}
body .pr-20 {
  padding-right: 20px;
}
body .pr-25 {
  padding-right: 25px;
}
body .pr-30 {
  padding-right: 30px;
}
body {
  /* padding-left От 0 до 10 с шагом 0.5px */
}
body .pl-0 {
  padding-left: 0;
}
body .pl-0-5 {
  padding-left: 0.5px;
}
body .pl-1 {
  padding-left: 1px;
}
body .pl-1-5 {
  padding-left: 1.5px;
}
body .pl-2 {
  padding-left: 2px;
}
body .pl-2-5 {
  padding-left: 2.5px;
}
body .pl-3 {
  padding-left: 3px;
}
body .pl-3-5 {
  padding-left: 3.5px;
}
body .pl-4 {
  padding-left: 4px;
}
body .pl-4-5 {
  padding-left: 4.5px;
}
body .pl-5 {
  padding-left: 5px;
}
body .pl-5-5 {
  padding-left: 5.5px;
}
body .pl-6 {
  padding-left: 6px;
}
body .pl-6-5 {
  padding-left: 6.5px;
}
body .pl-7 {
  padding-left: 7px;
}
body .pl-7-5 {
  padding-left: 7.5px;
}
body .pl-8 {
  padding-left: 8px;
}
body .pl-8-5 {
  padding-left: 8.5px;
}
body .pl-9 {
  padding-left: 9px;
}
body .pl-9-5 {
  padding-left: 9.5px;
}
body .pl-10 {
  padding-left: 10px;
}
body {
  /* padding-left От 10 до 30 с шагом 5px */
}
body .pl-12 {
  padding-left: 12px;
}
body .pl-15 {
  padding-left: 15px;
}
body .pl-16 {
  padding-left: 16px;
}
body .pl-18 {
  padding-left: 18px;
}
body .pl-20 {
  padding-left: 20px;
}
body .pl-25 {
  padding-left: 25px;
}
body .pl-30 {
  padding-left: 30px;
}
body {
  /* grid-gap От 5 до 30 с шагом 5px */
}
body .grid-gap-5 {
  grid-gap: 5px;
}
body .grid-gap-10 {
  grid-gap: 10px;
}
body .grid-gap-15 {
  grid-gap: 15px;
}
body .grid-gap-20 {
  grid-gap: 20px;
}
body .grid-gap-25 {
  grid-gap: 25px;
}
body .grid-gap-30 {
  grid-gap: 30px;
}
body .text-bold {
  font-weight: bold;
}
body .b-none {
  border: none;
}
body .br-4 {
  border-radius: 4px;
}
body .br-8 {
  border-radius: 8px;
}
body .br-12 {
  border-radius: 12px;
}
body .br-t-l-8 {
  border-top-left-radius: 8px;
}
body .br-t-r-8 {
  border-top-right-radius: 8px;
}
body .br-b-l-8 {
  border-bottom-left-radius: 8px;
}
body .br-b-r-8 {
  border-bottom-right-radius: 8px;
}
body .br-10 {
  border-radius: 10px;
}
body .br-15 {
  border-radius: 16px;
}
body .br-full {
  border-radius: 50%;
}
body .h-100 {
  height: 100%;
}
body .h-auto {
  height: auto !important;
}
body hr {
  border-top: 1px solid #f5f6f8;
  border-bottom: none;
  border-right: none;
  border-left: none;
}
body .color-main {
  color: #a2a5bf;
}
body .color-grey {
  color: #a2a5bf;
}
body .color-success {
  color: #00cdc4;
}
body .color-error {
  color: #ff5253;
}
body .color-primary {
  color: #000000;
}
body .color-blue {
  color: #4e92f7;
}
body .color-white {
  color: white;
}
body video {
  max-width: 100%;
}
body .w-100-table-button {
  display: block;
  width: 100%;
  position: relative;
  top: -3px;
  text-align: left;
  font-weight: 600;
}
body .pointer:hover,
body .pointer *:hover {
  cursor: pointer;
}
body .text-small {
  font-size: 12px;
}
body .w-space-normal {
  white-space: normal;
}
body p {
  white-space: normal;
  word-break: normal;
}
body .tooltipTable {
  font-size: 12px;
}
body .tooltipTableRight {
  text-align: right !important;
}
body .tooltipTable .el-table__header-wrapper {
  display: none;
}
body .tooltipTable td {
  padding: 2px 0 !important;
  border-bottom: none !important;
}
body .tooltipTable tr {
  border-bottom: none !important;
}
body .tooltipTable .cell {
  padding: 0 !important;
}
body .highUl li {
  line-height: 2;
}
.leading-20 {
  line-height: 20px;
}
.leading-24 {
  line-height: 24px;
}
.linkAnalyticNoData {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #49a7fd;
  text-decoration: none;
}
.linkAnalyticNoData:hover {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .d-flex-full-stretch-topCard,
  .d-flex-full-stretch {
    display: block;
  }
}
.disabled-button {
  box-shadow: 0px 4px 16px -2px rgba(27, 37, 51, 0.0588235294);
}
.resetButtonStyles {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
}
.text-muted-extra-small {
  font-size: var(--el-font-size-extra-small);
  color: var(--el-color-info-dark-2);
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
}
.flex-1 {
  flex: 1;
}
.modal-border-radius {
  border-radius: 12px;
}
.stroke-white svg path {
  stroke: white !important;
}
.settings {
  display: flex;
  flex-wrap: wrap;
}
.settings .link {
  background: #FAFAFA;
  padding: 16px 18px;
  border-radius: 5px;
  border: 1px solid #FAFAFA;
  width: 220px;
  display: block;
  position: relative;
  text-decoration: none;
  transition: all 0.3s;
  margin-bottom: 15px;
  margin-right: 15px;
  color: #3a3a3a;
}
.settings .link:hover {
  box-shadow: 0 4px 7px rgba(0, 0, 0, 0.1);
  border: 1px solid #F4F4F4;
}
.settings .link svg {
  stroke: #3a3a3a;
}
.settings .link:hover {
  color: #000000;
}
.settings .link:hover svg {
  stroke: #000000;
}
.settings .link .icon {
  position: relative;
  width: 32px;
  height: 32px;
}
.settings .link .icon img {
  width: 100%;
}
.settings .link .title {
  font-weight: 500;
  display: block;
  margin-top: 18px;
  font-size: 15px;
}
.settings .link .description {
  margin-top: 6px;
  display: block;
  font-size: 12px;
  color: #a6a9c1;
  max-width: 1200px;
}
.settings .router-link-active {
  transition: all 0.3s;
}
.integration-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.integrationRadio {
  width: calc(33.33% - 10px) !important;
  margin: 0 0 10px 0 !important;
}
.integrationRadio:nth-child(3n) {
  margin-right: 0;
}
.integrationRadio:nth-child(3n+1) {
  clear: left;
}
body .el-radio-group.userRoles {
  display: block;
}
body .el-radio-group.userRoles .el-radio {
  background: #FAFAFA;
  padding: 16px 18px;
  border-radius: 5px;
  border-color: #e3e3e3;
  height: auto;
  display: flex;
  margin-left: 0 !important;
  margin-bottom: 10px;
  width: 100%;
  white-space: normal;
  color: #3a3a3a;
  align-items: flex-start;
}
body .el-radio-group.userRoles .el-radio .el-radio__input {
  margin-top: 10px;
}
body .el-radio-group.userRoles .el-radio .el-radio__input.is-checked .el-radio__inner {
  border-color: #4e92f7;
  background: #4e92f7;
}
body .el-radio-group.userRoles .el-radio .el-radio__input.is-disabled .el-radio__inner:after {
  background-color: #FAFAFA;
}
body .el-radio-group.userRoles .el-radio.is-checked .el-radio__label {
  color: #3a3a3a;
}
body .el-radio-group.userRoles .el-radio .title {
  display: block;
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 10px;
  margin-top: -1.5px;
}
body .el-radio-group.userRoles .el-radio .description {
  display: block;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
}
body .modulesList .el-form-item__content {
  display: flex !important;
  flex-wrap: wrap;
}
body .modulesList .el-radio__input {
  display: none;
}
body .modulesList .el-radio__input.is-checked + .el-radio__label {
  color: #3a3a3a;
}
body .modulesList .el-radio__label {
  padding-left: 0;
  font-size: inherit;
}
body .modulesList .el-radio {
  background: #FAFAFA;
  padding: 16px 18px !important;
  border-radius: 5px;
  border: 1px solid #FAFAFA;
  width: 250px;
  height: auto !important;
  display: block;
  position: relative;
  text-decoration: none;
  transition: all 0.3s;
  margin-bottom: 15px;
  margin-right: 15px;
  white-space: normal;
  color: #3a3a3a;
  align-self: stretch;
}
body .modulesList .el-radio.integrationRadio {
  width: 100%;
}
body .modulesList .el-radio.integrationRadio .icon {
  position: relative;
  width: 100%;
  height: auto;
}
body .modulesList .el-radio.integrationRadio svg {
  stroke: none;
  max-height: 32px !important;
  max-width: 170px;
}
body .modulesList .el-radio.integrationRadio:hover svg {
  stroke: none;
}
body .modulesList .el-radio.integrationRadio.is-disabled {
  opacity: 0.7;
}
body .modulesList .el-radio.relationRadio {
  width: 100%;
}
body .modulesList .el-radio.relationRadio .icon {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}
body .modulesList .el-radio.relationRadio .icon svg {
  width: 25px;
  height: 25px;
  stroke: #3a3a3a;
}
body .modulesList .el-radio.relationRadio .icon svg:nth-child(2) {
  width: 16px;
  height: 16px;
}
body .modulesList .el-radio .el-tag {
  position: absolute;
  right: 10px;
  top: 10px;
  font-weight: 500;
}
body .modulesList .el-radio.is-disabled {
  color: #a2a5bf;
}
body .modulesList .el-radio.is-disabled svg {
  stroke: #a2a5bf;
}
body .modulesList .el-radio.is-disabled.integrationRadio svg {
  stroke: none;
  opacity: 0.5;
}
body .modulesList .el-radio.is-disabled .el-tag {
  background-color: #E8F4FF;
  color: #1367B4;
  border-color: #B8DDFE;
  opacity: 1;
}
body .modulesList .el-radio.is-disabled:hover svg {
  stroke: #a2a5bf;
}
body .modulesList .el-radio.is-disabled:hover.integrationRadio svg {
  stroke: none;
  opacity: 0.5;
}
body .modulesList .el-radio.is-bordered.is-checked {
  border-color: #3a3a3a;
}
body .modulesList .el-radio.is-bordered + .el-radio.is-bordered {
  margin-left: 0;
}
body .modulesList .el-radio:hover {
  box-shadow: 0 4px 7px rgba(0, 0, 0, 0.1);
  border: 1px solid #F4F4F4;
}
body .modulesList .el-radio svg {
  stroke: #3a3a3a;
}
body .modulesList .el-radio:hover {
  color: #000000;
}
body .modulesList .el-radio:hover svg {
  stroke: #000000;
}
body .modulesList .el-radio .icon {
  position: relative;
  width: 32px;
  height: 32px;
}
body .modulesList .el-radio .icon svg {
  width: inherit;
  height: inherit;
}
body .modulesList .el-radio .title {
  font-size: 14px;
  font-weight: 500;
  display: block;
  margin-top: 18px;
}
body .modulesList .el-radio .description {
  margin-top: 6px;
  display: block;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}
body .moduleType {
  margin: 0;
  font-weight: 500;
}
body .InReUnit {
  background: #FAFAFA;
  padding: 16px 18px;
  border-radius: 5px;
  border: 1px solid #FAFAFA;
  display: block;
  position: relative;
  text-decoration: none;
  transition: all 0.3s;
  margin-bottom: 15px;
  white-space: normal;
  color: #3a3a3a;
}
body .moduleInfoTabs {
  box-shadow: none;
}
body .moduleInfoTabs .no-data-block p {
  color: #3a3a3a;
}
body .moduleInfoTabs .no-data-block .empty {
  display: block;
  height: 40px;
  width: 100%;
}
body .moduleInfoTabs .no-data-block a {
  text-decoration: none;
}
body .moduleInfoTabs .no-data-block .el-button {
  margin: 0 auto;
  display: block;
  color: #b6b9cd;
  background: #ffffff;
  border-color: #e7e8ee;
}
body .moduleInfoTabs .no-data-block .el-button:hover {
  background: #f3f3f7;
  border-color: #e7e8ee;
}
body .moduleInfoTabs .el-tabs__item {
  color: #a2a5bf !important;
}
body .moduleInfoTabs .el-tabs__item:first-child {
  border-top-left-radius: 5px;
}
body .moduleInfoTabs .el-tabs__item:last-child {
  border-top-right-radius: 5px;
}
body .moduleInfoTabs .el-tabs__item.is-active {
  color: #3a3a3a !important;
}
body .widgetSettings .card-body {
  border-radius: 7px;
  border: 1px dashed #dcdfe6;
}
body .widgetSettings__oneWidget {
  border: 1px solid #dcdfe6;
  padding: 10px 15px;
  border-radius: 4px;
  margin-bottom: 10px;
}
body .widgetSettings__SelectWidgets {
  display: flex !important;
  flex-wrap: wrap;
}
body .widgetSettings__SelectWidgets .imgBlock {
  display: block;
  height: 100%;
  min-height: 140px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  background-position: center center;
  background-size: 100%, cover;
  width: 40%;
  transition: 0.3s all;
}
body .widgetSettings__SelectWidgets .el-radio {
  height: auto;
  max-width: 100%;
  width: 46%;
  padding: 0;
  margin-right: 15px;
  white-space: normal;
  word-break: break-word;
  display: block;
}
body .widgetSettings__SelectWidgets .el-radio:hover .imgBlock {
  background-size: 105%, cover;
  transition: 0.3s all;
}
body .widgetSettings__SelectWidgets .el-radio__input {
  display: none;
}
body .widgetSettings__SelectWidgets .el-radio__label {
  display: flex;
  align-items: stretch;
  height: 100%;
  padding-left: 0;
}
body .widgetSettings__SelectWidgets .el-radio__label .SelectWidgetsBody {
  padding-left: 15px;
  padding-right: 15px;
  width: 60%;
}
body .widgetSettings__SelectWidgets .el-radio__label .SelectWidgetsBody h4 {
  margin-bottom: 10px;
}
body .widgetSettings__SelectWidgets .el-radio__label .SelectWidgetsBody p {
  margin: 0;
  padding: 0;
  font-weight: 300;
  line-height: 1.4;
}
body .widgetSettings__SelectWidgets .el-radio__label img {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  max-height: 118px;
}
.integrationIndexIcon svg {
  height: 25px;
  margin-top: 5px;
}
.integrationIndexIcon h3 {
  color: #393f4a;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 5px;
  padding-bottom: 5px;
}
.subscription-and-payment .secondary-button {
  background-color: #E8F4FF;
  color: #409EFF;
  border: none;
  text-decoration: none;
}
.subscription-and-payment .secondary-button:hover {
  background-color: #B8DDFE;
  color: #1367B4;
}
.subscription-and-payment .secondary-button:active {
  background-color: #E8F4FF;
  box-shadow: 0 0 0 4px #B8DDFE;
}
.subscription-and-payment .history-header-buttons {
  display: flex;
  flex-wrap: wrap;
}
.subscription-and-payment .history-header-buttons > div {
  display: flex;
  align-items: center;
}
.subscription-and-payment .history-header-buttons > div:first-child {
  margin-right: 24px;
}
.subscription-and-payment .history-header-buttons > div:nth-child(2) {
  flex-grow: 1;
}
.subscription-and-payment .history-header-buttons > div:last-child {
  margin-left: 24px;
}
.subscription-and-payment .history-header-buttons .operation-type-select-group,
.subscription-and-payment .history-header-buttons .range-select-group {
  display: flex;
  align-items: center;
  color: #393F4A;
  font-size: 12px;
  font-weight: 500;
}
.subscription-and-payment .history-header-buttons .operation-type-select-group div,
.subscription-and-payment .history-header-buttons .range-select-group div {
  border: 1px solid #C9CCD0;
  border-left: none;
  padding: 8px 16px;
  cursor: pointer;
}
.subscription-and-payment .history-header-buttons .operation-type-select-group div:hover,
.subscription-and-payment .history-header-buttons .range-select-group div:hover {
  background-color: #f6f6f6;
}
.subscription-and-payment .history-header-buttons .operation-type-select-group div:first-child,
.subscription-and-payment .history-header-buttons .range-select-group div:first-child {
  border-left: 1px solid #C9CCD0;
  border-radius: 8px 0 0 8px;
}
.subscription-and-payment .history-header-buttons .operation-type-select-group div:last-child,
.subscription-and-payment .history-header-buttons .range-select-group div:last-child {
  border-radius: 0 8px 8px 0;
}
.subscription-and-payment .history-header-buttons .operation-type-select-group div.selected,
.subscription-and-payment .history-header-buttons .range-select-group div.selected {
  background-color: #EEEEF0 !important;
}
@media (max-width: 746px) {
  .subscription-and-payment .history-header-buttons > div:nth-child(2) {
    margin-top: 24px;
    margin-bottom: 24px;
  }
  .subscription-and-payment .history-header-buttons > div:last-child {
    width: 100%;
    margin: unset;
  }
}
@media (max-width: 1450px) {
  .settings .link {
    width: 201px;
  }
}
@media (max-width: 767px) {
  .settings .link {
    width: 100%;
    margin-right: 0;
  }
  .modulesList .el-radio {
    width: 100% !important;
    margin-right: 0 !important;
    height: auto !important;
    padding: 15px !important;
  }
  body .widgetSettings {
    margin-bottom: 15px;
  }
  body .widgetSettings__SelectWidgets .imgBlock {
    width: 100%;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 0;
    border-top-right-radius: 5px;
  }
  body .widgetSettings__SelectWidgets .el-radio {
    padding: 0 !important;
  }
  body .widgetSettings__SelectWidgets .el-radio__label {
    flex-direction: column;
  }
  body .widgetSettings__SelectWidgets .el-radio .SelectWidgetsBody p {
    margin-bottom: 15px;
  }
  body .el-dialog__body .el-radio {
    width: 100% !important;
    margin-right: 0 !important;
    height: auto !important;
  }
  body .el-dialog__body .el-radio.is-bordered {
    padding: 15px;
    margin-bottom: 10px;
  }
}
.plans .el-card__body {
  padding: 24px;
}
.plans .plan-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.plans .plan-header .badge {
  font-size: 12px;
  line-height: 16px;
}
.plans .plan-price-and-period-wrapper {
  margin-bottom: 24px;
}
.plans .plan-price-and-period-wrapper .plan-period-selector-row {
  display: flex;
  align-items: center;
}
.plans .plan-price-and-period-wrapper .plan-period-selector-row span {
  margin-right: 4px;
}
.plans .plan-price-per-month {
  font-size: 30px;
  line-height: 36px;
  color: #409EFF;
  margin-top: 2px;
}
.plans .extra-includes {
  margin-bottom: 24px;
}
.plans .warning-notification {
  margin: 24px 0;
}
.plans .plan-includes-header {
  font-size: 14px;
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 1px solid #EEEEF0;
}
.plans .plan-includes-item {
  display: flex;
  padding: 8px 0;
  align-items: center;
  border-bottom: 1px solid #EEEEF0;
  font-size: 14px;
}
.plans .plan-includes-item-label {
  flex-grow: 1;
  display: flex;
  align-items: center;
}
.plans .plan-includes-item-label-icon {
  width: 16px;
  height: 16px;
  margin-left: 4px;
  cursor: pointer;
}
.plans .plan-includes-item-label-icon svg {
  width: 100%;
  height: 100%;
  stroke: #AFB3BA;
}
.plans .plan-includes-item-value__blue {
  color: #409EFF;
}
.plans .muted-warning {
  margin-top: 12px;
  color: #737A86;
  font-size: 12px;
  margin-bottom: 24px;
}
.plans .plan-footer {
  margin-top: 24px;
}
.plans .plan-footer .el-button {
  padding: 12px 24px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  min-height: 44px;
}
.moduleSettingsContentRow .tableRow {
  border: 1px solid #EEEEF0;
  border-bottom: none;
}
.moduleSettingsContentRow .tableRow .el-col {
  padding: 10px 12px;
  max-height: 42px;
}
.moduleSettingsContentRow .tableRow .el-col:not(:last-child) {
  border-right: 1px solid #EEEEF0;
  display: block;
}
.moduleSettingsContentRow .tableRow .el-col .el-button {
  width: 100%;
  text-align: left;
}
.moduleSettingsContentRow .tableRow .el-col .el-button span {
  width: 100%;
}
.moduleSettingsContentRow .tableRow:last-child {
  border-bottom: 1px solid #EEEEF0;
  margin-bottom: 30px;
}
.moduleSettingsContentRow .tableRow .el-col:nth-child(3n) {
  color: #4e92f7;
  text-align: right;
}
.moduleSettingsContentRow .stickyTop {
  position: sticky;
  top: 0;
  background: white;
  z-index: 1;
}
.moduleSettingsInfoRow {
  width: 70%;
}
.moduleSettingsInfoRow h3 {
  margin-top: 0;
  padding-top: 0;
}
.vatCheckbox {
  position: relative;
  margin-left: 5px;
  margin-right: 5px !important;
  height: 5px !important;
}
@media (max-width: 767px) {
  .moduleSettingsInfoRow {
    width: 100%;
  }
}
.register-inn-selector-popper {
  background-color: #15182d;
  max-width: var(--inn-selector-max-width) !important;
  border-color: #a2a5bf;
}
.register-inn-selector-popper .el-select-dropdown__item {
  color: #a2a5bf;
}
.register-inn-selector-popper .el-select-dropdown__item:hover,
.register-inn-selector-popper .el-select-dropdown__item.selected,
.register-inn-selector-popper .el-select-dropdown__item.hover {
  background-color: #0C0E21 !important;
  color: #fff !important;
}
#guest .card {
  background: #15182d;
  color: #a2a5bf;
}
#guest {
  margin: 70px auto;
}
#guest .login, #guest .forgot {
  max-width: 490px;
  margin: auto;
}
#guest .register {
  max-width: 940px;
  margin: auto;
}
#guest .register .el-row:first-child {
  padding: 35px;
}
#guest .register .reg-steps {
  border-left: 1px solid #1A1E3F;
  padding-left: 35px;
  min-height: 580px;
}
#guest .register .reg-steps h2 {
  margin-top: 0;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  line-height: 150%;
  margin-bottom: 30px;
}
#guest .register h1 {
  font-weight: bold;
  font-size: 48px;
  line-height: 55px;
  margin-top: 82px;
}
#guest .register #logo {
  max-width: 160px;
  padding: 0;
}
#guest .auth-block h1 {
  color: #fff;
  margin-bottom: 0;
}
#guest .auth-block p {
  margin: 5px auto 20px;
}
#guest .auth-block p.reg {
  margin: 20px 0 0;
  font-weight: 300;
  color: #fff;
  line-height: 150%;
  max-width: 360px;
  font-size: 16px;
}
#guest .auth-block .el-link {
  position: absolute;
  bottom: 35px;
  font-weight: 300;
}
#guest .el-loading-mask {
  background-color: RGBA(17 20 48/60%);
}
@media (max-width: 510px) {
  #guest {
    margin: 30px 10px;
  }
  #guest .card-body {
    padding: 15px 20px;
  }
  #guest .login .p-20, #guest .forgot .p-20 {
    padding: 0;
  }
  #guest .register .el-row:first-child {
    padding: 15px;
  }
  #guest .register .reg-steps {
    margin-top: 30px;
    border: none;
    padding-left: 0;
    min-height: auto;
  }
  #guest .register .auth-block .el-link {
    position: relative;
    bottom: 0;
    margin-top: 10px;
  }
  #guest .register .auth-block h1 {
    margin-top: 30px;
    font-size: 36px;
  }
}
.cashboxOperation {
  position: relative;
}
.cashboxOperation__title .Addition {
  background: RGBA(103 194 58/15%);
}
.cashboxOperation__title .Addition svg path {
  stroke: #67C23A;
}
.cashboxOperation__title .Subtraction {
  background: RGBA(245 107 107/15%);
}
.cashboxOperation__title .Subtraction svg path {
  stroke: #F56C6C;
}
.cashboxOperation__titleIcon {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin: 20px auto 0;
}
.cashboxOperation__titleIcon svg {
  width: 40px;
  display: block;
  margin: auto;
  position: relative;
  top: 10px;
}
.cashboxOperation__title h3 {
  color: #3a3a3a !important;
  text-align: center;
  font-weight: 400;
  max-width: 80%;
  margin: 0 auto;
  padding-bottom: 0 !important;
}
.cashboxOperation__name {
  padding-top: 12px;
}
.cashboxOperation__value {
  background: #f5f6f8;
  display: block;
  border-radius: 5px;
  font-size: 20px;
  text-align: center;
  padding: 5px;
  margin-bottom: 20px;
}
.cashboxOperation__value span {
  color: #3a3a3a !important;
  font-weight: 600;
}
.cashboxOperation__underTitle {
  padding-bottom: 12px;
  text-align: center;
  color: #c0c4cc;
  font-size: 13px;
  font-weight: 300;
  margin-block: 0;
}
.cashboxOperation__infoItem {
  border-bottom: 1px solid #f5f6f8;
  margin: 5px 0;
}
.cashboxOperation__infoItem span {
  color: #c0c4cc;
  font-size: 13px;
  font-weight: 300;
}
.cashboxOperation__infoItem p {
  color: #3a3a3a;
  margin: 5px 0;
}
.cashboxOperationFooter {
  position: absolute;
  bottom: 0;
  padding: 10px 20px;
  display: flex;
}
.typeAddition {
  color: #67C23A;
  font-weight: 500;
}
.typeSubtraction {
  color: #F56C6C;
  font-weight: 500;
}
.cashboxOperationName {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cashboxSelectAddition svg path {
  fill: #67C23A;
}
.cashboxSelectSubtraction svg path {
  fill: #ff5253;
}
.cashboxInfoBalanceBody h2 {
  color: #3a3a3a;
  font-weight: 700;
  font-size: 36px;
  line-height: 130%;
  margin-bottom: 5px;
  margin-top: 20px;
}
.cashboxInfoBalanceBody p {
  color: #3a3a3a;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  margin: 0;
}
.cashboxInfoBalanceControls {
  margin-top: 77px;
}
.cashboxInfoBalanceControls .el-button {
  height: 24px !important;
  width: 24px;
  padding: 0;
  background: transparent;
}
.cashboxInfoBalanceControls .el-button + .el-button {
  margin-left: 8px;
}
.cashboxInfoGraph h2 {
  margin-top: 0;
  font-weight: 500;
  font-size: 24px;
  line-height: 130%;
  margin-bottom: 55px;
  white-space: nowrap;
}
.cashboxInfoGraphIndicators p {
  color: #3a3a3a;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 0;
}
.cashboxInfoGraphIndicators p:first-child {
  margin-top: 0;
}
.cashboxInfoGraphIndicators span {
  color: #3a3a3a;
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
}
.cashboxInfoGraphFlex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.cashboxInfoGraphFlex div:first-child {
  min-width: 200px;
}
.cashboxInfoGraphChart {
  margin-top: -135px;
  position: relative;
  top: 57px;
}
.cashboxInfoGraphChart .chart {
  width: 350px;
  height: 300px;
}
.cashboxStatusBlock {
  background: #FAFAFA;
  padding: 18px 15px;
  border-radius: 5px;
  margin-bottom: 15px;
  position: relative;
}
.cashboxStatusBlockChange {
  color: #4e92f7;
  cursor: pointer;
  border-bottom: 1px dashed;
  padding-right: 0 !important;
  position: relative;
}
.cashboxStatusBlockChange:hover {
  color: #3477d9;
}
.cashboxStatusBlockList {
  position: absolute;
  background: white;
  border-radius: 5px;
  display: block;
  padding: 8px;
  z-index: 10;
  left: -20px;
  top: 25px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.12);
}
.cashboxStatusBlockList .el-button {
  margin-left: 0;
  padding: 0 10px;
  border-bottom: 1px solid #F8F8F8;
  width: 100%;
  text-align: left;
  display: block;
}
.cashboxStatusBlockList .el-button span {
  padding-right: 0;
}
.cashboxStatusBlock span {
  padding-right: 10px;
  position: relative;
}
.cashboxStatusBlockReload {
  position: absolute;
  top: 11px;
  background: #fafafa;
  border: none;
  color: #a2a5bf;
}
.cashboxStatusBlockReload.is-loading {
  position: absolute;
}
.cashboxStatusBlockReload:hover, .cashboxStatusBlockReload:focus, .cashboxStatusBlockReload:active {
  background: inherit;
  color: #606266;
}
@media (max-width: 1430px) {
  .cashboxInfoGraphChart {
    left: -40px;
    top: 70px;
  }
  .cashboxInfoGraphChart .chart {
    width: 300px;
    height: 270px;
  }
}
@media (max-width: 1300px) {
  .cashboxInfoGraphChart {
    left: -60px;
    top: 80px;
  }
  .cashboxInfoGraphChart .chart {
    width: 270px;
    height: 240px;
  }
}
@media (max-width: 1200px) {
  .cashboxInfoGraphChart {
    left: -55px;
    top: 90px;
  }
  .cashboxInfoGraphChart .chart {
    width: 230px;
    height: 200px;
  }
}
@media (max-width: 1100px) {
  .cashboxInfoGraphChart {
    display: none;
  }
}
.drawer-weighing {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.drawer-weighing__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}
.drawer-weighing__header h3 {
  color: #3a3a3a !important;
  text-align: center;
  font-weight: 500;
}
.drawer-weighing__header .subtitle {
  display: block;
  text-align: center;
  color: #c0c4cc;
  font-size: 13px;
  font-weight: 300;
  margin-top: 10px;
  margin-bottom: 20px;
}
.drawer-weighing__header p {
  font-weight: 300;
  color: #000000;
  margin-bottom: 0;
  margin-top: 30px;
}
.drawer-weighing__body {
  color: #3a3a3a;
  font-weight: 300;
  height: 100%;
}
.drawer-weighing__body .el-progress-bar__inner {
  background-color: #00cdc4;
}
.drawer-weighing__body h4 {
  color: #3a3a3a;
}
.drawer-weighing__footer {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  margin-top: 20px;
}
.drawer-weighing__footer .item {
  min-height: 36px;
}
.createWeighing {
  padding: 20px;
  position: relative;
}
.drawer__collpase-header-wrapper {
  line-height: 1;
}
.drawer__collapse-header-subtitle {
  font-size: 13px;
  font-weight: 300;
  color: #c0c4cc;
}
.drawer__collapse-header-title {
  color: rgba(64, 158, 255, 0.8);
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 4px;
}
.weight-info {
  padding: 0 20px;
  margin-bottom: 20px;
  width: 100%;
  box-sizing: border-box;
}
.weight-info .el-progress__text {
  text-align: right;
  font-weight: 300;
  font-size: 14px !important;
}
.weight-details {
  padding: 0 20px;
  margin-top: 20px;
}
.weight-details__wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  white-space: nowrap;
  align-items: baseline;
  font-weight: 300;
  color: #3a3a3a;
}
.weight-details__name {
  margin-right: 5px;
}
.weight-details__desc {
  margin-left: 5px;
}
.weight-details__line {
  display: block;
  height: 1px;
  width: 100%;
  border-bottom: 1px dotted #c0c4cc;
}
.weight-details p, .weight-details ul {
  line-height: 1.4;
  font-size: 13px;
  font-weight: 300;
}
.weight-details ul {
  padding-left: 8px;
  list-style-type: "- ";
}
body .productionOrders {
  margin-top: 15px;
}
body .productionOrders .productionOrder {
  border-radius: 8px;
  border: 1px solid #eeeef0;
  overflow: hidden;
  margin-bottom: 15px;
}
body .productionOrders .productionOrderHead {
  padding: 20px 20px 10px 20px;
}
body .productionOrders .productionOrderBody {
  background: #F9F9F9;
}
body .productionOrders .productionOrderBody .el-table, body .productionOrders .productionOrderBody .el-table tr, body .productionOrders .productionOrderBody .el-table td.el-table-fixed-column--right {
  background-color: transparent;
}
body .productionOrders .productionOrderBody .el-table thead th .cell:first-child, body .productionOrders .productionOrderBody .el-table__row td .cell:first-child {
  padding-left: 20px;
}
body .productionOrders .productionOrderBody .el-table--enable-row-hover .el-table__body tr:hover > td.el-table__cell {
  background: #eeeef0;
}
body .productionOrders .productionOrderSlot {
  border-radius: 4px;
  background: white;
  text-align: center;
  padding: 4px;
  border: 1px solid #eeeef0;
  color: #2c3139;
}
body .productionOrders .productionOrderSlotCount {
  padding: 3px;
  border-radius: 3px;
  color: white;
  font-weight: 500;
}
body .productionOrders .productionOrderSlotCountnew {
  background: #afb3ba;
}
body .productionOrders .productionOrderSlotCountwork {
  background: #1b91fd;
}
body .productionOrders .productionOrderSlotCountdone {
  background: #00d0a3;
}
body .productionOrdersFailed {
  border: 1px solid #fcb3ae;
  background: #feeceb;
  border-radius: 4px;
  padding: 6px 16px;
  margin-top: 10px;
}
body .productionOrdersFailed svg {
  position: relative;
  top: 3px;
  margin-right: 10px;
}
body .productionOrdersFailed svg path {
  stroke: #f74539;
}
body .info {
  background: #FAFAFA;
  color: #3a3a3a;
  position: relative;
}
body .info .closeBtn {
  position: absolute;
  right: 8px;
  top: 8px;
  padding: 5px;
  min-height: auto;
  background: #e9e9ec;
  border: none;
  z-index: 9999;
}
body .info .closeBtn:hover {
  background: #d9d9da;
}
body .info .status {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 12px;
}
body .info .status span::before {
  content: "";
  height: 7px;
  width: 7px;
  display: block;
  border-radius: 50%;
  position: absolute;
  left: -15px;
  top: 6px;
}
body .info .status span.active::before {
  background: #67C23A;
}
body .info .status span.not-active::before {
  background: #ff5253;
}
body .planHeader {
  color: #3a3a3a;
  font-weight: bold;
  font-size: 18px;
  line-height: 21px;
  margin-bottom: 25px;
  margin-top: 0;
}
body .planCreateDialog {
  background: #FAFAFA;
}
body .planCreateDialog .el-dialog__header {
  position: absolute;
  right: 0;
}
body .planCreateDialog .el-dialog__body {
  padding: 0;
}
body .planCreateDialog .planSteps {
  width: 180px;
}
body .planCreateDialog .planSteps .planStepsBody {
  padding: 30px 15px;
}
body .planCreateDialog .planStepsInfo {
  width: 620px;
  background: white;
}
body .planCreateDialog .planStepsInfo .planStepsInfoBody {
  padding: 30px;
}
body .planCreate {
  display: flex;
}
body .planCreate .el-step:last-of-type .el-step__description, body .planCreate .el-step:last-of-type .el-step__main {
  padding-right: 10px;
}
body .planCreate .el-step.is-vertical {
  flex-direction: row-reverse;
}
body .planCreate .el-step__main {
  text-align: right;
  padding-right: 10px;
}
body .planCreate .el-step__title, body .planCreate .el-step__head, body .planCreate .el-step__icon-inner {
  font-weight: 300;
  transition: 0.1s all;
}
body .planCreate .el-step__title.is-finish, body .planCreate .el-step__head.is-finish {
  color: #00cdc4;
  border-color: #00cdc4;
}
body .planCreate .el-step__title.is-process, body .planCreate .el-step__head.is-process {
  color: #4e92f7;
  border-color: #4e92f7;
}
body .planCreate .el-step__title.is-wait {
  color: #a2a5bf;
}
body .planCreate .el-step__line {
  width: 1px !important;
  left: 12px !important;
  background-color: #a2a5bf;
}
body .planCreate .el-step__icon.is-text {
  border: 1px solid;
}
body .planCreate .el-radio__inner {
  height: 18px;
  width: 18px;
  border: 1px solid #a2a5bf;
}
body .planCreate .el-radio__label {
  padding-left: 15px;
}
body .planCreate .el-radio__label, body .planCreate .el-radio__input.is-checked + .el-radio__label {
  color: #3a3a3a;
}
body .planCreate .el-radio__input.is-checked .el-radio__inner {
  background: #fff;
  border-color: #4e92f7;
}
body .planCreate .el-radio__inner:after {
  background-color: #4e92f7;
  height: 8px;
  width: 8px;
}
body .planCreate .descriptionText {
  color: #a2a5bf;
  word-break: break-word;
  max-width: 460px;
}
body .planCreate .descriptionRadio {
  padding-left: 35px;
  margin-top: 10px;
  color: #a2a5bf;
  word-break: break-word;
  max-width: 460px;
}
body .plansBlockPage {
  position: relative;
}
body .plansBlockPage:after {
  content: "";
  display: block;
  position: absolute;
  text-decoration: none;
  width: 100px;
  height: 86%;
  z-index: 10;
  pointer-events: none;
  background-position: 0 0, 0 0;
  top: 35px;
  bottom: 0;
  right: 0;
  background-image: linear-gradient(270deg, #ffffff, rgba(255, 0, 0, 0));
}
body .plansBlockPage .planBlocks {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
  overflow-x: auto;
}
body .plansBlockPage .planBlocks::-webkit-scrollbar {
  width: 100%;
  height: 6px;
}
body .plansBlockPage .planBlocks::-webkit-scrollbar-track {
  background: #FAFAFA;
  border-radius: 5px;
}
body .plansBlockPage .planBlocks::-webkit-scrollbar-thumb {
  background-color: #F2F2F6;
  border-radius: 5px;
}
body .plansBlockPage .planBlocks .flex-item {
  width: auto !important;
  display: flex;
  justify-content: center;
  align-items: center;
}
body .plansBlockPage .planBlocks .planBlock {
  background: #FAFAFA;
  padding: 16px 18px;
  border-radius: 5px;
  margin-right: 25px;
  width: 244px;
  height: 276px;
  margin-bottom: 10px;
  position: relative;
  font-size: 13px;
}
body .plansBlockPage .planBlocks .planBlock .scrollGoods {
  overflow-y: auto;
  height: 123px;
  font-size: 13px;
  box-sizing: border-box;
}
body .plansBlockPage .planBlocks .planBlock .scrollGoods div {
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
body .plansBlockPage .planBlocks .planBlock .scrollGoodsOne {
  padding: 15px 15px 0;
  height: 89px;
}
body .plansBlockPage .planBlocks .planBlock .planBlockFooter h4 {
  margin-bottom: 4px;
}
body .plansBlockPage .planBlocks .planBlock .planBlockFooter p {
  margin: 0;
  color: #a2a5bf;
}
body .plansBlockPage .planBlocks .planBlock h3 {
  color: #3a3a3a;
  font-weight: bold;
  font-size: 18px;
  margin: 0;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
body .plansBlockPage .planBlocks .planBlock h4 {
  color: #3a3a3a;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  margin-top: 0;
  margin-bottom: 15px;
}
body .plansBlockPage .planBlocks .planBlock .el-progress__text {
  display: none;
}
body .plansBlockPage .planBlocks .planBlock .el-progress-bar__inner {
  background-color: #00cdc4;
  text-align: center;
}
body .planBlockGood {
  color: #a2a5bf;
}
body .planBlockGood .item:not(:last-child) {
  margin-bottom: 10px;
}
body .planBlockGood .oneGood {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}
body .planBlockGood .oneGood div:first-child {
  max-width: 70%;
  overflow-x: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
body .planBlockStatus {
  display: flex;
  margin-top: 5px;
  margin-bottom: 15px;
  color: #a2a5bf;
}
body .planBlockStatus .indicator-active {
  display: block;
  height: 8px;
  width: 8px;
  background: #00cdc4;
  border-radius: 50%;
  position: relative;
  transition: 0.3s all;
  top: 7px;
  margin-right: 8px;
}
body .planBlockStatus .indicator {
  display: block;
  height: 8px;
  width: 8px;
  background: #ff5253;
  border-radius: 50%;
  position: relative;
  transition: 0.3s all;
  top: 7px;
  margin-right: 8px;
}
body .shiftsBlock .shift {
  background: #FAFAFA;
}
body .shiftsBlock .shift h4 {
  margin-top: 8px;
}
body #createCalendarForm .el-checkbox-group {
  font-size: inherit;
}
body #createCalendarForm .checkbox-info {
  padding-left: 25px;
  color: #3a3a3a;
}
.order-total {
  display: flex;
  justify-content: space-between;
}
body #faq .faqCard {
  background: #FAFAFA;
  padding: 20px;
  border-radius: 5px;
  font-weight: 300;
  margin-bottom: 15px;
}
body #faq .faqCard svg {
  height: 22px;
  stroke: #3a3a3a;
  position: absolute;
  left: 10px;
}
body #faq .faqCard h3 {
  position: relative;
  padding-left: 35px;
  margin-top: 0;
}
body #faq .faqCard h3:hover {
  cursor: pointer;
}
body #faq .faqCard h3 svg {
  left: 0;
  height: 26px;
}
body #faq .faqQuestion {
  width: 100%;
  border: none;
  text-align: left;
  display: block;
  font-weight: 500;
  color: #000000;
  background-color: white !important;
  margin-left: 0 !important;
  margin-bottom: 10px;
  box-shadow: 0 6px 15px 0 rgba(0, 0, 0, 0.02);
}
body #faq .faqQuestion:hover {
  background-color: white !important;
  box-shadow: 0 6px 15px 0 rgba(0, 0, 0, 0.1);
}
body #faq .faqModules {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 0.33fr));
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (min-width: 1440px) {
  body #faq .faqModules {
    grid-template-columns: repeat(auto-fit, minmax(420px, 0.33fr));
  }
}
@media screen and (max-width: 1124px) {
  body #faq .faqModules {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
}
body #faq .faqModules div.faqCard .el-button {
  height: auto !important;
  min-height: 36px;
  line-height: 22px;
  white-space: normal !important;
}
body #faq #faq-help {
  position: relative;
  overflow: hidden;
}
body #faq #faq-help .mainFaqHelpBlock {
  position: relative;
  z-index: 10;
  max-width: 280px;
  height: 100%;
}
body #faq #faq-help .el-button {
  position: absolute;
  bottom: 0;
}
body #faq #faq-help h2 {
  font-weight: 700;
  margin-top: 0;
  font-size: 22px;
  line-height: 28px;
}
body #faq #faq-help .faq-help-info {
  font-weight: 300;
  line-height: 21px;
  margin-bottom: 10px;
  margin-top: 30px;
}
body #faq #faq-help .faq-help-time {
  color: #55575b;
  margin-top: 0;
  font-size: 12px;
  font-weight: 300;
  line-height: 21px;
  margin-bottom: 120px;
}
body #faq #faq-help img {
  position: absolute;
  width: 520px;
  top: 15%;
  left: 38%;
  z-index: 1;
}
#faq-details {
  display: flex;
  flex-direction: column;
}
#faq-details h1, #faq-details h2, #faq-details h3, #faq-details h4, #faq-details p, #faq-details ul, #faq-details ol {
  color: #3a3a3a;
}
#faq-details img {
  width: 100%;
  border: 8px solid #f5f6f8;
  border-radius: 5px;
  box-sizing: border-box;
  height: auto;
  background-color: #F9F9F9;
}
@media screen and (max-width: 1440px) {
  #faq-details h1 {
    font-size: 18px;
  }
}
.faqMenu {
  display: flex;
  flex-direction: column;
}
.faqMenu .el-button {
  display: block;
  width: 100%;
  text-align: left;
  margin-left: 0;
  border: none;
  white-space: normal;
  line-height: 1.5;
  height: auto !important;
  padding: 10px 8px;
}
.faqMenu .el-button.active {
  background: #FAFAFA !important;
  color: #000000;
}
.faqMenu .el-button:hover {
  background: white;
  color: #4e92f7;
}
.faqMenu h4 {
  color: #3a3a3a;
}
.faqMenu h4:hover {
  cursor: pointer;
  color: #000000;
}
@media screen and (max-width: 1440px) {
  .faqMenu h4 {
    font-size: 20px;
  }
}
.faqMenu h3 {
  border-bottom: 1px solid #eeeef0;
  margin: 0;
  padding: 10px;
}
.faqMenu__icon {
  height: 28px;
  width: 28px;
}
.faqMenu__icon svg {
  height: 28px;
  width: 28px;
  stroke: #3a3a3a;
}
@media (min-width: 767px) {
  #faq-details {
    padding-left: 25px !important;
    border-left: 1px solid #f5f6f8;
  }
}
@media (max-width: 767px) {
  body #faq .faqQuestion {
    height: auto !important;
    min-height: 36px;
    display: block;
    overflow-wrap: break-word;
    hyphens: auto;
    word-break: break-word;
    white-space: normal;
    line-height: 1.6;
  }
  body #faq #faq-help .mainFaqHelpBlock {
    max-width: 100%;
  }
  body #faq #faq-help img {
    display: none;
  }
  body #faq #faq-help .faq-help-time {
    margin-bottom: 15px;
  }
  body #faq #faq-help .el-button {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
  }
  body #faq .faqModules {
    display: block;
  }
  body #faq .faqModules div.faqCard {
    max-width: 100%;
  }
}
body .drawer__collpase-details {
  padding: 0 20px;
  margin-top: 20px;
}
body .lineInfo {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  white-space: nowrap;
  align-items: baseline;
  font-weight: 300;
  color: #3a3a3a;
  width: 100%;
}
body .lineInfo__name {
  margin-right: 5px;
}
body .lineInfo__line {
  display: block;
  height: 1px;
  width: 100%;
  border-bottom: 1px dotted #c0c4cc;
}
body .lineInfo__desc {
  margin-left: 5px;
}
body .el-drawer {
  font-weight: 300;
}
body .el-drawer__header {
  margin-bottom: 0;
  padding: 20px 35px 0;
}
body .el-drawer .subtitle {
  display: block;
  text-align: center;
  color: #c0c4cc;
  font-size: 13px;
  font-weight: 300;
  margin-top: 10px;
  margin-bottom: 20px;
}
body .el-drawer .el-collapse {
  margin-left: -20px;
  width: calc(100% + 40px);
}
body .el-drawer .collpaseHeader {
  line-height: 1;
}
body .el-drawer .collpaseHeader__subtitle {
  font-size: 13px;
  font-weight: 300;
  color: #c0c4cc;
}
body .el-drawer .collpaseHeader__title {
  color: rgba(64, 158, 255, 0.8);
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 4px;
}
body .el-drawer__collpase-details, body .el-drawer .collpaseDetails {
  padding: 0 20px;
  margin-top: 20px;
}
body .el-drawer__collpase-details__wrapper, body .el-drawer .collpaseDetails__wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  white-space: nowrap;
  align-items: baseline;
  font-weight: 300;
  color: #3a3a3a;
}
body .el-drawer__collpase-details__name, body .el-drawer .collpaseDetails__name {
  margin-right: 5px;
}
body .el-drawer__collpase-details__desc, body .el-drawer .collpaseDetails__desc {
  margin-left: 5px;
}
body .el-drawer__collpase-details__line, body .el-drawer .collpaseDetails__line {
  display: block;
  height: 1px;
  width: 100%;
  border-bottom: 1px dotted #c0c4cc;
}
body .el-drawer__collpase-details p, body .el-drawer__collpase-details ul, body .el-drawer .collpaseDetails p, body .el-drawer .collpaseDetails ul {
  line-height: 1.4;
  font-size: 13px;
  font-weight: 300;
}
body .el-drawer__collpase-details ul, body .el-drawer .collpaseDetails ul {
  padding-left: 8px;
  list-style-type: "- ";
}
body .el-drawer__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  color: #3a3a3a;
  padding: 0 20px 20px;
}
body .el-drawer__body h4 {
  color: #3a3a3a;
}
body .el-drawer h3 {
  color: #3a3a3a !important;
  text-align: center;
  font-weight: 500;
  padding-bottom: 15px;
}
body .el-drawer .el-form-item {
  margin-bottom: 16px;
}
body .el-drawer .el-form-item__label {
  font-weight: 400;
  line-height: 1.8;
}
body .el-drawer .oneGood {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}
body .el-drawer .oneGood div:first-child {
  max-width: 70%;
  overflow-x: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
body .el-drawer .el-progress__text {
  text-align: right;
  font-weight: 300;
  font-size: 14px !important;
}
body .el-drawer .footer {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  margin-top: 20px;
}
body .el-drawer .footer .item {
  width: 40px;
  padding: 12px;
}
body .el-drawer .footer el-button-group {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  width: 100%;
}
body .el-drawer .footer el-button-group .el-button {
  height: 40px !important;
}
@media (max-width: 520px) {
  body .el-drawer__body {
    padding: 0 25px 20px;
  }
  body .el-drawer__header {
    padding: 20px 20px 0;
  }
}
#main .el-breadcrumb .el-breadcrumb__item[aria-current=page] {
  pointer-events: none;
}
#main .el-breadcrumb .el-breadcrumb__inner {
  line-height: 20px;
  color: #8A909A;
}
#main .el-breadcrumb .el-breadcrumb__inner.is-link,
#main .el-breadcrumb .el-breadcrumb__inner a {
  color: #8A909A;
  font-weight: 400;
  font-size: 14px;
}
.mobile-menu {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.label {
  padding: 1px 8px;
  background-color: #F9F9F9;
  color: #49515f;
  max-width: fit-content;
  border-radius: 4px;
  display: flex;
  align-items: center;
  font-size: 12px;
  line-height: 20px;
  gap: 4px;
}
.label p {
  margin-block: 0;
  height: fit-content;
  white-space: nowrap;
}
.label__icon {
  width: 16px;
  height: 16px;
}
.label_color_yellow {
  background-color: #FDF7E6;
  color: #e27612;
}
.label_color_blue {
  background-color: #E8F4FF;
  color: #1b91fd;
}
.label_color_red {
  background-color: #feeceb;
  color: #f74539;
}
.label_color_green {
  background: #e6faf6;
  color: #006750;
}
.label_rounded {
  padding: 4px 8px;
  border-radius: 12px;
  color: #737a86;
  background: #fff;
  line-height: 133%;
}
.label_bold {
  font-weight: 500;
}
.toggle-button.el-radio-group {
  background: #F9F9F9;
  border-radius: 8px;
  height: 32px;
}
.toggle-button.el-radio-group .el-radio-button.is-active .el-radio-button__inner {
  background: #fff;
  border-radius: 8px;
  border-color: #EEEEF0;
  box-shadow: none;
}
.toggle-button.el-radio-group .el-radio-button__inner {
  padding: 7px 12px;
  border-radius: 8px;
  background: #F9F9F9;
  border: 1px solid transparent;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  font-family: inherit;
  color: #393f4a !important;
  box-shadow: none;
  box-sizing: border-box;
}
@media screen and (max-width: 360px) {
  .toggle-button.el-radio-group {
    width: 100%;
  }
  .toggle-button.el-radio-group .el-radio-button {
    width: 50%;
  }
  .toggle-button.el-radio-group .el-radio-button__inner {
    width: 100%;
  }
}
.custom-date-picker {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-family: inherit;
  color: #393f4a;
}
.custom-date-picker.is-disabled {
  opacity: 0.6;
  pointer-events: none;
}
.custom-date-picker__wrapper {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.custom-date-picker__control {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px;
  border-radius: 10px;
  border: 1px solid #eeeef0;
  background: #fff;
  box-shadow: 0 1px 2px rgba(17, 20, 40, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.custom-date-picker__display {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  border-radius: 8px;
  padding: 6px 10px;
  min-height: 32px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}
.custom-date-picker__display:hover {
  background: #F9F9F9;
}
.custom-date-picker__display:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px #b8ddfe;
}
.custom-date-picker__display--centered {
  position: relative;
  justify-content: center;
  min-width: 120px;
}
.custom-date-picker__display--centered .custom-date-picker__text {
  flex: 1;
  text-align: center;
}
.custom-date-picker__display--centered .custom-date-picker__icon {
  position: absolute;
  left: 10px;
}
.custom-date-picker__display--date-only {
  width: 60px;
  justify-content: flex-start;
  cursor: pointer;
}
.custom-date-picker__display--date-only:hover {
  background: #eeeef0;
}
.custom-date-picker__display--date-only:active {
  background: #c9ccd0;
}
.custom-date-picker__text {
  white-space: nowrap;
}
.custom-date-picker__text.is-placeholder {
  color: #8a909a;
}
.custom-date-picker__text--summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  white-space: normal;
}
.custom-date-picker__label {
  font-size: 13px;
  font-weight: 600;
  color: #393f4a;
  line-height: 1.2;
  text-align: left;
  white-space: nowrap;
}
.custom-date-picker__subtext {
  font-size: 12px;
  font-weight: 500;
  color: #393f4a;
  line-height: 1.2;
  white-space: nowrap;
  text-align: left;
}
.custom-date-picker__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.custom-date-picker__caret {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 2px;
  transition: transform 0.2s ease;
}
.custom-date-picker.is-open .custom-date-picker__caret {
  transform: rotate(-135deg);
}
.custom-date-picker__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: none;
  background: transparent;
  color: #393f4a;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.custom-date-picker__nav:hover {
  background: #eeeef0;
  color: #22252c;
}
.custom-date-picker__nav:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px #b8ddfe;
}
.custom-date-picker__nav--double {
  width: 28px;
}
.custom-date-picker__nav-icon {
  position: relative;
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}
.custom-date-picker__nav-icon--left {
  transform: rotate(135deg);
}
.custom-date-picker__nav-icon--right {
  transform: rotate(-45deg);
}
.custom-date-picker__nav-icon--double-left, .custom-date-picker__nav-icon--double-right {
  width: 14px;
  height: 7px;
  border: none;
}
.custom-date-picker__nav-icon--double-left::before, .custom-date-picker__nav-icon--double-left::after, .custom-date-picker__nav-icon--double-right::before, .custom-date-picker__nav-icon--double-right::after {
  content: "";
  position: absolute;
  top: 0;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}
.custom-date-picker__nav-icon--double-left::before, .custom-date-picker__nav-icon--double-left::after {
  transform: rotate(135deg);
}
.custom-date-picker__nav-icon--double-right::before, .custom-date-picker__nav-icon--double-right::after {
  transform: rotate(-45deg);
}
.custom-date-picker__nav-icon--double-left::before, .custom-date-picker__nav-icon--double-right::before {
  left: 0;
}
.custom-date-picker__nav-icon--double-left::after, .custom-date-picker__nav-icon--double-right::after {
  left: 7px;
}
.custom-date-picker__today {
  border: 1px solid #c9ccd0;
  border-radius: 6px;
  background: #fff;
  padding: 4px 16px;
  min-height: 24px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.15;
  font-weight: 400;
  color: #393f4a;
  white-space: nowrap;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.custom-date-picker__today:hover {
  background: #eeeef0;
  border-color: #8a909a;
}
.custom-date-picker__today:focus-visible {
  outline: none;
  border-color: #66b5fe;
  box-shadow: 0 0 0 2px #b8ddfe;
}
.custom-date-picker__today--dropdown {
  margin-left: auto;
}
.custom-date-picker__dropdown {
  position: fixed;
  z-index: 2000;
  background: #fff;
  border: 1px solid #eeeef0;
  border-radius: 16px;
  padding: 12px 16px;
  width: max-content;
  box-sizing: border-box;
  box-shadow: 0px 4px 4px -4px rgba(12, 12, 13, 0.05), 0px 16px 32px -4px rgba(12, 12, 13, 0.1);
}
.custom-date-picker__dropdown--fixed {
  position: fixed;
}
.custom-date-picker__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eeeef0;
  margin-bottom: 12px;
}
.custom-date-picker__month-title {
  flex: 1;
  text-align: center;
  font-weight: 700;
  color: #393f4a;
  font-size: 14px;
  text-transform: capitalize;
}
.custom-date-picker__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.custom-date-picker__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.custom-date-picker__weekday {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  font-size: 12px;
  font-weight: 400;
  color: #393f4a;
  text-transform: capitalize;
}
.custom-date-picker__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.custom-date-picker__footer {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #eeeef0;
  display: flex;
  justify-content: center;
}
.custom-date-picker__day {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 34px;
  margin: 0 auto;
  border-radius: 6px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: #393f4a;
  box-sizing: border-box;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.custom-date-picker__day:hover {
  background: #eeeef0;
  color: #22252c;
}
.custom-date-picker__day.is-outside {
  color: #afb3ba;
}
.custom-date-picker__day.is-today {
  border: 1px solid #c9ccd0;
  color: #393f4a;
}
.custom-date-picker__day.is-selected {
  background: #494b5e;
  color: #fff;
  font-weight: 500;
  border-color: #494b5e;
  box-shadow: none;
}
.custom-date-picker__day.is-selected:hover {
  background: rgb(61.8532934132, 63.5479041916, 79.6467065868);
  border-color: rgb(61.8532934132, 63.5479041916, 79.6467065868);
}
.custom-date-picker__day.is-outside .custom-date-picker__day-indicator {
  opacity: 0.3;
}
.custom-date-picker__day:focus-visible {
  outline: none;
  border: 1px solid #66b5fe;
  box-shadow: 0 0 0 2px #b8ddfe;
}
.custom-date-picker__day-number {
  line-height: 1.15;
}
.custom-date-picker__day-indicator {
  position: absolute;
  bottom: 4px;
  display: block;
  height: 3px;
  border-radius: 100px;
  background: #1b91fd;
  flex-shrink: 0;
}
.custom-date-picker__day-indicator--level-1 {
  width: 4px;
  height: 4px;
  border-radius: 50%;
}
.custom-date-picker__day-indicator--level-2 {
  width: 8px;
}
.custom-date-picker__day-indicator--level-3 {
  width: 12px;
}
.custom-date-picker__day-indicator--level-4 {
  width: 16px;
}
.custom-date-picker--block {
  width: 100%;
}
.custom-date-picker--block .custom-date-picker__display {
  flex: 1;
  justify-content: space-between;
  width: 100%;
}
.custom-date-picker--primary .custom-date-picker__display {
  background: #1984e6;
  border-color: #1984e6;
  color: #fff;
}
.custom-date-picker--primary .custom-date-picker__nav, .custom-date-picker--primary .custom-date-picker__today {
  background: #E8F4FF;
  border-color: #b8ddfe;
  color: #1367B4;
}
.custom-date-picker--primary .custom-date-picker__caret, .custom-date-picker--primary .custom-date-picker__nav-icon {
  border-color: currentColor;
}
.custom-date-picker.is-open .custom-date-picker__control {
  border-color: #66b5fe;
  box-shadow: 0 8px 18px rgba(17, 20, 40, 0.12);
}
@media screen and (max-width: 360px) {
  .custom-date-picker {
    width: 100%;
  }
}
#main.operator {
  background: white;
  padding-left: 0;
  height: 100vh;
  overflow-y: auto;
}
#main.operator aside {
  display: none;
}
#main.operator .operator-container {
  width: 100%;
  padding: 20px 25px;
}
#main.operator .operator-container .searchAndFilter {
  flex-wrap: wrap;
}
#main.operator .operator-header {
  margin-bottom: 20px;
}
#main.operator .operator-body .card {
  background: white;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}
#main.operator .operator-body .card-body {
  padding: 20px 25px;
}
#main.operator .icon-btn {
  text-align: center;
  display: block;
  padding: 3px 5px !important;
  border-radius: 8px !important;
}
@media screen and (max-width: 1024px) {
  #main.operator .icon-btn {
    padding: 4px !important;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px !important;
  }
  #main.operator .icon-btn svg {
    width: 20px;
    height: 20px;
  }
}
#main.operator .icon-btn .textXS {
  position: relative;
  padding: 0 5px;
  top: -3px;
}
#main.operator .pause-btn {
  background-color: #E8F4FF;
  color: #1984e6;
}
#main.operator .pause-btn:hover {
  background-color: #d4e3f1;
}
#main.operator .pause-btn:disabled {
  background-color: #E8F4FF;
}
#main.operator .pause-btn svg {
  height: 16px;
  width: 16px;
}
#main.operator .work-btn {
  background-color: #EFBD2D;
  color: white;
}
#main.operator .work-btn:hover {
  background-color: #daac26;
}
#main.operator .work-btn:disabled {
  background-color: #EFBD2D;
}
#main.operator .work-btn svg {
  height: 16px;
  width: 16px;
}
@media screen and (max-width: 1500px) {
  #main.operator .searchAndFilter .el-input {
    max-width: 120px !important;
  }
}
.operatorMapBlock {
  border: 1px solid #eeeef0;
  margin-bottom: 10px;
  box-shadow: rgba(0, 0, 0, 0.01) 0 10px 15px -3px, rgba(0, 0, 0, 0.01) 0px 4px 6px -2px;
  border-radius: 6px;
  overflow: hidden;
}
.operatorMapBlock:hover {
  border: 1px solid #c9ccd0;
  box-shadow: rgba(0, 0, 0, 0.05) 0 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}
.operatorPostBlock {
  border-radius: 5px;
  border: 1px solid #eeeef0;
  margin-bottom: 5px;
  box-shadow: rgba(0, 0, 0, 0.01) 0 10px 15px -3px, rgba(0, 0, 0, 0.01) 0px 4px 6px -2px;
}
.operatorPostBlock:hover {
  border: 1px solid #c9ccd0;
  box-shadow: rgba(0, 0, 0, 0.05) 0 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}
.operatorPostBlockBody {
  padding: 10px 15px;
}
.operatorPostBlock .ci-btn {
  height: 28px !important;
  line-height: 28px !important;
  min-height: 28px !important;
}
.operator-bg {
  background: #F9F9F9;
}
.operator-button {
  width: 100%;
  height: 60px;
  font-size: 18px;
}
.operator-button-confirm {
  background: #009272;
  color: white;
  border-color: #009272;
}
.operator-button-confirm:hover {
  background: #007f63;
  color: white;
  border-color: #007f63;
}
.operator-col-main,
.operator-col-side {
  min-width: 0;
}
.operator-col-side {
  position: sticky;
  top: 20px;
  align-self: flex-start;
}
.operator-mixers {
  overflow: hidden;
  max-width: 100%;
  min-width: 0;
}
.operator-mixers .operator-mixers-body {
  padding: 20px;
  min-width: 0;
}
.operator-mixers .el-tabs,
.operator-mixers .el-tabs__content {
  min-width: 0;
  overflow: hidden;
}
.operator-mixers-empty {
  background: #F9F9F9;
  text-align: center;
  padding: 50px 10px;
  border-radius: 10px;
  border: 1px solid #eeeef0;
}
.operator-form .custom-input .el-input__wrapper, .operator-form .custom-select .el-input__wrapper, .operator-form .custom-datepicker .el-input__wrapper, .operator-form .el-select__wrapper {
  height: 42px !important;
}
.operatorOrderButton {
  height: 44px;
  width: 44px;
  font-size: 20px;
  border-radius: 8px;
  margin-left: 8px;
}
.operatorOrderButton.el-button--primary.is-disabled {
  background-color: var(--el-button-disabled-bg-color);
  background-image: none;
  border-color: var(--el-button-disabled-border-color);
  color: var(--el-button-disabled-text-color);
  cursor: not-allowed;
}
.operatorOrderButton.el-button--success {
  background-color: #009272 !important;
  border-color: #009272 !important;
}
.operatorOrderButton.el-button--success:hover {
  background-color: #007f63 !important;
  border-color: #007f63 !important;
}
.operatorOrderPrintButton {
  height: 44px;
  width: 44px;
  min-height: initial;
  margin-left: 0;
}
.operator-factory-container {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}
.factory-status-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}
.asu-status-text {
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.operator-linked-badges {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 16px;
}
.operator-linked-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 16px;
  background: #E8F4FF;
  border-radius: 4px;
  color: #1984e6;
  cursor: default;
}
.operator-linked-badge svg {
  flex-shrink: 0;
}
.operator-linked-count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 16px;
  height: 16px;
  padding: 0 5px;
  border-radius: 4px;
  background: #1984e6;
  color: white;
  font-size: 11px;
  font-weight: 500;
  line-height: 16px;
  cursor: default;
}
.operator-additional-load-badge {
  display: inline-flex;
  align-items: center;
  height: 16px;
  padding: 0 6px;
  background: #FDF7E6;
  color: #ecaf02;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  line-height: 16px;
  white-space: nowrap;
  cursor: default;
}
.operatorOrdersTab .el-radio-button .el-radio-button__inner {
  height: 46px;
  line-height: 44px;
  padding: 0 25px;
  background: #F9F9F9;
  color: #afb3ba;
  border-color: #c9ccd0;
  transition: 0s !important;
  box-shadow: none !important;
}
.operatorOrdersTab .el-radio-button .el-radio-button__inner:hover {
  color: #737a86;
}
.operatorOrdersTab .el-radio-button.is-active .el-radio-button__inner {
  background: white;
  color: #1984e6;
}
.operatorOrdersTab .el-radio-button:first-child .el-radio-button__inner {
  border-radius: 8px 0 0 8px;
}
.operatorOrdersTab .el-radio-button:last-child .el-radio-button__inner {
  border-radius: 0 8px 8px 0;
}
.operatorDates .group .el-button {
  height: 46px !important;
}
.operatorDates .group .el-button.today .day, .operatorDates .group .el-button.today .num {
  color: #49515f;
}
.operatorDates .group .el-button.active {
  background: white !important;
  border-color: #c9ccd0 !important;
}
.operatorDates .group .el-button.active .day, .operatorDates .group .el-button.active .num {
  color: #1984e6 !important;
}
.operatorDates .day-btn {
  background: #F9F9F9;
  border-color: #c9ccd0;
}
.operatorDates .day-btn:hover .day, .operatorDates .day-btn:hover .num {
  color: #737a86;
}
.operatorDates .day, .operatorDates .num {
  color: #afb3ba;
}
.operatorInfoBlock {
  background: #F9F9F9;
  border-radius: 10px;
}
.operatorInfoBlockBody {
  padding: 10px 15px;
}
@media (max-width: 1500px) {
  .operatorOrdersTab .el-radio-button__inner {
    padding: 0 15px !important;
  }
}
.labSpecView {
  border-radius: 16px;
  margin-top: 15px;
  border: 1px solid #eeeef0;
}
.labGoodsCreateSpec__dialog {
  text-align: center;
}
.labGoodsCreateSpec__dialog-label {
  max-width: 70%;
  margin-inline: auto;
}
.labGoodsCreateSpec__dialog.el-dialog__header {
  text-align: center;
}
.labGoodsCreateSpec__dialog footer {
  display: flex;
}
.labGoodsCreateSpec__default-row {
  margin-top: -16px;
  margin-bottom: 10px;
}
.labGoodsCreateSpec__default-checkbox {
  max-width: fit-content !important;
  padding-right: 0 !important;
}
.labGoodsCreateSpec__default-checkbox .el-checkbox {
  font-weight: 400 !important;
}
.labGoodsCreateSpec__default-text {
  max-width: fit-content !important;
  padding-top: 5px;
}
.labGoodsCreateSpec__default-text p {
  font-size: 14px;
  font-weight: 500;
  color: #3a3a3a;
}
.labGoodsCreateSpec__warning-tooltip {
  max-width: 400px !important;
}
/* remove blue outline */
button:focus {
  outline: 0;
}
.burger-button {
  position: relative;
  width: 34px;
  height: 25px;
  top: 0;
  display: block;
  z-index: 2;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  pointer-events: all;
}
.burger-bar {
  background-color: white;
  position: absolute;
  top: 50%;
  right: 6px;
  left: 6px;
  height: 2px;
  width: auto;
  margin-top: -1px;
}
.burger-bar--1 {
  -webkit-transform: translateY(-6px);
  transform: translateY(-6px);
}
.burger-bar--2 {
  transform-origin: 100% 50%;
  transform: scaleX(0.8);
}
.burger-button:hover .burger-bar--2 {
  transform: scaleX(1);
}
.no-touchevents .burger-bar--2:hover {
  transform: scaleX(1);
}
.burger-bar--3 {
  transform: translateY(6px);
}
#burger.active .burger-button {
  transform: rotate(-180deg);
}
#burger.active .burger-bar {
  background-color: #fff;
}
#burger.active .burger-bar--1 {
  transform: rotate(45deg);
}
#burger.active .burger-bar--2 {
  opacity: 0;
}
#burger.active .burger-bar--3 {
  transform: rotate(-45deg);
}
.slide-enter-active,
.slide-leave-active {
  transition: transform 0.2s ease;
}
.slide-enter,
.slide-leave-to {
  transform: translateX(-100%);
}
.sidebar-backdrop {
  background-color: rgba(19, 15, 64, 0.4);
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  cursor: pointer;
}
.sidebar-panel {
  overflow-y: auto;
  background-color: #130f40;
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  z-index: 999;
  padding: 3rem 20px 2rem 20px;
  width: 300px;
}
#mobile-header {
  background: #15182d;
  color: #747689;
  padding: 7px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px;
  border-radius: 5px;
}
#mobile-header a:first-child {
  height: 34px;
}
#mobile-header #mobile-logo svg {
  height: 28px;
  top: 3px;
  position: relative;
}
#mobile-menu {
  background-color: #111428;
  color: #747689;
  position: fixed;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #15182d;
  left: 0;
  top: 0;
  width: 100%;
  height: calc(100% - 80px);
  z-index: 5;
}
#mobile-menu .mobile-factory-selector-wrapper {
  padding: 0 20px;
}
#mobile-menu #mobile-menu-header {
  margin: 10px;
  padding: 7px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#mobile-menu #mobile-menu-header span {
  font-size: 24px;
  color: #fff;
  font-weight: 600;
}
#mobile-menu #navigation {
  margin-top: 0;
  height: auto;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
#mobile-menu #navigation .router-link-active {
  background: unset !important;
}
#mobile-menu #navigation .router-link-active:before {
  content: unset;
  display: none;
}
#mobile-menu #navigation .link {
  color: #fff !important;
}
#mobile-menu #navigation .link svg {
  stroke: #fff !important;
}
#mobile-menu #navigation .link {
  min-height: 50px !important;
}
#mobile-menu #navigation .link:last-child {
  margin-bottom: unset;
}
#mobile-menu #navigation .link .icon {
  left: 20px;
}
#mobile-menu #navigation .link .title {
  margin-left: 55px;
}
#mobile-menu #navigationFooter {
  background: #111428;
  position: relative;
  padding: 0 20px 0 20px;
}
@media (max-width: 1024px) {
  body #main {
    padding-left: 0;
  }
  body #headTabs {
    padding-inline: 12px;
    margin-top: 0;
  }
  body .card-title {
    border-bottom: none;
  }
  body .widj .main {
    background: #111428;
    padding: 0;
    margin-top: 10px;
  }
  body .burger-button {
    right: 0;
  }
}
@media (min-width: 767px) {
  #content-body:not(:has(.widgets)) {
    border-top: 1px solid #eeeef0;
  }
}
@media (max-width: 520px) {
  .card-title .buttonsBlock .el-button span {
    display: none;
  }
  .page-headerUser {
    display: none;
  }
}
@media (max-width: 767px) {
  body .el-message-box, body .el-message {
    width: 90% !important;
  }
  body .mobile-factory-selector-wrapper {
    padding: 0 !important;
    margin-bottom: 20px;
    position: relative;
    left: -5px;
  }
  #headTabs {
    padding-top: 10px;
    overflow-x: scroll;
  }
  #headTabs::-webkit-scrollbar {
    display: none;
  }
  #headTabsBlock {
    border-radius: 8px 8px 0 0 !important;
  }
  #headTabsBlock .headTab {
    padding: 12px 16px !important;
    font-size: 12px !important;
    line-height: 16px !important;
  }
}
@media (max-width: 500px) {
  #headTabs {
    padding-left: 0px;
    border-color: #eeeef0;
  }
}
.widgets {
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 3fr;
  grid-template-rows: calc(100svh - 50px);
  gap: 12px;
  flex: 1;
}
.left-widgets-list {
  max-height: 100%;
  min-height: 0;
}
.right-widgets {
  min-width: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.right-widgets .widget-card:hover .no-data-block svg path {
  transition-delay: 0.5s;
}
.right-widgets .no-data-block {
  margin-block: auto;
}
.right-widgets .no-data-block svg {
  margin-top: 5px;
}
body .left-widgets {
  min-width: 0;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
}
body .left-widgets-one {
  min-height: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
}
body .left-widgets-list {
  flex: 1;
}
body .left-widgets .widget-card {
  height: 100%;
  overflow: hidden;
}
body .left-widgets .prodAndShipmentsScroll::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
body .left-widgets .prodAndShipmentsScroll::-webkit-scrollbar-corner {
  background-color: transparent;
}
body .left-widgets .prodAndShipmentsScroll::-webkit-scrollbar-track {
  background-color: #2a2d3a;
  border-radius: 3px;
}
body .left-widgets .prodAndShipmentsScroll::-webkit-scrollbar-thumb {
  background-color: #4a4d5a;
  border-radius: 3px;
}
body .left-widgets .prodAndShipmentsScroll::-webkit-scrollbar-thumb:hover {
  background-color: #5a5d6a;
}
body .left-widgets .prodAndShipmentsScroll {
  scroll-behavior: smooth;
  margin-top: 15px;
  overflow-y: auto;
}
body .left-widgets .NoWidget {
  height: 100%;
}
body .left-widgets .NoWidget__body {
  padding-top: 40%;
}
body .NoWidget {
  border: 1px solid #ceced5;
  border-radius: 16px;
}
body .NoWidget__body {
  color: #848595;
  padding: 13px;
  text-align: center;
  opacity: 0.4;
  transition: 0.5s all;
  transition-delay: 0.1s;
}
body .NoWidget__body:hover {
  opacity: 1;
  transition: 0.6s all;
}
body .NoWidget__body svg path {
  fill: #848595;
  opacity: 1;
  fill-opacity: 1;
}
body .NoWidget__body button {
  background: transparent;
  color: #848595;
  border-color: #848595;
}
body .NoWidget__body button:hover, body .NoWidget__body button:focus, body .NoWidget__body button:active {
  background: transparent;
  color: #848595;
  border-color: #848595;
}
#right-top-widgets {
  margin-bottom: 12px;
}
.no-data-block svg {
  display: block;
  margin: 25px auto 30px;
}
.no-data-block svg path {
  transition: 1.2s all;
}
.no-data-block p {
  font-weight: 300;
  text-align: center;
  font-size: 13px;
  color: white;
}
.widget-card {
  background: #15182d;
  color: #a2a5bf;
  min-height: 330px;
  flex: 1;
}
.widget-card:hover .widget-card-title_subTitle {
  color: #848595;
}
.widget-card:hover .no-data-block svg path {
  fill: #848595;
  opacity: 1;
  fill-opacity: 1;
}
.widget-card-title {
  color: white;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}
.widget-card-title_subTitle {
  color: #2b2e4a;
  font-weight: 400;
  font-size: 14px;
  position: relative;
  transition: 0.5s all;
  top: -1px;
  margin-left: 5px;
}
.widget-card-title_subTitle::before {
  display: inline-block;
  content: "";
  border-top: 1px solid #2b2e4a;
  width: 10px;
  position: relative;
  top: -4px;
  margin-right: 15px;
}
.widget-card .el-loading-parent--relative {
  min-height: 250px;
}
.widget-card-body::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.widget-card-body::-webkit-scrollbar-corner {
  background-color: transparent;
}
.widget-card-body::-webkit-scrollbar-track {
  background-color: #2a2d3a;
  border-radius: 3px;
}
.widget-card-body::-webkit-scrollbar-thumb {
  background-color: #4a4d5a;
  border-radius: 3px;
}
.widget-card-body::-webkit-scrollbar-thumb:hover {
  background-color: #5a5d6a;
}
.widget-card-body {
  scroll-behavior: smooth;
}
.widget-card-body .el-loading-mask {
  background-color: rgba(23, 23, 44, 0.9);
}
.widget-card-body .item {
  padding-block: 13px;
  transition: all 0.3s ease;
}
.widget-card-body .item:hover {
  background-color: #13162a;
  box-shadow: 0 2px 24px 0 #26293e;
}
.widget-card-body .item-top {
  color: white;
  font-size: 13px;
  line-height: 15px;
  display: block;
  font-weight: 400;
}
.widget-card-body .item-bottom {
  font-size: 12px;
  font-weight: 300;
}
.widget-card-body .item-right {
  text-align: right;
  color: #E8E9EB;
  font-size: 13px;
  line-height: 15px;
  display: block;
  position: relative;
  top: 10px;
  font-weight: 400;
}
.widget-card-body .widget-header-text h2 {
  margin-block: 0;
  font: 500 36px/1.22 Ubuntu;
  color: #FFFFFF;
}
.widget-card-body .widget-header-text h3 {
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  color: #FFFFFF;
  margin-bottom: 0;
  margin-top: 0;
}
.widget-card-body .widget-header-text p {
  margin-block: 0;
  font: 400 12px/1.33 Ubuntu;
  color: #a2a5bf;
}
.widget-card .widget-reload {
  padding: 0;
  margin-top: -4px;
  color: white;
  background: transparent;
  border: none;
  opacity: 0.5;
  transition: 0.3s all;
  margin-left: 8px;
  position: relative;
}
.widget-card .widget-reload.is-circle, .widget-card .widget-reload.is-circle i {
  width: 18px;
  height: 18px;
}
.widget-card .widget-reload.is-circle svg, .widget-card .widget-reload.is-circle i svg {
  width: 100%;
  height: 100%;
}
.widget-card .widget-reload.is-loading:before {
  background-color: transparent;
}
.widget-card .widget-reload:hover, .widget-card .widget-reload:focus, .widget-card .widget-reload:active {
  color: white;
  background: transparent;
  border: none;
  opacity: 1;
}
.widget-card .progress {
  position: relative;
  top: 4px;
}
.widget-card .progress .el-step.is-horizontal .el-step__line {
  display: none;
}
.widget-card .progress .is-success .el-step__icon {
  opacity: 1;
  background: #80c0ff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
}
.widget-card .progress .el-step__icon {
  width: 20px;
  height: 4px;
  border-radius: 4px;
  background: #FFFFFF;
  opacity: 0.15;
  border: none;
}
.widget-card .progress .el-step__icon-inner {
  display: none;
}
.widget-card .colored {
  color: #80c0ff;
  transition: 0.3s all;
}
.widget-card .not-colored {
  color: #a2a5bf;
  transition: 0.3s all;
}
.widget-card .indicator-active {
  display: block;
  height: 8px;
  width: 8px;
  background: #00cdc4;
  box-shadow: 0 0 12px #00cdc4;
  border-radius: 50%;
  position: relative;
  top: 4px;
  transition: 0.3s all;
}
.widget-card .indicator {
  display: block;
  height: 8px;
  width: 8px;
  background: #383B57;
  border-radius: 50%;
  position: relative;
  top: 4px;
  transition: 0.3s all;
}
.widget-shipments.widget-card {
  padding-inline: 0;
}
.widget-shipments .widget-card-body {
  overflow: auto;
}
.widget-shipments .widget-header, .widget-shipments .item {
  padding-inline: 16px;
}
.widget-shipments .item-top {
  text-transform: lowercase;
}
.widget-shipments .item-top:first-letter {
  text-transform: uppercase;
}
.widget-shipments-companies.widget-card {
  padding-inline: 0;
}
.widget-shipments-companies .widget-header, .widget-shipments-companies .item {
  padding-inline: 16px;
}
.widget-shipments-companies .widget-card-body {
  margin-top: 16px;
}
.widget-shipments-companies .item-right {
  top: 0;
}
.widget-shipments-companies-good:last-child {
  margin-bottom: 0;
}
.widget-shipments-companies-good {
  margin-bottom: 4px;
}
.widget-shipments-companies-good .item-top {
  color: #a2a5bf;
  font-size: 12px;
}
.widget-shipments-companies-good .item-right {
  color: #a2a5bf;
}
.widget-manufacturing-products {
  max-height: 100%;
  height: 100%;
}
.widget-manufacturing-products .widget-card-body {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  grid-template-columns: 100%;
  margin-top: 10px;
}
.widget-manufacturing-products .widget-card-body .item {
  padding: 21px 9px;
}
.widget-manufacturing-products .widget-card-body .item-right {
  top: 0;
}
.widget-manufacturing-products .widget-card-body .item-right.colored {
  color: #00cdc4;
  transition: 0.3s all;
}
.widget-manufacturing-products .widget-card-body .item-right.not-colored {
  color: #383B57;
  transition: 0.3s all;
}
.widgetControlGoodsItem {
  margin: 5px 10px;
  padding: 15px;
  background-color: #13162a;
  box-shadow: 0 2px 20px 0 #1b1e3a;
  border-radius: 6px;
}
.widgetControlGoodsItemTask {
  margin: 10px 0;
  border-radius: 8px;
  padding: 15px;
  background: white;
  color: #22252c;
  cursor: pointer;
}
.widgetControlGoodsSelected {
  margin: 10px 0;
  border-radius: 8px;
  padding: 15px;
  background: white;
  color: #22252c;
}
.cashbox-widget .cashboxScroll {
  overflow-y: scroll;
  max-height: 215px;
}
.cashbox-widget .cashboxScroll::-webkit-scrollbar {
  display: none;
}
.cashbox-widget .cashboxScroll .operation h3 {
  font-size: 16px;
  color: white;
  font-weight: 700;
  margin-bottom: 5px;
  padding: 0 25px;
}
.cashbox-widget .cashboxScroll .operation .item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 5px;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cashbox-widget .cashboxScroll .operation .item .title {
  font-size: 13px;
  color: white;
  font-weight: 400;
  margin-bottom: 2px;
  margin-top: 0;
  line-height: 1.3;
}
.cashbox-widget .cashboxScroll .operation .item .description {
  font-size: 12px;
  color: #a2a5bf;
  font-weight: 300;
  margin-bottom: 0;
  margin-top: 0;
  line-height: 1.3;
}
.cashbox-widget .cashboxScroll .operation .item .value {
  font-size: 12px;
  font-weight: 400;
  margin-top: 0;
  line-height: 1.3;
  white-space: nowrap;
}
.cashbox-widget .no-data-block {
  margin-top: 70px;
}
.cashbox-widget .widget-header-text h2 {
  margin-bottom: 20px;
}
.cashbox-widget .widget-header-text h5 {
  font-size: 13px;
  color: white;
  margin-top: 0;
  margin-bottom: 15px;
}
.cashbox-widget .widget-header-text .weekAll {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 13px;
  color: #a2a5bf;
}
.cashbox-widget .widget-header-text p {
  font-size: 13px;
  color: #a2a5bf;
}
.cashbox-widget .cashbox-chart {
  width: calc(100% - 30px);
}
.cashbox-widget .cashbox-chart .chart {
  height: 170px;
  width: 100%;
}
.cashbox-widget .income {
  color: #00cdc4;
  white-space: nowrap;
}
.cashbox-widget .spending {
  color: #ff5253;
  white-space: nowrap;
}
.widget-scroll-x::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.widget-scroll-x::-webkit-scrollbar-corner {
  background-color: transparent;
}
.widget-scroll-x::-webkit-scrollbar-track {
  background-color: #2a2d3a;
  border-radius: 3px;
}
.widget-scroll-x::-webkit-scrollbar-thumb {
  background-color: #4a4d5a;
  border-radius: 3px;
}
.widget-scroll-x::-webkit-scrollbar-thumb:hover {
  background-color: #5a5d6a;
}
.widget-scroll-x {
  scroll-behavior: smooth;
  overflow-x: scroll;
  padding-bottom: 15px;
  width: 85%;
  margin: 0 auto 15px;
}
.widget-scroll-x .chart {
  width: 100%;
  height: 170px;
}
@media (max-width: 1400px) {
  .widgets {
    gap: 6px;
  }
}
@media (max-width: 1280px) {
  .widgets {
    grid-template-columns: 1fr;
    display: grid;
    grid-template-rows: 700px minmax(600px, 800px);
    grid-auto-rows: unset;
  }
  .left-widgets {
    max-width: unset;
    min-width: 100%;
  }
}
@media (max-width: 1024px) {
  .widgets {
    grid-template-rows: 600px minmax(calc(100svh - 747px), 1200px);
  }
  .widget-manufacturing-products .widget-card-body div.col:nth-child(2n) {
    overflow-y: auto;
  }
  .widget-manufacturing-products .widget-card-body .item {
    padding: 10px 15px;
  }
  .right-widgets .widget-card {
    min-height: auto;
  }
  .right-widgets .no-data-block {
    margin-block: auto;
  }
}
@media (max-width: 768px) {
  .widgets {
    grid-template-columns: 1fr;
    grid-template-rows: unset;
  }
  .widgets .left-widgets {
    max-width: 100%;
  }
  .left-widgets-list {
    display: flex;
    flex-direction: column;
  }
  .widget-card-title {
    font-size: 18px;
    max-width: 80%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .prodAndShipmentsScroll {
    max-height: unset;
    overflow: unset;
  }
}
@media (max-width: 768px) {
  .left-widgets .widget-card {
    min-height: 420px;
  }
  .left-widgets .widget-card-body {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 510px) {
  .widget-card {
    margin-bottom: 10px;
  }
  .widget-manufacturing-products .widget-card-body div.col:nth-child(2n) {
    overflow-y: auto;
    padding-bottom: 10px;
  }
  .widget-manufacturing-products .widget-card-body .item-top {
    line-height: 20px;
    top: -2px;
    position: relative;
  }
  .widget-shipments .item-right {
    top: 0;
  }
  .left-widgets .widget-card {
    height: 100%;
  }
  .left-widgets .widget-card-body div.col {
    width: 100%;
  }
  .widget-contracts .item-right {
    top: 0;
  }
  body .NoWidget {
    border: 2px dashed #15182d;
    border-radius: 16px;
  }
  body .NoWidget__body {
    color: #848595;
    padding: 13px;
    text-align: center;
    opacity: 0.4;
    transition: 0.5s all;
    transition-delay: 0.1s;
  }
  body .NoWidget__body:hover {
    opacity: 1;
    transition: 0.6s all;
  }
  body .NoWidget__body svg path {
    fill: #848595;
    opacity: 1;
    fill-opacity: 1;
  }
  body .NoWidget__body button {
    background: transparent;
    color: #848595;
    border-color: #848595;
  }
  body .NoWidget__body button:hover, body .NoWidget__body button:focus, body .NoWidget__body button:active {
    background: transparent;
    color: white;
    border-color: white;
  }
}
/* Исправление залипания hover эффекта - убираем transition у ячеек таблицы */
.el-table__body td.el-table__cell {
  transition: none !important;
}
/* Переопределение фона лоадера для виджетов */
.widget-card .el-loading-mask,
.widgets .el-loading-mask {
  background-color: rgba(23, 23, 44, 0.9);
}
.el-select {
  width: 100%;
}
.el-textarea__inner::placeholder, .el-textarea__inner, .el-select::placeholder, .el-input__inner::placeholder {
  font-family: "Ubuntu", sans-serif;
}
body .el-dialog {
  --el-dialog-margin-top: 5vh;
}
body .el-dialog__title {
  font-weight: 500;
  max-width: 96%;
  display: block;
  word-break: normal;
}
body .el-timeline-item {
  font-size: 8px;
}
body .el-timeline-item__node {
  width: 14px;
  height: 14px;
}
body .el-timeline-item__icon {
  font-size: 10px !important;
}
body .defaultTableHeight {
  min-height: 396px;
}
body .elTabDispatch {
  border-radius: 5px;
  overflow: hidden;
  border-color: #eeeef0;
}
body .elTabDispatch .el-tabs__header {
  background: #F9F9F9 !important;
}
body .searchNew {
  --el-input-border-color: #c9ccd0 !important;
}
body .searchNew .el-input__wrapper, body .searchNew .el-select__wrapper {
  height: 46px !important;
  border-radius: 8px !important;
}
body .el-radio-button__inner {
  padding: 10px 15px;
}
body .distribute__simple .sg-selected {
  padding-bottom: 20px;
}
body .label-icon {
  position: absolute;
  top: -30px;
  right: 0;
  padding: 5px;
  height: auto !important;
  background: none !important;
  border: none !important;
  color: #22252c;
}
body .label-icon:focus {
  color: #22252c !important;
}
body .label-icon-active {
  color: #f74539;
}
body .el-form-item__error {
  display: none;
}
body .el-form-item.is-error .el-input__wrapper {
  box-shadow: 0 0 0 1px var(--el-input-border-color, var(--el-border-color)) inset;
}
body .el-button--text.is-disabled, body .el-button--text.is-disabled:focus, body .el-button--text.is-disabled:hover {
  background-color: transparent !important;
}
body .el-table__expand-column {
  display: none;
}
body #guest .el-input .el-input__clear {
  position: relative;
  top: 10px;
  right: 10px;
}
body .el-table th.el-table__cell > .cell {
  text-overflow: unset;
  word-break: normal;
  white-space: pre-wrap;
}
body .el-table__cell .el-tooltip__trigger {
  line-height: 0 !important;
}
body .el-table .el-table__cell {
  max-width: 0;
}
body .el-radio.is-bordered.is-disabled {
  opacity: 0.3;
}
body .tablePadding td {
  padding: 12px 0 !important;
}
body .cell {
  position: relative;
}
body .el-table sup {
  position: absolute;
  top: -7px;
}
body .expandButton {
  width: 100%;
  color: #c0c4cc;
  position: relative;
}
body .expandButton span {
  padding: 0 15px;
  background: white;
  z-index: 20;
  position: relative;
}
body .expandButton::before {
  content: "";
  position: absolute;
  display: block;
  height: 1px;
  width: 100%;
  top: 19px;
  background: #f5f6f8;
  left: 0;
  z-index: 1;
}
body .newItemOption {
  height: 48px;
  padding-top: 7px;
}
body .newItemOption:before {
  content: "";
  position: absolute;
  display: block;
  height: 1px;
  width: 94%;
  margin: 15px;
  bottom: -15px;
  background: #f5f6f8;
  left: 0;
  z-index: 1;
}
body .newItemOption svg {
  width: 18px;
  position: relative;
  top: 4px;
  margin-right: 10px;
}
body .newItemOption span {
  color: #a2a5bf;
  font-weight: 400;
}
body div.cell .el-button.is-circle {
  background: #F3F3F7;
  height: 28px !important;
  width: 28px;
  padding: 1px;
  min-height: auto;
  border: none;
  color: #a2a5bf;
  transform: rotate(-90deg);
  transition: 0.3s all;
}
body div.cell .el-button.is-circle:hover {
  background: #e9e9ed;
}
body .el-table__row.expanded .el-button.is-circle {
  transform: rotate(0deg);
}
body .el-table__row.expanded td {
  border-bottom: none;
}
body .el-table--enable-row-hover .el-table__body tr:hover > td {
  background-color: #FFFFFF;
}
body .el-table__expanded-cell[class*=cell] .el-table, body .oneMixMaterialsTable {
  padding: 0 6px;
}
body .el-table__expanded-cell[class*=cell] .el-table th, body .oneMixMaterialsTable th {
  color: #606266;
  font-size: 12px;
  font-weight: 500;
  border-bottom: none;
  padding: 10px 0 0;
}
body .el-table__expanded-cell[class*=cell] .el-table td, body .oneMixMaterialsTable td {
  border-bottom: none;
  padding-top: 3px !important;
  padding-bottom: 3px !important;
  padding-left: 0;
  padding-right: 0;
}
body .el-table__expanded-cell[class*=cell] .el-table td .el-button--text, body .oneMixMaterialsTable td .el-button--text {
  height: auto !important;
  padding: 0;
  min-height: auto;
  margin-left: 0 !important;
  color: inherit;
  letter-spacing: normal !important;
  border: none;
  font-weight: 300;
  font-family: inherit;
}
body .el-table__expanded-cell[class*=cell] .el-table td .el-button--mini, body .oneMixMaterialsTable td .el-button--mini {
  height: 28px !important;
}
body .el-table__expanded-cell[class*=cell] .el-table--border:after, body .el-table__expanded-cell[class*=cell] .el-table--group:after, body .el-table__expanded-cell[class*=cell] .el-table:before, body .el-table__expanded-cell[class*=cell] .el-table .el-table:before, body .oneMixMaterialsTable--border:after, body .oneMixMaterialsTable--group:after, body .oneMixMaterialsTable:before, body .oneMixMaterialsTable .el-table:before {
  background-color: #FFFFFF;
}
body .el-table__expanded-cell[class*=cell] {
  padding: 20px 10px;
  background: #FFFFFF;
  padding-bottom: 30px !important;
}
body .el-table__expanded-cell[class*=cell] .no-data-block {
  text-align: center;
}
body .el-table__expanded-cell[class*=cell] .no-data-block p {
  color: #a2a5bf;
  margin-bottom: 0;
}
body .el-table__expanded-cell[class*=cell]:hover {
  background-color: #FFFFFF !important;
}
body .el-table__expanded-cell[class*=cell] .el-table tr, body .el-table__expanded-cell[class*=cell] .el-table th {
  background: #FFFFFF;
}
body .el-table__expanded-cell[class*=cell] h3.tableH3 {
  background: #FAFAFA;
  border-bottom: 1px solid #ECEEF4;
  padding: 8px 15px;
  color: #3a3a3a;
  font-weight: 300;
  font-size: 14px;
  margin: 0;
}
body .el-popper a {
  color: #1984e6;
  transition: 0.3s all;
}
body .el-popper a:hover {
  filter: brightness(85%);
}
body .el-form--label-top .el-form-item__label {
  line-height: 2;
  padding-bottom: 4px;
  margin-bottom: 0;
}
body .el-table__footer {
  font-weight: 600;
}
body .el-table__footer td {
  background-color: #f5f6f8;
  color: #3a3a3a !important;
}
body .tablePagination .el-select {
  position: relative;
  top: 8px;
}
@media screen and (max-width: 420px) {
  body .tablePagination .el-select {
    top: 0;
    align-items: center;
  }
}
body .tablePagination .el-pagination {
  display: flex;
  justify-content: end;
}
@media screen and (max-width: 420px) {
  body .tablePagination .el-pagination {
    margin-top: 0;
    margin-inline: 0 !important;
    left: 0;
    justify-content: start;
  }
}
@media screen and (max-width: 420px) {
  body .tablePagination {
    margin-inline: 0 !important;
    gap: 8px;
    align-items: center;
  }
  body .tablePagination .el-select {
    top: 0;
  }
  body .tablePagination .el-pagination {
    margin-inline: 0 !important;
  }
}
body .tablePagination__select-wrapper {
  left: 0;
  padding-inline: 0 !important;
  flex: 1 !important;
  min-width: 100px;
}
body .tablePagination__pagination-wrapper {
  margin-top: 0;
  padding-inline: 0 !important;
  flex: 1 !important;
}
body #newTabs .el-tabs__header {
  background: #F9F9F9;
  padding: 0 25px;
  margin: 0;
}
.el-drawer {
  height: auto !important;
  min-height: 100% !important;
  overflow: auto !important;
  border-radius: 12px 0px 0px 12px;
}
.el-drawer__body {
  padding: 20px;
  position: relative;
}
.el-drawer__header {
  margin-bottom: 0 !important;
}
.el-table thead {
  color: #3a3a3a !important;
}
.card-title .el-skeleton {
  display: inline;
}
.el-drawer__body {
  overflow-y: overlay;
}
.el-drawer__body .el-collapse-item__header {
  height: 56px;
  padding: 0 10px 0 20px;
  transition: all 0.8s ease-in-out;
}
.el-drawer__body .el-collapse-item__header:hover {
  background-color: #fbfbfb;
}
body .card-border {
  border: 1px solid #eeeef0;
}
body .card .el-input, body form .el-input, body .el-drawer__body .el-input {
  --el-input-border-color: #c9ccd0;
}
body .card .el-input, body .card .el-input__icon, body form .el-input, body form .el-input__icon, body .el-drawer__body .el-input, body .el-drawer__body .el-input__icon {
  line-height: 36px;
}
body .card .el-input__inner, body form .el-input__inner, body .el-drawer__body .el-input__inner {
  height: 36px;
  color: #49515f;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
}
body .card .el-select__selected-item, body form .el-select__selected-item, body .el-drawer__body .el-select__selected-item {
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
}
body .card .el-button, body form .el-button, body .el-drawer__body .el-button {
  height: 36px;
}
body .info {
  margin: 15px -25px;
  padding: 15px 25px;
}
body .el-tag.el-tag--success {
  background-color: #edf6f6;
  border-color: #00cdc4;
  color: #00cdc4;
}
body .el-radio-group.inlineRadio {
  display: block;
}
body .el-radio-group.inlineRadio .el-radio {
  display: block;
  width: auto;
  margin-left: 0;
  margin-bottom: 10px;
  margin-right: 0;
}
body .el-button--small {
  height: 28px !important;
  border-radius: 5px;
}
body .el-checkbox-group.inlineCheckbox .el-checkbox {
  display: block;
}
body .el-tabs__content {
  overflow: visible;
}
body .el-table td {
  padding: 8px 0;
}
body .el-progress__text {
  color: #3a3a3a;
}
body .el-checkbox {
  color: #3a3a3a;
}
body .el-tabs__nav-wrap:after {
  background-color: #f5f6f8;
}
body .el-tabs__item {
  color: #B6B9CD;
}
body .el-tabs__item:hover {
  color: rgb(169.26, 172.05, 190.65);
}
body .el-tabs__item.is-active {
  color: #1984e6;
}
body .el-tabs__active-bar {
  background-color: #1984e6;
}
body .el-button {
  letter-spacing: 0.2px;
  transition: 0.3s all;
}
body .el-button--primary {
  background-color: #1984e6;
  border-color: #1984e6;
}
body .el-button--primary:hover {
  background-color: rgb(23.25, 122.76, 213.9);
  border-color: rgb(23.25, 122.76, 213.9);
}
body .el-button--primary.is-disabled {
  background-color: rgb(82.5, 162.75, 236.25);
  border-color: rgb(82.5, 162.75, 236.25);
}
body .el-button--success {
  color: #fff;
  background-color: #00cdc4;
  border-color: #00cdc4;
}
body .el-button--success.is-disabled {
  cursor: not-allowed;
  background-color: #77c8c5;
  border-color: #77c8c5;
}
body .el-button--success.is-disabled:hover {
  background-color: #77c8c5;
  border-color: #77c8c5;
}
body .el-button--success.is-plain {
  background-color: white;
  color: #00cdc4;
}
body .el-button--success.is-plain:hover {
  background-color: #00cdc4;
  border-color: #00cdc4;
  color: #fff;
}
body .el-button--success:hover {
  background-color: rgb(0, 190.65, 182.28) !important;
  border-color: rgb(0, 190.65, 182.28) !important;
  color: #fff !important;
}
body .el-button--primary.is-plain {
  border: 1px solid #1984e6;
  color: #1984e6;
  background: white;
}
body .el-button--primary.is-plain:hover {
  color: white;
  background-color: #1984e6;
  border-color: #1984e6;
}
body .el-button--primary.is-plain.is-disabled {
  border: 1px solid rgb(117, 181.2, 240);
  color: rgb(117, 181.2, 240);
  background: white;
}
body .el-calendar-table td.is-selected {
  background-color: white;
}
body .el-date-editor.el-input, body .el-date-editor.el-input__inner {
  width: 100%;
}
body .el-form-item__label {
  color: #393f4a;
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  display: flex !important;
  justify-content: flex-start;
}
body .hideLabel .el-form-item__label {
  opacity: 0;
  width: 0;
}
body .el-calendar-table .el-calendar-day {
  height: auto;
}
body .el-calendar-table .el-calendar-day .el-tag {
  height: auto;
  width: 100%;
  line-height: 22px;
  margin-bottom: 5px;
}
body .el-pagination {
  margin-top: 10px;
}
body .el-carousel__item .widget-card-title {
  opacity: 0;
  transition: opacity 0.1s step-start;
}
body .el-carousel__item.is-active .widget-card-title {
  opacity: 1;
  transition: opacity 0.4s ease-in-out;
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  -moz-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
body .el-carousel__item.--factories-summary {
  display: flex;
}
body .el-table__row .cell {
  font-weight: 300;
}
body .el-table__row .double p {
  color: #000000;
  margin: 0;
  font-weight: 400;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
body .el-table__row .colored {
  color: #409EFF;
  font-weight: 500;
}
body .el-table__row .colored .cell {
  font-weight: 500;
}
body .el-table__row .bolder {
  color: #3a3a3a;
  font-weight: 400;
}
body .el-table__row .bolder .cell {
  font-weight: 400;
}
body .el-table__row .bold {
  color: #000000;
  margin: 0;
  font-weight: 400;
  text-overflow: ellipsis;
  overflow: hidden;
}
#guest .el-form-item__label, #setup .el-form-item__label {
  color: #fff;
  font-weight: 300;
  margin-bottom: 0;
}
#guest .el-input:-webkit-autofill, #setup .el-input:-webkit-autofill {
  transition: all 5000s ease-in-out;
}
#guest .el-input__wrapper, #setup .el-input__wrapper {
  padding: 0;
  box-shadow: none !important;
  background: none;
}
#guest .el-input__suffix, #setup .el-input__suffix {
  position: absolute;
  right: 15px;
}
#guest .el-input__inner, #setup .el-input__inner {
  background: #15182d;
  border: 1px solid #3E4058;
  border-radius: 10px;
  height: 60px;
  line-height: 60px;
  color: #fff;
  padding: 0 20px;
  box-shadow: none;
}
#guest .el-input__inner:focus, #setup .el-input__inner:focus {
  border: 1px solid #a2a5bf;
}
#guest .el-input__inner::placeholder, #setup .el-input__inner::placeholder {
  color: #a2a5bf;
}
#guest .guest-btn, #setup .guest-btn {
  background: #00cdc4;
  border-radius: 10px;
  height: 60px;
  font-weight: bold;
  font-size: 18px;
  color: #fff;
  border: none;
  transition: 0.3s all;
}
#guest .guest-btn:hover, #setup .guest-btn:hover {
  background: #00c2bc;
}
#guest .el-link__inner, #setup .el-link__inner {
  color: #a2a5bf;
  border-bottom: 1px solid #a2a5bf;
  transition: 0.3s all;
}
#guest .el-link__inner:hover, #setup .el-link__inner:hover {
  color: #fff;
  border-bottom: 1px solid #fff;
}
#guest .el-link.el-link--primary.is-underline:hover:after, #setup .el-link.el-link--primary.is-underline:hover:after {
  border: none;
}
#guest .el-steps, #setup .el-steps {
  margin-bottom: 40px;
}
#guest .el-steps .el-step__line, #setup .el-steps .el-step__line {
  background-color: #30334E;
}
#guest .el-steps .el-step__icon.is-text, #setup .el-steps .el-step__icon.is-text {
  border: 1px solid;
}
#guest .el-steps .el-step__icon-inner, #guest .el-steps .el-step__title.is-process, #guest .el-steps .el-step__title.is-wait, #setup .el-steps .el-step__icon-inner, #setup .el-steps .el-step__title.is-process, #setup .el-steps .el-step__title.is-wait {
  font-weight: 300;
}
#guest .el-steps .el-step__head.is-finish, #setup .el-steps .el-step__head.is-finish {
  color: #00cdc4;
  border-color: #00cdc4;
}
#guest .el-steps .el-step__title.is-finish, #guest .el-steps .el-step__description.is-finish, #setup .el-steps .el-step__title.is-finish, #setup .el-steps .el-step__description.is-finish {
  color: #00cdc4;
}
#guest .el-steps .el-step__icon, #setup .el-steps .el-step__icon {
  background: #111428;
}
#guest .el-steps .el-step__head.is-process, #guest .el-steps .el-step__head.is-wait, #setup .el-steps .el-step__head.is-process, #setup .el-steps .el-step__head.is-wait {
  color: #a2a5bf;
  border-color: #a2a5bf;
}
#guest .el-steps .el-step__title.is-process, #guest .el-steps .el-step__description.is-process, #guest .el-steps .el-step__title.is-wait, #guest .el-steps .el-step__description.is-wait, #setup .el-steps .el-step__title.is-process, #setup .el-steps .el-step__description.is-process, #setup .el-steps .el-step__title.is-wait, #setup .el-steps .el-step__description.is-wait {
  color: #a2a5bf;
}
#guest .el-steps .el-step:nth-child(2n) .el-step__main, #setup .el-steps .el-step:nth-child(2n) .el-step__main {
  width: 70px;
  margin-left: -22px;
  text-align: center;
}
#guest .el-steps .el-step:nth-child(2n) .el-step__description, #setup .el-steps .el-step:nth-child(2n) .el-step__description {
  padding-right: 0;
}
#guest .el-steps .el-step:nth-child(3n) .el-step__main, #setup .el-steps .el-step:nth-child(3n) .el-step__main {
  margin-left: -21px;
  width: 45px;
  text-align: right;
}
@media (max-width: 1024px) {
  body .el-dialog {
    max-width: 95vw;
    max-height: 95svh;
    margin: 0;
  }
}
@media (max-width: 520px) {
  body .el-table .cell {
    white-space: pre-wrap !important;
    word-break: break-word;
    word-wrap: break-word;
  }
  body .el-pagination {
    position: relative;
  }
  body .el-tabs__nav-scroll {
    overflow-x: scroll;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
  }
  body .el-tabs__nav-scroll::-webkit-scrollbar {
    width: 0;
  }
  body #main .el-tabs__nav-wrap:after {
    top: 38px;
  }
  body .el-table__expanded-cell[class*=cell] .el-table, body .oneMixMaterialsTable {
    padding: 0 16px;
  }
  body .el-table__expanded-cell[class*=cell] .el-table .mobileTableInfoBody .el-button, body .oneMixMaterialsTable .mobileTableInfoBody .el-button {
    height: auto !important;
    min-height: auto;
    padding: 0;
  }
  body .el-table__expanded-cell[class*=cell] .el-table .mobileTableInfoBody .el-button + .el-button, body .oneMixMaterialsTable .mobileTableInfoBody .el-button + .el-button {
    margin-left: 0;
  }
  body .el-drawer__close-btn {
    position: relative;
    left: 10px;
  }
}
.topCard {
  border: 1px solid #EEEEF0;
  border-radius: 8px;
  padding: 20px;
  font-weight: 300;
}
.topCardScroll {
  overflow-y: scroll;
  max-height: 259px;
  border: 1px solid #EEEEF0;
}
.topCardScroll::-webkit-scrollbar {
  display: none;
}
.topCard h3 {
  color: #a2a5bf;
  font-size: 13px;
  font-weight: 400;
  margin-top: 0;
}
.topCard .el-row .el-col {
  padding: 10px 12px;
  max-height: 42px;
}
.topCard .el-row .el-col:not(:last-child) {
  border-right: 1px solid #EEEEF0;
  display: block;
}
.topCard .el-row:not(:last-child) {
  border-bottom: 1px solid #EEEEF0;
}
.topCard .el-row .el-col:nth-child(3n) {
  color: #4e92f7;
  text-align: right;
}
.topCard .stickyTop {
  position: sticky;
  top: 0;
  background: white;
  z-index: 1;
}
.topCardLink {
  color: #4e92f7;
  cursor: pointer;
  border-bottom: 1px dashed;
}
.topCardLink:hover {
  color: #3477d9;
}
@media (max-width: 520px) {
  .topCard {
    margin-bottom: 15px;
    background: none;
    padding: 0;
  }
  .topCard .el-row div:first-child {
    display: none;
  }
  .topCard .el-row .el-col:nth-child(2n) {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .topCard .el-row .el-col:nth-child(3n) {
    white-space: nowrap;
  }
}
.statusBlock {
  background: #FAFAFA;
  padding: 18px 15px;
  border-radius: 5px;
  margin-bottom: 15px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.statusBlockPeriod {
  color: #a2a5bf;
  font-size: 13px;
}
.statusBlock .statusBlockMobile {
  display: flex;
  width: 100%;
}
.statusBlock .statusBlockMobile svg {
  position: relative;
  top: 0;
  left: 0;
}
.statusBlock .statusBlockMobile span {
  padding-left: 12px;
  white-space: nowrap;
}
.statusBlock .statusBlockMobile .el-button {
  position: relative;
  margin-top: -19px;
}
.statusBlock .statusBlockMobile .el-button.is-loading {
  position: relative;
}
.statusBlock .statusBlockStatus span {
  padding-left: 45px;
  padding-right: 10px;
  position: relative;
}
.statusBlock .statusBlockIcon {
  position: absolute;
  left: 8px;
  top: -4px;
}
.statusBlock .refreshButton {
  background: #fafafa;
  border: none;
  color: #a2a5bf;
  max-height: 0;
}
.statusBlock .refreshButton:hover, .statusBlock .refreshButton:focus, .statusBlock .refreshButton:active {
  background: inherit;
  color: #606266;
}
@media (max-width: 520px) {
  .statusBlock {
    margin-top: 20px;
    background: none;
    padding: 0;
    margin-bottom: 25px;
  }
  .statusBlock .el-button {
    background: none;
  }
  .statusBlockPeriod {
    text-transform: capitalize;
  }
}
.mixGraph {
  border: 1px solid #EEEEF0;
  border-radius: 8px;
  padding: 20px 25px;
  margin-bottom: 15px;
}
.mixGraph .topText {
  color: #a2a5bf;
  font-size: 13px;
  margin-bottom: 20px;
  margin-top: 0;
}
.mixGraph .indicator h3 {
  color: #3a3a3a;
  line-height: 1.2;
  font-size: 36px;
  margin: 0;
  font-weight: 700;
  position: relative;
  height: 45px;
}
.mixGraph .indicator h3 sup {
  font-size: 70%;
}
.mixGraph .indicator p {
  color: #3a3a3a;
  font-size: 12px;
  margin-top: 5px;
  margin-bottom: 0;
}
.mixGraph .indicator svg {
  width: 16px;
  height: 16px;
  top: -5px;
  position: relative;
  transform: rotate(0deg); /* Equal to rotateZ(45deg) */
  transition: 0.4s all;
}
.mixGraph .indicator svg path {
  fill: #00cdc4;
}
.mixGraph .indicator svg.down {
  transform: rotate(180deg); /* Equal to rotateZ(45deg) */
}
.mixGraph .indicator svg.down path {
  fill: #ff5253;
}
.mixGraph .mix-scroll-x {
  overflow-x: scroll;
  padding-bottom: 15px;
  width: 100%;
  margin: 25px auto 0;
}
.mixGraph .mix-scroll-x .chart {
  width: 100%;
  height: 160px;
}
.mixGraph .mix-scroll-x::-webkit-scrollbar {
  width: 100%;
  height: 6px;
}
.mixGraph .mix-scroll-x::-webkit-scrollbar-track {
  background: #ebeef5;
  border-radius: 5px;
}
.mixGraph .mix-scroll-x::-webkit-scrollbar-thumb {
  background-color: #dde0e9;
  border-radius: 5px;
}
@media (max-width: 1200px) {
  .mixGraph .indicator h3 {
    font-size: 34px;
  }
  .mixGraph .indicator p {
    font-size: 10px;
  }
}
@media (max-width: 520px) {
  .mixGraph {
    background: none;
    padding: 0;
  }
  .mixGraph .topText {
    display: none;
  }
  .mixGraph .indicator {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #F5F5F5;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .mixGraph .indicator h3 {
    order: 1;
    text-align: right;
    font-size: 24px;
  }
  .mixGraph .indicator p {
    order: 0;
    max-width: 105px;
  }
  .mixGraph .indicator svg {
    top: 0;
    width: 18px;
    height: 18px;
  }
}
.mixOrderDetails {
  padding: 10px 20px;
}
.mixOrderDetails h2 {
  margin-top: 0;
  font-weight: normal;
  font-size: 18px;
  line-height: 21px;
  margin-bottom: 12px;
}
.mixOrderDetailsBlock {
  border: 1px solid #EEEEF0;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 12px;
}
.mixOrderDetailsBlockTitle {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #a2a5bf;
  margin-top: 0;
  margin-bottom: 0;
}
.mixOrderDetailsBlock h3 {
  font-weight: 400 !important;
  font-size: 24px;
  line-height: 32px;
  color: #3a3a3a;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 0 !important;
  text-align: left !important;
  letter-spacing: -0.02em;
}
.mixOrderDetailsBlock h3 sup {
  font-size: 14px;
}
.mixOrderDetails .infoBlock {
  background: #F9F9F9;
  border-radius: 12px;
  padding: 15px 24px;
  margin-bottom: 16px;
}
.mixOrderDetailsEconomyTab {
  padding-top: 15px;
}
.mixOrderDetailsEconomyTab h2 {
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #3a3a3a;
}
.mixOrderDetailsEconomyTab .el-table__footer-wrapper tbody td.el-table__cell {
  background-color: transparent !important;
}
.mixOrderDetailsEconomyTab .el-table__row svg {
  width: 16px;
  stroke: #a2a5bf;
  position: relative;
  left: 5px;
  top: 3px;
}
.mixOrderDetailsEconomyTab .el-table__row svg:hover {
  cursor: pointer;
}
.mixOrderDetailsEconomyTabTooltipHead {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
}
.mixOrderDetails .no-data-block {
  text-align: center;
}
.mixOrderDetails .no-data-block p {
  color: #a2a5bf;
  margin-bottom: 0;
}
.mixOrderDetails .oneMix {
  margin-top: 25px;
}
.mixOrderDetails .oneMixH4 {
  font-size: 14px;
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: 400;
  padding: 0 16px;
}
.mixOrderDetails .oneMixHeader {
  background: #FAFAFA;
  padding: 15px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.mixOrderDetails .oneMixHeaderTop {
  display: flex;
}
.mixOrderDetails .oneMixHeaderTop h4 {
  font-size: 16px;
  margin: 0;
  color: #1984e6;
  font-weight: normal;
  position: relative;
}
.mixOrderDetails .oneMixHeaderTop h4 .el-button {
  position: absolute;
  top: -4px;
  color: #a2a5bf;
  background: transparent;
  border: none;
  transition: 0.3s all;
}
.mixOrderDetails .oneMixHeaderTop h4 .el-button:hover {
  color: #72758f;
}
.mixOrderDetails .oneMixHeaderIndicators {
  display: flex;
  margin-top: 24px;
}
.mixOrderDetails .oneMixHeaderIndicators span {
  font-weight: 300;
  font-size: 14px;
  line-height: 150%;
}
.mixOrderDetails .oneMixHeaderIndicators p {
  font-weight: 500;
  font-size: 14px;
  margin: 0;
}
.tooltipElTitle {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #FFFFFF;
  margin: 8px;
}
.tooltipElDescr {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #FFFFFF;
  margin: 8px;
  max-width: 276px;
}
.mixOrderCreate {
  margin: -15px -15px 15px;
  background: #F9F9F9;
  border-top: 1px solid #eeeef0;
  border-bottom: 1px solid #eeeef0;
}
.mixOrderCreateBody {
  padding: 15px 20px;
}
.mixOrderCreateBody .buttonTab {
  width: 100%;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  padding: 12px 15px;
  border-radius: 10px;
  background: white;
  border: 1px solid #eeeef0;
}
.mixOrderCreateBody .buttonTab:hover {
  cursor: pointer;
  border-color: #c9ccd0;
}
.mixOrderCreateBody .activeButton {
  color: #1984e6;
  border-color: #1984e6 !important;
}
.mixOrderCreateBody .notActiveButton {
  color: #505968;
}
.mixOrderCreateFormBlock {
  min-height: 450px;
}
.mixOrderCreateFooter {
  display: flex;
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}
.edit-button {
  height: 44px !important;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 8px;
  border: 1px solid;
  background-color: var(--button-bg);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  color: var(--button-txt-color);
}
.edit-button svg {
  margin-right: 10px;
}
.edit-button {
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
  --button-bg: #E8F4FF;
  --button-txt-color: #1984e6;
}
.edit-button:not(:disabled):hover {
  --button-bg: #b8ddfe;
  --button-txt-color: #1367B4;
}
.edit-button:not(:disabled):active {
  --button-bg: #E8F4FF;
  --button-txt-color: #1984e6;
}
.edit-button:disabled {
  --button-txt-color: #b8ddfe;
}
@media (max-width: 520px) {
  .mixOrderDetails {
    padding: 0;
  }
  .mixOrderDetails .oneMixHeaderTop {
    display: block;
  }
  .mixOrderDetails .oneMixHeaderIndicators {
    display: block;
  }
  .mixOrderDetails .oneMixHeaderIndicators div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
body .expendMaterials {
  margin: 0 -12px;
  display: block !important;
  background: #f9f9f9;
  box-sizing: content-box;
  flex: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px !important;
  padding-right: 20px !important;
  margin-bottom: 15px;
}
.orderGroupsTableScrollBody {
  display: flex;
  position: relative;
  flex-wrap: nowrap;
  gap: 10px;
}
.orderGroupsTableScrollItem {
  width: 20%;
}
.orderGroupItemCallToday {
  border: 1px solid #ecaf02 !important;
}
.orderGroupItemCallFailed {
  border: 1px solid #f74539 !important;
}
.orderGroupsTable {
  margin-top: 15px;
}
.orderGroupsTableItem {
  border: 1px solid #eeeef0;
  background: #F9F9F9;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 6px;
}
.orderGroupsTableItemTask {
  margin: 10px 0;
  border-radius: 8px;
  padding: 15px;
  background: white;
  border: 1px solid #c9ccd0;
  color: #22252c;
  cursor: pointer;
}
.orderGroupsTableItemTask:hover {
  border-color: #737a86;
}
.orderGroupsTable .ordersHeading {
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #eeeef0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex: none;
  order: 0;
  flex-grow: 1;
  margin-bottom: 15px;
  position: relative;
}
.orderGroupsTable .ordersHeadingCount {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2px;
  gap: 10px;
  width: 24px;
  height: 24px;
  /* Primary/600 */
  border-radius: 4px;
  /* Inside auto layout */
  flex: none;
  order: 1;
  flex-grow: 0;
  position: absolute;
  right: 20px;
  top: 16px;
}
.orderGroupsTable .ordersHeadingCountwait {
  background-color: #8a909a;
}
.orderGroupsTable .ordersHeadingCountnew, .orderGroupsTable .ordersHeadingCountwork {
  background-color: #1984e6;
}
.orderGroupsTable .ordersHeadingCountdone {
  background-color: #009272;
}
.orderGroupsTable .ordersHeadingCountfailed {
  background-color: #ad3028;
}
.orderGroupsTable .ordersHeadingdone, .orderGroupsTable .ordersHeadingfailed {
  background-color: #F9F9F9;
}
.orderGroupsTable .orderGroupItem {
  padding: 15px 24px;
  border-radius: 8px;
  border: 1px solid #eeeef0;
  margin-bottom: 15px;
  position: relative;
}
.orderGroupsTable .orderGroupItemMargin {
  margin-bottom: 8px;
}
.orderGroupsTable .orderGroupItemdone, .orderGroupsTable .orderGroupItemfailed {
  background-color: #F9F9F9;
}
.orderGroupsTable .orderGroupItemDelete {
  position: absolute;
  right: 24px;
  bottom: 15px;
}
.orderGroupCreateRight {
  background-color: #F9F9F9;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}
.gantt-card {
  margin-bottom: 30px;
}
.bigTimelineOrder {
  background: white;
  border-radius: 8px;
  margin: 12px;
  transition: 0.2s all;
}
.bigTimelineOrderBody {
  padding: 20px 24px;
}
.bigTimelineOrder .el-dropdown .el-button {
  background: #eeeef0;
  width: 36px;
  border-radius: 5px;
  border: none;
}
.bigTimelineOrder:hover {
  transition: 0.2s all;
  box-shadow: 0px 0px 6px 0px rgba(8, 12, 20, 0.12);
}
.bigTimelineContainer {
  margin: 0;
  border-top: 1px solid #eeeef0;
  position: relative;
  height: calc(100vh - 206px);
}
.bigTimelineContainerFlex {
  width: 100%;
  height: 100%;
  position: relative;
}
.bigTimelineContainerFlex::-webkit-scrollbar {
  display: none;
}
.bigTimelineContainerLeftBlock {
  width: 100%;
  max-width: calc(100% - 430px);
}
.bigTimelineContainerRightBlock {
  border-left: 1px solid #eeeef0;
  min-width: 430px;
  width: 430px;
  overflow-y: scroll;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}
.bigTimelineContainerRightBlock::-webkit-scrollbar {
  display: none;
}
.bigTimelineContainerRightBlockBody {
  background: #F9F9F9;
  padding-top: 1px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  overflow-y: scroll;
  width: 430px;
}
.bigTimelineContainerRightBlockBody::-webkit-scrollbar {
  display: none;
}
.bigTimelineContainerRightBlockBodySearch {
  padding: 12px 12px 0 12px;
}
.bigTimelineContainerHeader {
  padding: 16px 25px;
  color: #49515f;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  border-bottom: 1px solid #eeeef0;
}
.bigTimelineContainerHeader .el-progress-circle {
  position: relative;
  top: 3px;
}
.bigTimelineContainerHeader .d-flex {
  -webkit-box-align: end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}
.bigTimelineContainerHeader .d-flex-item {
  margin: 0 55px 0 0;
}
.bigTimelineContainerGantt {
  padding-left: 25px;
  height: 520px;
  overflow-y: scroll;
}
.sg-gantt .sg-table-header {
  background: white !important;
  border-bottom: none !important;
}
.sg-gantt .sg-table-cell {
  border: none !important;
}
.sg-gantt .sg-table-body-cell {
  border-bottom: none !important;
}
.sg-gantt .sg-table-scroller {
  border: none !important;
}
.sg-gantt .sg-time-range-control .sg-time-range-handle-left:before, .sg-gantt .sg-time-range-control .sg-time-range-handle-right:before {
  display: none !important;
}
.sg-gantt .sg-time-range {
  background: #1984e6 !important;
  z-index: 9999999 !important;
  width: 2px !important;
}
.sg-gantt .sg-time-range::after {
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 2px;
  z-index: 100;
  content: "";
  background: #1984e6 !important;
}
.sg-gantt .sg-time-range-label {
  display: none !important;
}
.sg-gantt .sg-resize {
  width: 0 !important;
}
.sg-gantt .sg-cell-inner {
  color: #8a909a !important;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
}
.sg-gantt .sg-row {
  border-bottom: 1px solid #eeeef0;
}
.sg-gantt .sg-header-scroller {
  border-right: none !important;
}
.sg-gantt .sg-task {
  border-radius: 3px;
}
.sg-gantt .sg-task:after, .sg-gantt .sg-task:before {
  display: none !important;
}
.sg-gantt .sg-task.selected {
  outline: none !important;
}
.sg-gantt .sg-task-old {
  background: #eeeef0 !important;
}
.sg-gantt .sg-task-old:after, .sg-gantt .sg-task-old:before {
  display: none !important;
}
.sg-gantt .sg-task-old.selected {
  outline: none !important;
}
.sg-gantt .sg-task-new {
  background: #96ecd9 !important;
}
.sg-gantt .bg-task-default-3 {
  background: #D1E9FF !important;
  color: #1984e6 !important;
}
.sg-gantt .bg-task-default-3 .sg-task-content {
  padding-left: 0 !important;
}
.sg-gantt .bg-task-default-4 {
  background: rgb(105, 139, 150) !important;
  color: white;
}
.sg-gantt .sg-task-content {
  width: 100%;
}
.sg-gantt .bg-task-default-1 {
  background: #eeeef0 !important;
  color: #505968;
}
.sg-gantt .bg-task-default-1 .sg-task-content {
  padding-left: 0 !important;
}
.sg-gantt .bg-task-default-2 {
  background: #D5F7F0 !important;
  color: #505968;
}
.sg-gantt .bg-task-default-2 .sg-task-content {
  padding-left: 0 !important;
}
.sg-gantt .custom_task-block_1 {
  height: 4px;
  position: absolute;
  background: #afb3ba !important;
  transition: 0.3s all;
  z-index: 200;
}
.sg-gantt .custom_task-block_2 {
  height: 4px;
  position: absolute;
  background: #009272 !important;
  transition: 0.3s all;
  z-index: 200;
}
.sg-gantt .custom_task-block_3 {
  height: 4px;
  position: absolute;
  background: #1984e6 !important;
  transition: 0.3s all;
  z-index: 200;
}
.sg-gantt .custom_task-block_4 {
  height: 4px;
  position: absolute;
  background: #ad3028 !important;
  transition: 0.3s all;
  z-index: 200;
}
.sg-gantt .custom_task-main {
  position: relative;
  display: flex;
  justify-content: start;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  transition: 0.2s all;
}
.sg-gantt .custom_task-main::before {
  position: absolute;
  top: 0.4rem;
  left: 0.2rem;
  z-index: 100;
  content: attr(data-title);
}
.sg-gantt .custom_task-main::after {
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  z-index: 100;
  content: "";
}
.sg-gantt .custom_task-main_1 {
  color: #737a86 !important;
}
.sg-gantt .custom_task-main_1::after {
  background: #c9ccd0;
}
.sg-gantt .custom_task-main_2 {
  color: #007f63 !important;
}
.sg-gantt .custom_task-main_2::after {
  background: #96ecd9;
}
.sg-gantt .custom_task-main_2:hover {
  cursor: pointer;
  border: 2px solid #009272 !important;
  transition: 0.2s all;
}
.sg-gantt .custom_task-main_3 {
  color: #1984e6 !important;
}
.sg-gantt .custom_task-main_3::after {
  background: #96ccfe;
}
.sg-gantt .custom_task-main_3:hover {
  cursor: pointer;
  border: 2px solid #1984e6 !important;
  transition: 0.2s all;
}
.sg-gantt .custom_task-main_4 {
  color: #ad3028 !important;
}
.sg-gantt .custom_task-main_4::after {
  background: #fa938c;
}
.sg-gantt .bg-task-red {
  background: #FDC6C2 !important;
  color: #ad3028;
  box-shadow: -4px 0px 12px 0px rgba(16, 24, 40, 0.32);
}
.sg-gantt .bg-task-red .sg-task-content {
  padding-left: 0 !important;
}
.sg-gantt .bg-task-red:not(.old-task):hover {
  z-index: 999999;
}
.sg-gantt .bg-task-red:not(.old-task):hover .custom_task-main_4 {
  cursor: pointer;
  border: 2px solid #ad3028 !important;
  transition: 0.2s all;
}
.sg-gantt .bg-task-red.old-task:hover {
  z-index: 999999;
}
.sg-gantt .bg-task-red.old-task:hover .custom_task-main_4 {
  cursor: not-allowed;
  border: 2px solid #ad3028 !important;
  transition: 0.2s all;
}
.sg-gantt .sg-timeline-body {
  overflow: hidden !important;
}
.sg-gantt .sg-timeline {
  overflow: hidden !important;
}
.sg-gantt .sg-task-content {
  font-weight: 400;
  font-size: 12px !important;
  line-height: 16px !important;
  padding-left: 6px;
}
.sg-gantt .sg-task {
  overflow: hidden !important;
  transition: 0.2s all;
}
.sg-gantt .column-header-cell-label {
  color: #c9ccd0 !important;
  font-size: 10px;
  transform: rotate(-60deg);
}
.sg-gantt .column-header-row .column-header-cell:last-child .column-header-cell-label {
  opacity: 0;
}
.gantt-task-selected .custom_task-main_2 {
  border: 2px solid #009272 !important;
  transition: 0.2s all;
}
.gantt-task-selected .custom_task-main_4 {
  border: 2px solid #ad3028 !important;
  transition: 0.2s all;
}
.gantt-task-selected .custom_task-main_3 {
  border: 2px solid #1984e6 !important;
  transition: 0.2s all;
}
body .mixRequestPricesTable td {
  background: white !important;
  background-color: white !important;
}
body .mixRequestPricesTable thead tr th:first-child, body .mixRequestPricesTable tbody tr td:first-child {
  background: #F9F9F9 !important;
}
body .mixRequestPricesTable thead tr th:first-child div, body .mixRequestPricesTable tbody tr td:first-child div {
  color: #737a86;
  font-size: 12px;
  font-style: normal;
  font-weight: 500 !important;
  line-height: 16px; /* 133.333% */
}
body .mixRequestPricesTable thead tr th:first-child div div, body .mixRequestPricesTable tbody tr td:first-child div div {
  white-space: nowrap;
}
body .mixRequestPricesTable thead tr th:not(:first-child) div, body .mixRequestPricesTable tbody tr td:not(:first-child) div {
  color: #393f4a;
  font-size: 12px;
  font-style: normal;
  font-weight: 400 !important;
  line-height: 20px;
  white-space: nowrap;
}
body .mixRequestPricesTable thead tr th:not(:first-child) div div, body .mixRequestPricesTable tbody tr td:not(:first-child) div div {
  white-space: nowrap;
}
body .mixRequestPricesTable thead tr th:first-child div {
  color: #737a86 !important;
}
body .mixRequestPricesTable .el-table__footer-wrapper tbody tr td:first-child div {
  color: #1984e6 !important;
}
.requestTimeFlex {
  flex-flow: wrap;
}
.requestTimeFlex .requestTimeItem {
  padding: 2px 4px;
  border-radius: 8px;
  border: 1px solid #afb3ba;
  margin-right: 7px;
  margin-bottom: 6px;
}
@media (max-width: 767px) {
  .orderGroupsTable .el-col:first-child {
    order: 1;
  }
  .orderGroupsTableScrollBody {
    display: block;
  }
  .orderGroupsTableScrollItem {
    width: 100%;
    margin-bottom: 15px;
  }
}
.editOrders .inputModal {
  height: 28px !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 16px !important;
  color: #393f4a !important;
  padding: 5px 0 !important;
  border-radius: 6px !important;
  box-shadow: none !important;
  min-height: unset;
  background-color: #F9F9F9 !important;
}
.editOrders .el-table__inner-wrapper:before {
  z-index: 1 !important;
}
.editOrders .el-table__cell {
  z-index: auto !important;
}
/* Стили для кнопки выбора города и других элементов формы в таблице */
.table-edit-mix-group-orders {
  margin-top: 8px;
}
.table-edit-mix-group-orders thead .cell {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #737a86;
  font-weight: 500;
}
.table-edit-mix-group-orders tbody .cell {
  color: #737a86;
  font-weight: 400;
  height: 28px;
}
.table-edit-mix-group-orders__select {
  height: 28px;
  width: 100%;
}
.table-edit-mix-group-orders__select .el-input__wrapper, .table-edit-mix-group-orders__select .el-select__wrapper {
  padding: 6px 8px;
  height: 28px;
  border-radius: 6px;
  box-shadow: none;
  min-height: unset;
  background-color: #F9F9F9;
  width: 100%;
}
.table-edit-mix-group-orders__select .el-input__wrapper:hover, .table-edit-mix-group-orders__select .el-select__wrapper:hover {
  border: 1px solid #66b5fe;
}
.table-edit-mix-group-orders__select .el-input__inner {
  height: 28px;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #393f4a;
}
.table-edit-mix-group-orders__select .el-select__placeholder {
  display: flex;
  align-items: center;
  height: 28px;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #393f4a;
}
.table-edit-mix-group-orders__select .el-select__placeholder.is-transparent {
  color: #afb3ba;
}
.table-edit-mix-group-orders__select .el-icon {
  height: 1rem;
  width: 1rem;
  margin-right: 0;
}
.table-edit-mix-group-orders__select .el-icon svg {
  height: 75%;
  width: 75%;
  color: #505968;
}
.table-edit-mix-group-orders__select.red .el-input__wrapper, .table-edit-mix-group-orders__select.red .el-select__wrapper {
  border: 1px solid #f74539;
}
.table-edit-mix-group-orders__select.orange .el-input__wrapper, .table-edit-mix-group-orders__select.orange .el-select__wrapper {
  border: 1px solid #ecaf02;
}
.table-edit-mix-group-orders__select .el-input {
  width: 100%;
}
.table-edit-mix-group-orders__select .el-input .el-input__wrapper, .table-edit-mix-group-orders__select .el-input .el-select__wrapper {
  width: 100%;
  height: 28px;
  padding: 10px;
  display: flex;
  border-radius: 6px;
  box-shadow: none;
  background-color: #F7F7F8;
}
.table-edit-mix-group-orders__select .el-input .el-input__wrapper:hover, .table-edit-mix-group-orders__select .el-input .el-select__wrapper:hover {
  border: 1px solid #66b5fe;
}
.table-edit-mix-group-orders__input-number {
  height: 28px;
  max-width: 100%;
  width: 100%;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #393f4a;
}
.table-edit-mix-group-orders__input-number .el-input-number__increase {
  width: 16px;
  height: 11px;
  border: none;
  border-radius: 4px 4px 2px 2px;
  background-color: #fff;
}
.table-edit-mix-group-orders__input-number .el-input-number__decrease {
  width: 16px;
  height: 11px;
  border: none;
  border-radius: 2px 2px 4px 4px;
  background-color: #fff;
}
.table-edit-mix-group-orders__input-number .el-input {
  width: 100%;
}
.table-edit-mix-group-orders__input-number .el-input .el-input__wrapper, .table-edit-mix-group-orders__input-number .el-input .table-edit-mix-group-orders__select .el-select__wrapper, .table-edit-mix-group-orders__select .table-edit-mix-group-orders__input-number .el-input .el-select__wrapper {
  width: 100%;
  height: 28px;
  padding: 2px;
  display: flex;
  border-radius: 6px;
  box-shadow: none;
  background-color: #F7F7F8;
}
.table-edit-mix-group-orders__input-number .el-input .el-input__wrapper:hover, .table-edit-mix-group-orders__input-number .el-input .table-edit-mix-group-orders__select .el-select__wrapper:hover, .table-edit-mix-group-orders__select .table-edit-mix-group-orders__input-number .el-input .el-select__wrapper:hover {
  border: 1px solid #66b5fe;
}
.table-edit-mix-group-orders__input-number .el-input__inner {
  height: 28px;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #393f4a;
  text-align: left;
  padding-left: 8px;
}
.table-edit-mix-group-orders__button {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 5px 10px;
  height: 28px;
  font-size: 12px;
  width: 100%;
  justify-content: flex-start;
  border-radius: 12px;
}
.table-edit-mix-group-orders__time {
  height: 28px;
}
.table-edit-mix-group-orders__time.small {
  max-width: 50px;
}
.table-edit-mix-group-orders__time.small .el-input__wrapper, .table-edit-mix-group-orders__time.small .table-edit-mix-group-orders__select .el-select__wrapper, .table-edit-mix-group-orders__select .table-edit-mix-group-orders__time.small .el-select__wrapper {
  max-width: 50px;
}
.table-edit-mix-group-orders__time .el-icon {
  height: 1rem;
  width: 1rem;
  margin-right: 0;
}
.table-edit-mix-group-orders__time .el-icon svg {
  height: 100%;
  width: 100%;
}
.table-edit-mix-group-orders__time .el-input__wrapper, .table-edit-mix-group-orders__time .table-edit-mix-group-orders__select .el-select__wrapper, .table-edit-mix-group-orders__select .table-edit-mix-group-orders__time .el-select__wrapper {
  padding: 0 6px;
  flex-grow: unset;
  box-shadow: unset;
  border-radius: 6px;
  background-color: #F7F7F8;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #393f4a;
}
.table-edit-mix-group-orders__time .el-input__inner {
  width: 49px;
  padding: 6px 8px;
  flex-grow: unset;
  height: 28px;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #393f4a;
  text-align: end;
}
/* Стили для кнопки выбора города */
.table-edit-mix-group-orders__select.el-button {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  height: 28px;
  padding: 0 8px;
  font-size: 12px;
  width: 100%;
  text-align: left;
  border-radius: 12px;
}
.text-truncate {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}
/* Стили для кнопок в формах */
.buttons .el-button {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  border-radius: 10px;
}
.buttons .el-button:last-child {
  margin-left: 16px;
}
/* Стили для панели выбора в ServiceTariffsIndex.vue */
.selection-controls {
  display: flex;
  align-items: center;
}
.el-dropdown-link {
  cursor: pointer;
  color: #409EFF;
  margin-left: 10px;
}
.el-dropdown-link:hover {
  color: #66b1ff;
}
.el-dropdown-link i {
  font-size: 18px;
}
.selection-panel {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  margin-bottom: 16px;
  background-color: #F0F7FF;
  border: 1px dashed #409EFF;
  border-radius: 4px;
}
.selection-panel-icon {
  margin-right: 10px;
  color: #409EFF;
}
.selection-panel-text {
  display: flex;
  align-items: center;
  flex-grow: 1;
  font-weight: 500;
  color: #606266;
}
.selection-panel-actions {
  display: flex;
  gap: 10px;
}
.mix-order-group-table-icon {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  color: #c9ccd0;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .mix-order-group-table-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
  }
}
.mix-order-group-table-icon--active {
  color: #1b91fd;
}
.mix-order-group-table-icon--waiting {
  color: #ad3028;
}
.mix-order-group-table-icon__letter {
  margin: 0;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .mix-order-group-table-icon__letter {
    font-size: 16px;
  }
}
.mix-order-group-table-icon__icon svg {
  color: inherit;
}
@media screen and (max-width: 1024px) {
  .mix-order-group-table-icon__icon svg {
    width: 20px;
    height: 20px;
  }
}
.mix-order-group-table-icon__icon svg path {
  stroke: currentColor;
}
.mix-order-group-table-icon__tooltip {
  color: #505968;
  max-width: 220px;
}
.mix-order-group-table-icon__tooltip ul,
.mix-order-group-table-icon__tooltip p {
  margin: 0;
  padding-left: 0;
}
.mix-order-group-table-icon__tooltip .title {
  font-weight: 500;
  font-size: 12.5px;
  line-height: 14px;
  color: #2c3139;
}
.mix-order-group-table-icon__tooltip .subtitle {
  font-weight: 500;
  color: #393f4a;
}
.mix-order-group-table-icon__tooltip .text {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #2c3139;
}
.mix-order-group-table-icon__tooltip ul {
  list-style: none;
}
.mix-order-group-table-icon__tooltip hr {
  margin-block: 5px 2px;
}
.mix-order-group-table-icon__tooltip--gidrolotok {
  max-width: 250px;
}
.mix-order-group-table-icon__tooltip--comments {
  padding: 4px;
  max-width: 400px;
}
@media screen and (max-width: 560px) {
  .mix-order-group-table-icon__tooltip--comments {
    max-width: 80vw;
  }
}
.mix-order-group-table-icon__tooltip--comments ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mix-order-group-table-icon__tooltip--comments ul li {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.mix-order-group-table-icon__tooltip--comments ul li .comment {
  padding: 2px 4px;
  background: #eeeef0;
  color: #22252c;
  border-radius: 4px;
}
.mix-order-group-table-icon__tooltip--comments > p {
  padding: 2px 8px;
}
.mix-order-group-table-icon__tooltip--mixes {
  padding: 4px;
}
.mix-order-group-table-icon__tooltip--mixes .orders {
  max-width: 250px;
}
.mix-order-group-table-icon__tooltip--mixes .orders .subtitle {
  margin: 0;
  padding: 0 !important;
}
.mix-order-group-table-icon__tooltip--mixes hr {
  margin-block: 2px;
}
.mix-order-group-table-icon__tooltip--pumps {
  padding: 4px;
}
.mix-order-group-table-icon__tooltip--pumps .vehicles {
  max-width: 400px;
}
.mix-order-group-table-icon__tooltip--pumps .vehicles .subtitle {
  margin: 0;
  padding: 0 !important;
}
.mix-order-group-table-icon__tooltip--pumps hr {
  margin-block: 2px;
}
.mix-order-group-table-icon__tooltip--lab {
  max-width: 330px;
  white-space: normal;
}
.mix-order-group-table-icon__tooltip--lab .el-table__body hr {
  margin-block: 2px;
}
.mix-order-group-table-icon__tooltip--lab .spec p:last-child {
  color: #22252c !important;
}
.mix-order-group-table-icon__tooltip--companyManager {
  max-width: 270px;
}
.mix-order-group-table-icons-group {
  display: flex;
  justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  .mix-order-group-table-icons-group {
    flex-wrap: wrap;
    gap: 4px 11px;
    justify-content: space-between;
  }
}
.mobileTable {
  width: 100%;
}
.mobileTableInfo {
  display: flex;
  border-bottom: 1px solid #ECEEF4;
  padding-bottom: 8px;
  padding-top: 8px;
}
.mobileTableInfoTitle {
  width: 35%;
  color: #8a909a;
  font-weight: 300;
  font-size: 13px;
}
.mobileTableInfoBody {
  width: 65%;
  color: #3a3a3a;
  font-weight: 300;
  font-size: 13px;
}
.mobileTableInfo.noBorder {
  border: none;
  padding-bottom: 4px;
}
.mobileTableDate {
  margin: 15px -25px 0;
  padding: 8px 25px;
  background: #FAFAFA;
}
.mobileTableDate svg {
  width: 12px;
  height: 12px;
  position: relative;
  top: 1.5px;
  margin-right: 4px;
}
.mobileTableDateTime {
  width: 40%;
  color: #3a3a3a;
  font-weight: 400;
  font-size: 13px;
}
.mobileTableDateDate {
  width: 60%;
  color: #3a3a3a;
  font-weight: 400;
  font-size: 13px;
}
.mobileTableButton {
  width: 100%;
}
.mobileTableButton .el-button {
  width: 100%;
  margin-top: 8px;
  margin-bottom: 10px;
  color: #616266;
}
.mobileTableHR {
  margin: 15px 0 0;
  padding: 0 25px;
  display: block;
  background: #ECEEF4;
  width: 100%;
  height: 1px;
}
.mobileTableProgressBar {
  margin: 15px -25px 0;
  padding: 8px 25px;
  background: #FAFAFA;
}
.mobileTableProgressBarTitle {
  width: 40%;
  color: #3a3a3a;
  font-weight: 400;
  font-size: 13px;
}
.mobileTableProgressBarProgress {
  width: 60%;
  padding-top: 4.5px;
}
.mobileTableProgressBarProgress .el-progress__text {
  font-size: 12px !important;
  font-weight: 300;
}
#setup {
  max-width: 940px;
  margin: auto;
  padding-bottom: 40px;
}
#setup .el-form-item__label {
  color: #fff;
  font-weight: 300;
}
#setup .el-input__inner {
  background: #15182d;
  border: 1px solid #3E4058;
  border-radius: 10px;
  height: 60px;
  line-height: 60px;
  color: #fff;
  padding: 0 20px;
}
#setup .el-input__inner:focus {
  border: 1px solid #a2a5bf;
}
#setup .el-select__caret {
  top: 10px;
  position: relative;
  right: 5px;
}
#setup #logo {
  padding: 25px 35px;
  margin: auto;
  width: 140px;
  -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: fadein 2s; /* Firefox < 16 */
  -ms-animation: fadein 2s; /* Internet Explorer */
  -o-animation: fadein 2s; /* Opera < 12.1 */
  animation: fadein 2s;
}
#setup .card {
  background: #15182d;
  color: #fff;
  margin-top: 40px;
}
#setup .card .setup-body {
  text-align: center;
  max-width: 650px;
  margin: auto;
  width: 100%;
  min-height: 550px;
}
#setup .card .setup-body .step {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  min-height: 520px;
}
#setup .card .setup-body .step .step-body h1 {
  font-size: 48px;
  font-weight: bold;
  margin-top: 15px;
}
#setup .card .setup-body .step .step-body .moduleInfos {
  margin-top: -10px;
  margin-bottom: 15px;
}
#setup .card .setup-body .step .step-body .moduleInfos .moduleInfo {
  display: block;
  color: #a2a5bf;
  text-align: left;
  width: 92%;
  margin: auto auto 5px;
  font-size: 12px;
}
#setup .card .setup-body .step .step-body hr {
  margin-bottom: 20px;
  border: none;
  width: 85%;
  border-top: 1px solid #282a44;
}
#setup .card .setup-body .step .step-body .setup-img {
  position: relative;
  margin-bottom: 15px;
}
#setup .card .setup-body .step .step-body .setup-img:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0.5em;
  border-top: 1px solid #383B57;
  width: 100%;
  max-width: 300px;
  margin: auto;
}
#setup .card .setup-body .step .step-body p {
  width: 100%;
  margin: 0 auto 30px;
  max-width: 580px;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
}
#setup.status-wait {
  height: calc(100vh - 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#setup.status-wait .card {
  margin: 0;
  width: 640px;
  height: 410px;
}
#setup.status-wait p {
  margin: 0;
}
#setup.status-wait h1 {
  margin: 36px 0 0 0;
}
#setup.status-wait p:nth-child(2) {
  margin: 16px;
}
#setup.status-wait p:last-child {
  margin-top: 24px;
}
#setup.status-wait .card-body {
  padding: 48px;
}
#setup.status-wait .setup-body {
  margin: auto;
  padding: 0;
  width: 100%;
  min-height: unset;
}
#setup.status-wait #logo {
  padding: 0 35px;
}
#setup.status-wait #logo a {
  display: flex;
  justify-content: center;
}
#setup .setup-btn {
  background: #00cdc4;
  border-radius: 10px;
  height: 60px;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  border: none;
  transition: 0.3s all;
  width: 100%;
  max-width: 380px;
  margin-bottom: 15px;
  opacity: 0;
  -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: fadein 2s; /* Firefox < 16 */
  -ms-animation: fadein 2s; /* Internet Explorer */
  -o-animation: fadein 2s; /* Opera < 12.1 */
  animation: fadein 2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-delay: 1.3s;
  animation-delay: 1.3s;
}
#setup .setup-btn:hover {
  background: #00c2bc;
}
#setup .navigation {
  text-align: center;
  margin-top: 30px;
}
#setup .navigation .link {
  color: #747689;
  text-decoration: none;
  padding-left: 10px;
  padding-right: 10px;
}
#setup .navigation .link:hover {
  color: #fff;
  cursor: pointer;
}
#setup .animation {
  opacity: 0;
  -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: fadein 2s; /* Firefox < 16 */
  -ms-animation: fadein 2s; /* Internet Explorer */
  -o-animation: fadein 2s; /* Opera < 12.1 */
  animation: fadein 2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
#setup .animation-1 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
#setup .animation-2 {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
#setup .animation-3 {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
#setup .animation-4 {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Firefox < 16 */
@-moz-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Internet Explorer */
@-ms-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Opera < 12.1 */
@-o-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 520px) {
  #setup {
    padding: 10px;
  }
  #setup .card {
    margin-top: 0;
  }
  #setup .card .card-body {
    padding: 20px 15px;
  }
  #setup .card .setup-body .step {
    min-height: 620px;
  }
  #setup .card .setup-body .step h1 {
    font-size: 32px !important;
  }
}
@media (max-width: 380px) {
  #setup .card .setup-body .step {
    min-height: 520px;
  }
}
.reportItem svg {
  height: 21px;
  position: relative;
  top: 4px;
  left: 2px;
  margin-right: 10px;
}
.reportItem svg path {
  stroke: #22252c;
  stroke-width: 2px;
}
.reportFlex {
  display: flex;
}
.reportBodyItem {
  border: 1px solid #eeeef0;
  border-radius: 8px;
  margin-bottom: 16px;
  position: relative;
}
.reportBodyItemBody {
  padding: 20px;
}
.reportBody .is-horizontal {
  display: none !important;
}
.reportTabs {
  border: 1px solid #eeeef0;
  border-radius: 8px;
  overflow: hidden;
}
.reportTabs .el-tabs__header {
  background-color: #F9F9F9 !important;
}
.reportTabs .el-tabs__item {
  font-size: 12px;
}
.reportTabs .el-tabs__item:not(.is-active) {
  color: #afb3ba !important;
}
.reportMixItem {
  border: 1px solid #eeeef0;
  border-radius: 8px;
  margin-bottom: 6px;
  overflow: hidden;
}
.reportMixItemBody {
  padding: 5px 16px;
}
.reportMixItemFooter {
  background: #F9F9F9;
  padding: 5px 16px;
}
.reportOrderMixHeader {
  padding: 4px 4px 4px 68px;
  border-bottom: 1px solid #eeeef0;
}
.reportOrderMixTable .el-table__expanded-cell[class*=cell] {
  padding: 4px 4px 4px 64px !important;
}
.reportOrderMixItem {
  padding: 4px;
}
.mixDriversTable .el-table__footer tr .el-table__cell:not(:first-child) .cell {
  padding-left: 42px !important;
}
.reportIcon {
  height: 16px;
  position: relative;
  top: 3px;
  margin-right: 5px;
}
.reportIconAbsolute {
  position: absolute;
  left: -30px;
  top: 1px;
}
.reportItemRow {
  padding-top: 5px;
  padding-bottom: 5px;
  border-bottom: 1px solid #eeeef0;
}
.reportItemRow:hover {
  background: #F9F9F9;
}
.reportItemRowDefect {
  background: #fef7f7;
}
.reportItemRowDefect:hover {
  background: #feeceb;
}
.reportSelect {
  background: #fbfbfb;
  border: 1px solid #F5F5F5;
  box-sizing: border-box;
  border-radius: 5px;
  width: 100%;
  max-width: 235px;
  margin-bottom: 10px;
  transition: 0.5s all;
}
.reportSelect:hover {
  transition: 0.2s all;
  box-shadow: 0 5px 8px rgba(61, 61, 61, 0.07);
}
.reportSelectImage {
  border-bottom: 1px solid #F5F5F5;
  background: white;
  padding: 5px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.reportSelectBody {
  padding: 0 15px 15px;
}
.reportSelectBody h2 {
  font-weight: 500;
  font-size: 15px;
  line-height: 18px;
  margin: 12px 0 10px;
  max-width: 80%;
}
.reportSelectBody p {
  margin: 0 0 15px;
  font-weight: 300;
  font-size: 13px;
  line-height: 16px;
  color: #a2a5bf;
}
.reportHead {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: -15px;
}
.periodSelect {
  font-weight: 400 !important;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .reportSelect {
    max-width: 100%;
  }
  .reportFlex {
    display: block;
  }
}
@media (min-width: 475px) {
  .reportSelect {
    margin-right: 15px;
  }
  .reportBody {
    padding: 15px 0 0 90px;
  }
}
.ttsOrders {
  margin-top: 15px;
}
.ttsOrdersCol {
  background: #FAFAFA !important;
}
.ttsOrder {
  margin-bottom: 10px;
}
.ttsOrderName {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 15px;
  display: block;
}
.ttsOrderInfo {
  margin-bottom: 10px;
}
.ttsOrderInfo div {
  display: block;
  margin-bottom: 5px;
}
.serviceHeadBlock {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.serviceDescriptionWork .el-textarea__inner {
  max-height: 214px;
}
.serviceWorkLine {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ECEEF4;
}
.serviceSaveTemplateSwitch {
  display: flex;
  margin-bottom: 30px;
}
.serviceSaveTemplateSwitch .el-switch {
  margin-top: 8px;
}
.serviceSaveTemplateSwitchInfo {
  margin-left: 15px;
}
.serviceSaveTemplateSwitchInfo p {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  margin-bottom: 8px;
}
.serviceSaveTemplateSwitchInfo span {
  font-weight: 300;
  font-size: 14px;
  line-height: 130%;
}
.servicePeriodDialog .el-radio {
  width: 100%;
  height: auto !important;
  align-items: baseline;
  word-break: normal;
}
.servicePeriodDialog .el-radio__label {
  display: block;
  white-space: normal;
}
.servicePeriodDialog .el-radio h3 {
  font-weight: 400;
  font-size: 14px;
  color: #3a3a3a;
  line-height: 130%;
}
.servicePeriodDialog .el-radio p {
  font-weight: 300;
  font-size: 14px;
  line-height: 130%;
  color: #3a3a3a;
}
.servicePeriodDialog .el-checkbox-group .el-checkbox {
  margin-bottom: 10px;
  margin-right: 10px;
}
.servicePeriodDialog .el-checkbox-group .el-checkbox .el-checkbox__input {
  display: none;
}
.servicePeriodDialog .el-checkbox-group .el-checkbox:not(.is-checked) .el-checkbox__label {
  color: #a2a5bf;
}
.servicePeriodDialog .radioContent {
  padding-left: 22px;
}
.servicePeriodDialog .radioContent p {
  font-weight: 300;
  font-size: 14px;
  line-height: 150%;
  color: #3a3a3a;
  margin-top: 0;
  max-width: 500px;
  display: block;
}
.servicePeriodDialog .radioContentMonth {
  height: 32px;
  width: 32px;
  padding: 0;
}
.servicePeriodDialog .radioContentMonth .el-checkbox__label {
  padding: 0;
  width: 100%;
  display: block;
  text-align: center;
}
.techWorkDetailsStatus {
  color: #a2a5bf;
  line-height: 23px;
  text-align: left;
}
.techWorkDetailsStatus svg {
  top: -1px;
  position: relative;
  margin-right: 8px;
}
.techServiceList {
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ECEEF4;
}
.techServiceList div:first-child {
  width: 60%;
}
.techStoreDetails {
  text-align: center;
  margin-bottom: 30px;
}
.techStoreDetailsTotal {
  background: #FBFBFB;
  display: block;
  border-radius: 5px;
  font-size: 20px;
  padding: 5px;
  font-weight: 500;
  width: 100%;
  max-width: 340px;
  margin: 40px auto 10px;
}
.techListGoods {
  max-width: 400px !important;
  min-width: 250px !important;
  line-height: 180%;
}
.techChangeStatus {
  color: #a2a5bf;
  line-height: 23px;
  width: 100%;
  display: block;
  min-width: 130px;
  text-align: left;
}
.techChangeStatus svg {
  top: -1px;
  position: relative;
  margin-right: 8px;
}
.techChangeStatus:hover {
  cursor: pointer;
}
.techChangeStatusText {
  border-bottom: 1px dashed #b6b9cd;
}
.techChangeStatusItems .el-button {
  width: 100%;
  margin-left: 0 !important;
  margin-bottom: 5px;
}
.chartMileage {
  height: 270px;
  width: 110%;
  position: relative;
  top: -40px;
  left: -2px;
  margin-bottom: -65px;
}
.changeTechDialog .el-dialog__body {
  padding-top: 10px;
  padding-bottom: 10px;
}
.changeTechDialog h4 {
  color: #000000;
}
.changeTechDialog p {
  word-break: break-word;
}
.techDetailsInfoTopBlock {
  background: #F9F9F9;
  border-radius: 12px;
}
.techDetailsInfoTopBlockBody {
  display: flex;
  padding: 15px 20px;
}
.techDetailsInfoTopBlockImage {
  margin-right: 40px;
}
.techDetailsInfoTopBlockImage img {
  height: 180px;
}
.techDetailsInfoTopBlockLines {
  width: 100%;
}
.techDetailsInfoTopBlockLines .lineInfo__name {
  color: #8a909a;
}
.techDetailsInfo .techImage, .techDetailsInfo .techImageEmpty {
  width: 181px;
  height: 181px;
}
.techDetailsInfo h2 {
  margin-top: 0;
  font-weight: 400;
  font-size: 18px;
}
.techDetailsInfoHead {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.techDetailsInfoHead h2 {
  margin: 0;
  color: #393f4a;
}
.techDetailsInfoHead .techChangeStatus {
  text-align: right;
  position: relative;
}
.techDetailsInfoHeadRightBlock {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.techDetailsInfoHeadRightBlock .el-button {
  margin-left: 15px;
}
.techDetailsInfoIndicators {
  display: flex;
  flex-wrap: wrap;
  margin: 25px -10px 0;
}
.techDetailsInfoIndicatorsBlock {
  width: 50%;
}
.techDetailsInfoIndicators .item {
  background: #F9F9F9;
  border-radius: 12px;
  margin: 0 10px;
}
.techDetailsInfoIndicators .item .item-body {
  padding: 15px 20px;
}
.techDetailsInfoIndicators .item.gps {
  height: 100%;
}
.techDetailsInfoIndicators .item.gps .no-service {
  text-align: center;
  width: 100%;
  display: block;
  margin-top: 25%;
}
.techDetailsInfoIndicators .item.fuel {
  width: 100%;
}
.techDetailsInfoIndicators .item.fuel .el-progress-bar {
  margin-bottom: 35px;
}
.techDetailsInfoIndicators .item.fuel .el-progress-bar__outer {
  background-color: #f2f2f2;
}
.techDetailsInfoIndicators .item.fuel .el-progress__text {
  font-weight: 400;
  font-size: 14px;
  position: absolute;
  right: 0;
  min-width: auto;
  top: -25px;
}
.techDetailsInfoIndicators .item.fuel .el-progress__text span {
  color: #ff5253;
}
.techDetailsInfoIndicators .item.mileage {
  width: 100%;
}
.techDetailsInfoIndicators .item.mileage .bottomText {
  margin-top: 65px;
}
.techDetailsInfoIndicators .item.service .bottomText {
  margin-top: 45px;
}
.techDetailsInfoIndicators .item .topText {
  font-weight: 400;
  font-size: 13px;
  color: #a2a5bf;
  display: block;
}
.techDetailsInfoIndicators .item .mainText {
  margin-top: 20px;
  font-weight: 700;
  font-size: 24px;
  color: #3a3a3a;
  display: block;
}
.techDetailsInfoIndicators .item .bottomText {
  font-weight: 300;
  font-size: 12px;
  color: #000000;
  display: block;
}
@media (max-width: 1200px) {
  .techDetailsInfoIndicatorsBlock {
    width: 100%;
  }
  .techDetailsInfoIndicators .item.gps {
    height: 200px;
    margin-bottom: 15px;
  }
  .techDetailsInfoIndicators .item.gps .no-service {
    text-align: center;
    width: 100%;
    display: block;
    margin-top: 50px;
  }
}
.techImage {
  display: block;
  width: 100px;
  height: 100px;
  background-position: center;
  background-size: cover;
  border-radius: 5px;
  border: 1px solid rgba(172, 175, 198, 0.2);
}
.techImageEmpty {
  border: 1px solid rgba(172, 175, 198, 0.2);
  border-radius: 5px;
  height: 100px;
  width: 100px;
  background-color: white;
}
.techDetailsInfoBlock {
  background: #F9FBFF;
  border: 1px solid #F1F3F5;
  border-radius: 8px;
  padding: 24px;
}
.techDetailsInfoBlockTopText {
  font-size: 14px;
  line-height: 16px;
  font-weight: 300;
  color: #3a3a3a;
}
.techDetailsInfoBlockMainText {
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  color: #3a3a3a;
  margin-top: 4px;
  margin-bottom: 13px;
}
.techDetailsInfoBlockBottomText {
  font-weight: 400;
  font-size: 13px;
  line-height: 110%;
  color: #3a3a3a;
}
.techDetailsInfoBlocks {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 20px;
  gap: 20px;
}
.techDetailsInfoBlocks div.techDetailsInfoBlock {
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: calc(33.3333333333% - 51px);
}
@media (max-width: 767px) {
  .techDetailsInfoBlocks {
    display: block;
  }
  .techDetailsInfoBlocks div.techDetailsInfoBlock {
    margin-bottom: 15px;
  }
}
.techDetailsTiresItem {
  border: 1px solid #eeeef0;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 8px;
}
.techDetailsTiresAddTire {
  width: 100%;
  display: block;
  text-align: left;
  border-top: 1px solid #ebeef5;
  border-bottom: 1px solid #ebeef5;
  padding: 8px 12px;
  background: #F9F9F9;
}
.techDetailsTiresAddTire:hover {
  background: #eeeef0;
}
.techDetailsTiresRow {
  border-top: 1px solid #ebeef5;
  padding: 8px 12px;
}
.techFlex {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.techBlock {
  padding: 25px;
  background: #F9F9F9;
  border-radius: 6px;
  border: 1px solid #F9F9F9;
  transition: 0.2s all;
  flex: 1 1 25%;
  width: calc(25% - 10px);
  max-width: calc(25% - 8px);
}
.techBlock:hover {
  border-color: #c9ccd0;
  transition: 0.3s all;
}
.techBlockImg {
  margin-right: 25px;
}
.techBlockBody {
  width: 100%;
}
.techBlockBodyTop {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.techBlockBodyTopInfo span {
  color: #a2a5bf;
  font-weight: 300;
  margin-right: 20px;
}
.techBlockBodyTopStatus .techChangeStatus {
  text-align: right;
}
.techBlockBodyHeading {
  display: flex;
  justify-content: space-between !important;
  position: relative;
}
.techBlockBodyHeading span {
  width: 100%;
  display: block;
}
.techBlockBodyHeading img {
  position: absolute;
  right: 0;
}
.techBlockBodyHeading .techBlockImgmix {
  height: 100px;
  top: -32px;
}
.techBlockBodyHeading .techBlockImgtruck {
  height: 121px;
  top: -36px;
  right: -7px;
}
.techBlockBodyHeading .techBlockImgexcavator {
  height: 90px;
  top: -20px;
  right: -14px;
}
.techBlockBodyHeading .techBlockImgpump {
  height: 78px;
  top: -10px;
  right: -35px;
}
.techBlockBodyIndicatorsItems {
  display: flex;
}
.techBlockBodyIndicatorsItem {
  margin-bottom: 5px;
}
.techBlockBodyIndicatorsItem svg {
  margin-right: 12px;
}
.techBlockBodyIndicatorsItem span {
  position: relative;
  top: -4px;
}
.techBlockMobileDetails {
  background: #f6f6f6;
  border-radius: 5px;
  padding: 5px 10px;
  margin-top: 15px;
}
.techChangeModeInfo {
  text-align: left;
  white-space: normal;
  padding-left: 13px;
}
.techChangeModeInfo h3 {
  width: 100%;
  color: #3a3a3a;
  display: block;
  margin-bottom: 8px;
  margin-top: 5px;
  font-weight: 400;
  font-size: 18px;
}
.techChangeModeInfo p {
  color: #a2a5bf;
  line-height: 21px;
  font-weight: 300;
  margin-bottom: 0;
}
.techChangeMode .el-button {
  background: #FAFAFA;
  padding: 16px 18px;
  border-radius: 5px;
  border: 1px solid #FAFAFA;
  height: auto !important;
  display: block;
  position: relative;
  text-decoration: none;
  transition: all 0.3s;
  margin-bottom: 15px;
  color: #3a3a3a;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}
.techChangeMode .el-button span {
  display: block;
}
.techChangeMode .el-button:hover {
  box-shadow: 0 4px 7px rgba(0, 0, 0, 0.1);
  border: 1px solid #F4F4F4;
}
.techChangeMode .el-button svg {
  height: 48px;
  width: 48px;
  padding: 20px;
}
.techPageDetailsMenu .el-button {
  display: block;
  width: 100%;
  text-align: left;
  margin-left: 0;
  color: #a2a5bf;
}
.techPageDetailsMenu .el-button.active {
  color: #000000;
}
.techPageDetailsMenu .el-button:hover {
  color: #606266;
}
.techPageDetailsMainCol {
  position: relative;
}
.techPageDetailsMainCol::before {
  display: block;
  content: "";
  width: 1px;
  height: 100%;
  background-color: rgba(230, 230, 230, 0.5);
  margin: 0 1rem;
  transform: translateY(-1rem);
  position: absolute;
  right: -40px;
}
@media (max-width: 1450px) {
  .techBlockBodyHeading .techBlockImgmix {
    height: 80px;
    top: -22px;
  }
  .techBlockBodyHeading .techBlockImgtruck {
    height: 101px;
    top: -26px;
    right: -7px;
  }
  .techBlockBodyHeading .techBlockImgexcavator {
    height: 70px !important;
    top: -10px !important;
    right: -14px;
  }
}
@media (max-width: 767px) {
  .techBlock {
    display: block;
  }
  .techBlock .techBlockBodyTop {
    display: block;
  }
  .techBlock .techBlockBodyTop .techChangeStatus {
    text-align: left;
  }
  .techBlock .techBlockBodyHeading {
    margin-bottom: 20px;
  }
  .techBlock .techBlockBodyHeading span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.techHeadInfo {
  display: flex;
  margin-bottom: 30px;
}
.techHeadInfoImg {
  margin-right: 25px;
}
.techHeadInfoBody {
  width: 100%;
}
.techHeadInfoIndicators {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.techHeadInfoIndicatorsItems {
  display: flex;
}
.techHeadInfoIndicatorsItem {
  margin-right: 20px;
  display: flex;
}
.techHeadInfoIndicatorsItem svg {
  margin-right: 12px;
}
.integration-table.integration-table .el-table__header .cell {
  padding-top: 0;
  font-weight: 500;
  font-size: 16px;
}
.integration-table-row.integration-table-row .cell {
  color: #393f4a;
  font-weight: 500;
}
.crm-contracts .header-filter-button {
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  color: #8a909a !important;
  width: 100%;
  justify-content: flex-start;
}
.crm-contracts .header-filter-button svg {
  width: 10px;
  height: 10px;
  margin-left: 10px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.crm-contracts .header-filter-button svg path {
  fill: currentColor;
}
.crm-contracts-form {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  justify-content: flex-start;
}
.crm-contracts-form .el-scrollbar__wrap {
  overflow-x: hidden;
}
.crm-contracts-form .el-scrollbar__bar.is-horizontal {
  display: none;
  opacity: 0;
}
.crm-contracts-form__goods .el-form-item {
  margin-bottom: 12px;
}
.crm-contracts-form .formSelectCompanyDialog .el-form-item {
  max-width: 700px;
}
.crm-contracts-form .el-form-item {
  margin-bottom: 8px !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
}
.crm-contracts-form .el-form-item__label {
  margin-bottom: 0 !important;
  color: #8a909a !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 20px !important;
  min-width: 132px !important;
  position: relative !important;
}
.crm-contracts-form .el-form-item__content {
  max-width: 374px;
}
@media (min-width: 1440px) {
  .crm-contracts-form .el-form-item__content {
    max-width: 440px;
  }
}
.crm-contracts-form .el-form-item__content .inputModal {
  background: #F7F7F8 !important;
  box-shadow: none !important;
  border-radius: 8px;
}
.crm-contracts-form .el-form-item__content .inputModal > div {
  height: 100%;
  align-items: center;
  justify-content: center;
  height: 40px;
}
.crm-contracts-form .el-form-item__content .inputModal.empty .inputModalWrapper {
  color: #afb3ba;
}
.crm-contracts-form .el-form-item__content .inputModal .inputModalWrapper {
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  min-width: 132px;
}
.crm-contracts-form .el-form-item__content .el-date-editor .el-input__wrapper {
  padding: 2px;
  display: flex;
  gap: 14px;
}
.crm-contracts-form .el-form-item__content .el-date-editor .el-input__prefix {
  background: #fff;
  padding: 8px;
  border-radius: 6px;
  width: 36px;
  height: 36px;
  justify-content: center;
}
.crm-contracts-form .el-form-item__content .el-date-editor .el-input__prefix i {
  margin: 0;
  width: 20px;
  height: 20px;
}
.crm-contracts-form .el-form-item__content .el-date-editor .el-input__prefix i svg {
  width: 20px;
  height: 20px;
}
.crm-contracts-form .el-form-item__content .el-date-editor .el-input__prefix i svg path {
  fill: #505968;
}
.crm-contracts-form .el-form-item__content .el-date-editor .el-input__content {
  padding: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #22252c;
}
.crm-contracts-form .el-form-item__content .el-input__wrapper, .crm-contracts-form .el-form-item__content .el-select__wrapper {
  padding: 10px 12px;
  background: #F7F7F8;
  box-shadow: none;
  height: 40px !important;
  border-radius: 8px;
}
.crm-contracts-form .el-form-item__content .el-input__inner:-moz-placeholder, .crm-contracts-form .el-form-item__content .el-input__inner::-moz-placeholder, .crm-contracts-form .el-form-item__content .el-select__inner:-moz-placeholder, .crm-contracts-form .el-form-item__content .el-select__inner::-moz-placeholder {
  color: #afb3ba;
}
.crm-contracts-form .el-form-item__content .el-input__inner:-ms-input-placeholder, .crm-contracts-form .el-form-item__content .el-select__inner:-ms-input-placeholder {
  color: #afb3ba;
}
.crm-contracts-form .el-form-item__content .el-input__inner::-webkit-input-placeholder, .crm-contracts-form .el-form-item__content .el-input__inner::placeholder, .crm-contracts-form .el-form-item__content .el-select__inner::-webkit-input-placeholder, .crm-contracts-form .el-form-item__content .el-select__inner::placeholder {
  color: #afb3ba;
}
.crm-contracts-form .el-form-item__content .el-input__inner, .crm-contracts-form .el-form-item__content .el-select__inner {
  color: #393f4a;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.crm-contracts-form .el-tabs {
  padding-top: 16px;
}
.crm-contracts-form .el-tabs__item {
  padding-right: 24px;
  height: 20px;
}
.crm-contracts-form__save-btn, .crm-contracts-form__delete-btn {
  padding: 12px 24px !important;
  height: 44px !important;
  box-shadow: none;
  border-radius: 8px !important;
  width: fit-content;
  font-family: "Ubuntu";
}
.crm-contracts-form__save-btn .el-icon, .crm-contracts-form__save-btn svg, .crm-contracts-form__delete-btn .el-icon, .crm-contracts-form__delete-btn svg {
  width: 20px !important;
  height: 20px !important;
}
.crm-contracts-form__delete-btn {
  margin-left: auto !important;
}
.crm-contracts-create-dialog {
  min-height: 510px;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
}
.crm-contracts-create-dialog > header {
  border-bottom: 1px solid #eeeef0;
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.crm-contracts-create-dialog .el-dialog__close, .crm-contracts-create-dialog .el-dialog__close svg {
  width: 20px;
  height: 20px;
}
.crm-contracts-create-dialog .el-dialog__close path, .crm-contracts-create-dialog .el-dialog__close svg path {
  fill: #141414;
}
.crm-contracts-create-dialog .el-dialog__body {
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.address-table.el-table {
  margin-block: 0 !important;
}
.address-table.el-table .el-scrollbar__view {
  height: 242px;
}
.address-table-row {
  cursor: pointer;
}
.address-table.address-table .el-table__header .cell {
  padding-top: 0;
  font-weight: 500;
  font-size: 16px;
}
.address-table-row.address-table-row .cell {
  color: #393f4a;
  font-weight: 500;
}
.crm-tabs-table__header {
  height: 24px;
}
.crm-tabs-table__header .el-col {
  padding-block: 4px;
}
.crm-tabs-table__header .el-col, .crm-tabs-table__header .el-col span {
  line-height: 1;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  color: #8a909a;
}
.crm-tabs-table__body--addresses .el-row .el-col:first-child span {
  color: #8a909a;
}
.crm-tabs-table__body .el-scrollbar__view > div {
  height: fit-content;
}
.crm-tabs-table__body .el-row {
  padding-block: 4px 3px;
  min-height: 28px;
  height: fit-content;
}
.crm-tabs-table__body .el-col {
  margin-block: auto;
}
.crm-tabs-table__body .el-col span {
  line-height: 1;
  font-size: 14px;
  line-height: 20px;
}
.crm-tabs-table__body .el-col button span {
  color: #737a86;
}
.crm-tabs-table__body .el-col .el-form-item {
  margin-bottom: 0;
}
.crm-tabs-table__body hr {
  margin-block: 0;
}
.crm-tabs-table__body .el-input .el-input__wrapper.el-input__wrapper {
  padding: 6px 8px !important;
  height: 28px !important;
}
.crm-tabs-table__body .el-input .el-input__wrapper.el-input__wrapper > input.el-input__inner {
  font-size: 12px;
  line-height: 16px;
  height: 16px;
  font-weight: 400;
  color: #393f4a;
}
.crm-tabs-table__btn {
  max-height: 28px;
  padding: 6px;
  border-radius: 8px;
  font-family: "Ubuntu";
  border-color: #c9ccd0;
}
.crm-tabs-table__btn i, .crm-tabs-table__btn svg {
  width: 16px;
  height: 16px;
}
.crm-tabs-table__btn i path, .crm-tabs-table__btn svg path {
  fill: #49515f;
}
.crm-tabs-table__btn--delete {
  margin-inline: 12px;
}
.crm-tabs-table__btn--delete:hover {
  border-color: #fa938c;
  background: #feeceb;
}
.crm-tabs-table__btn--delete:hover svg path {
  fill: #fa938c;
}
.crm-tabs-table__btn--details {
  padding-inline: 8px;
  color: #737a86;
}
.crm-tabs-table__btn--details span {
  font-weight: 400 !important;
}
.storehouse-actions-dialog {
  padding: 24px;
  max-width: 900px;
  border-radius: 12px;
  overflow: scroll;
}
@media screen and (max-width: 560px) {
  .storehouse-actions-dialog {
    padding: 12px;
  }
}
.storehouse-actions-dialog > header {
  border-bottom: 1px solid #eeeef0;
  padding-bottom: 16px;
  margin-bottom: 16px;
  color: #393f4a;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}
.storehouse-actions-dialog .el-dialog__close, .storehouse-actions-dialog .el-dialog__close svg {
  width: 24px;
  height: 24px;
}
.storehouse-actions-dialog .el-dialog__close path, .storehouse-actions-dialog .el-dialog__close svg path {
  fill: #141414;
}
.storehouse-actions-dialog .el-dialog__headerbtn {
  top: 24px;
  right: 24px;
  width: 24px;
  height: 24px;
}
.formInfoText {
  font-size: 12px;
  color: #b6b9cd;
}
.selectAddressList {
  flex-wrap: wrap;
  flex-direction: column;
  max-height: 250px;
}
.selectAddressList div {
  flex-grow: 1;
  width: 25%;
}
.selectAddressList div button {
  width: 100%;
  text-align: left;
}
.selectAddressList div button span {
  width: 100%;
}
.custom-input .el-input__wrapper,
.custom-input .el-select__wrapper,
.custom-select .el-input__wrapper,
.custom-select .el-select__wrapper,
.custom-datepicker .el-input__wrapper,
.custom-datepicker .el-select__wrapper {
  height: 38px !important;
}
.el-select__wrapper {
  height: 38px !important;
}
.custom-datepicker {
  height: 38px !important;
}
.inputModal {
  height: 38px;
  color: #49515f;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
  box-shadow: 0 0 0 1px #eeeef0 inset !important;
  background: #ffffff !important;
  width: 100%;
  border-radius: 4px;
  position: relative;
}
.inputModal.disabled .inputModalWrapper, .inputModal.empty .inputModalWrapper {
  color: #a8abb2;
}
.inputModal__errorMessage {
  margin: 0;
  position: absolute;
  font-size: 10px;
  bottom: 0;
  transform: translate(4px, calc(100% - 10px));
  color: #f74539;
}
.inputModalWrapper {
  display: block;
  flex-grow: 1;
  padding: 1px 11px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.inputModal:hover {
  cursor: pointer;
  box-shadow: 0 0 0 1px #dddde0 inset !important;
}
.inputModal:hover .inputModalClear {
  display: block;
}
.inputModalClear {
  display: none;
  position: relative;
  right: 1px;
  top: 1px;
  padding: 0 10px;
}
.inputModalClear .el-icon {
  position: relative;
  top: 2px;
}
.inputModalClear .el-icon svg path {
  fill: #a8abb2;
}
.inputModalClear:hover .el-icon svg path {
  fill: #737a86;
}
.dispatch-order-groups-create-form {
  margin-bottom: 20px;
}
.dispatch-order-groups-create-form .inputModal {
  background: #f9f9f9 !important;
}
.dispatch-order-groups-create-form__tooltip {
  max-width: 550px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dispatch-order-groups-create-form__tooltip p, .dispatch-order-groups-create-form__tooltip li {
  margin: 0;
}
.dispatch-order-groups-create-form__tooltip ul {
  margin: 0;
  padding-left: 12px;
}
.formInput.grey,
.form-number.grey,
.form-select.grey,
.form-switch.grey,
.form-datetime-picker.grey,
.form-vat.grey {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.formInput.grey.is-required .el-form-item__label:before,
.form-number.grey.is-required .el-form-item__label:before,
.form-select.grey.is-required .el-form-item__label:before,
.form-switch.grey.is-required .el-form-item__label:before,
.form-datetime-picker.grey.is-required .el-form-item__label:before,
.form-vat.grey.is-required .el-form-item__label:before {
  color: #ad3028 !important;
}
.formInput.grey .el-form-item__label,
.form-number.grey .el-form-item__label,
.form-select.grey .el-form-item__label,
.form-switch.grey .el-form-item__label,
.form-datetime-picker.grey .el-form-item__label,
.form-vat.grey .el-form-item__label {
  margin-bottom: 0;
  color: #8a909a;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  position: relative;
  height: fit-content;
}
.formInput.grey .el-form-item__content .el-input__wrapper,
.formInput.grey .el-form-item__content .el-select__wrapper,
.formInput.grey .el-form-item__content .el-date-editor .el-input__wrapper,
.form-number.grey .el-form-item__content .el-input__wrapper,
.form-number.grey .el-form-item__content .el-select__wrapper,
.form-number.grey .el-form-item__content .el-date-editor .el-input__wrapper,
.form-select.grey .el-form-item__content .el-input__wrapper,
.form-select.grey .el-form-item__content .el-select__wrapper,
.form-select.grey .el-form-item__content .el-date-editor .el-input__wrapper,
.form-switch.grey .el-form-item__content .el-input__wrapper,
.form-switch.grey .el-form-item__content .el-select__wrapper,
.form-switch.grey .el-form-item__content .el-date-editor .el-input__wrapper,
.form-datetime-picker.grey .el-form-item__content .el-input__wrapper,
.form-datetime-picker.grey .el-form-item__content .el-select__wrapper,
.form-datetime-picker.grey .el-form-item__content .el-date-editor .el-input__wrapper,
.form-vat.grey .el-form-item__content .el-input__wrapper,
.form-vat.grey .el-form-item__content .el-select__wrapper,
.form-vat.grey .el-form-item__content .el-date-editor .el-input__wrapper {
  background: #F9F9F9;
  box-shadow: none;
  border-radius: 8px;
  padding: 10px 12px;
  height: 40px;
}
.formInput.grey .el-form-item__content .el-input__wrapper > div,
.formInput.grey .el-form-item__content .el-select__wrapper > div,
.formInput.grey .el-form-item__content .el-date-editor .el-input__wrapper > div,
.form-number.grey .el-form-item__content .el-input__wrapper > div,
.form-number.grey .el-form-item__content .el-select__wrapper > div,
.form-number.grey .el-form-item__content .el-date-editor .el-input__wrapper > div,
.form-select.grey .el-form-item__content .el-input__wrapper > div,
.form-select.grey .el-form-item__content .el-select__wrapper > div,
.form-select.grey .el-form-item__content .el-date-editor .el-input__wrapper > div,
.form-switch.grey .el-form-item__content .el-input__wrapper > div,
.form-switch.grey .el-form-item__content .el-select__wrapper > div,
.form-switch.grey .el-form-item__content .el-date-editor .el-input__wrapper > div,
.form-datetime-picker.grey .el-form-item__content .el-input__wrapper > div,
.form-datetime-picker.grey .el-form-item__content .el-select__wrapper > div,
.form-datetime-picker.grey .el-form-item__content .el-date-editor .el-input__wrapper > div,
.form-vat.grey .el-form-item__content .el-input__wrapper > div,
.form-vat.grey .el-form-item__content .el-select__wrapper > div,
.form-vat.grey .el-form-item__content .el-date-editor .el-input__wrapper > div {
  height: 100%;
  align-items: center;
  justify-content: center;
}
.formInput.grey .el-form-item__content .el-input__wrapper.empty .inputModalWrapper,
.formInput.grey .el-form-item__content .el-select__wrapper.empty .inputModalWrapper,
.formInput.grey .el-form-item__content .el-date-editor .el-input__wrapper.empty .inputModalWrapper,
.form-number.grey .el-form-item__content .el-input__wrapper.empty .inputModalWrapper,
.form-number.grey .el-form-item__content .el-select__wrapper.empty .inputModalWrapper,
.form-number.grey .el-form-item__content .el-date-editor .el-input__wrapper.empty .inputModalWrapper,
.form-select.grey .el-form-item__content .el-input__wrapper.empty .inputModalWrapper,
.form-select.grey .el-form-item__content .el-select__wrapper.empty .inputModalWrapper,
.form-select.grey .el-form-item__content .el-date-editor .el-input__wrapper.empty .inputModalWrapper,
.form-switch.grey .el-form-item__content .el-input__wrapper.empty .inputModalWrapper,
.form-switch.grey .el-form-item__content .el-select__wrapper.empty .inputModalWrapper,
.form-switch.grey .el-form-item__content .el-date-editor .el-input__wrapper.empty .inputModalWrapper,
.form-datetime-picker.grey .el-form-item__content .el-input__wrapper.empty .inputModalWrapper,
.form-datetime-picker.grey .el-form-item__content .el-select__wrapper.empty .inputModalWrapper,
.form-datetime-picker.grey .el-form-item__content .el-date-editor .el-input__wrapper.empty .inputModalWrapper,
.form-vat.grey .el-form-item__content .el-input__wrapper.empty .inputModalWrapper,
.form-vat.grey .el-form-item__content .el-select__wrapper.empty .inputModalWrapper,
.form-vat.grey .el-form-item__content .el-date-editor .el-input__wrapper.empty .inputModalWrapper {
  color: #afb3ba;
}
.formInput.grey .el-form-item__content .el-input__wrapper .inputModalWrapper,
.formInput.grey .el-form-item__content .el-select__wrapper .inputModalWrapper,
.formInput.grey .el-form-item__content .el-date-editor .el-input__wrapper .inputModalWrapper,
.form-number.grey .el-form-item__content .el-input__wrapper .inputModalWrapper,
.form-number.grey .el-form-item__content .el-select__wrapper .inputModalWrapper,
.form-number.grey .el-form-item__content .el-date-editor .el-input__wrapper .inputModalWrapper,
.form-select.grey .el-form-item__content .el-input__wrapper .inputModalWrapper,
.form-select.grey .el-form-item__content .el-select__wrapper .inputModalWrapper,
.form-select.grey .el-form-item__content .el-date-editor .el-input__wrapper .inputModalWrapper,
.form-switch.grey .el-form-item__content .el-input__wrapper .inputModalWrapper,
.form-switch.grey .el-form-item__content .el-select__wrapper .inputModalWrapper,
.form-switch.grey .el-form-item__content .el-date-editor .el-input__wrapper .inputModalWrapper,
.form-datetime-picker.grey .el-form-item__content .el-input__wrapper .inputModalWrapper,
.form-datetime-picker.grey .el-form-item__content .el-select__wrapper .inputModalWrapper,
.form-datetime-picker.grey .el-form-item__content .el-date-editor .el-input__wrapper .inputModalWrapper,
.form-vat.grey .el-form-item__content .el-input__wrapper .inputModalWrapper,
.form-vat.grey .el-form-item__content .el-select__wrapper .inputModalWrapper,
.form-vat.grey .el-form-item__content .el-date-editor .el-input__wrapper .inputModalWrapper {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #393f4a;
}
.formInput.grey .el-form-item__content .el-textarea__inner,
.form-number.grey .el-form-item__content .el-textarea__inner,
.form-select.grey .el-form-item__content .el-textarea__inner,
.form-switch.grey .el-form-item__content .el-textarea__inner,
.form-datetime-picker.grey .el-form-item__content .el-textarea__inner,
.form-vat.grey .el-form-item__content .el-textarea__inner {
  background: #F9F9F9;
  box-shadow: none;
  border: none;
  border-radius: 8px;
  padding: 10px 12px;
}
.formInput.grey .el-form-item__content .el-textarea__inner:-moz-placeholder, .formInput.grey .el-form-item__content .el-textarea__inner::-moz-placeholder,
.form-number.grey .el-form-item__content .el-textarea__inner:-moz-placeholder,
.form-number.grey .el-form-item__content .el-textarea__inner::-moz-placeholder,
.form-select.grey .el-form-item__content .el-textarea__inner:-moz-placeholder,
.form-select.grey .el-form-item__content .el-textarea__inner::-moz-placeholder,
.form-switch.grey .el-form-item__content .el-textarea__inner:-moz-placeholder,
.form-switch.grey .el-form-item__content .el-textarea__inner::-moz-placeholder,
.form-datetime-picker.grey .el-form-item__content .el-textarea__inner:-moz-placeholder,
.form-datetime-picker.grey .el-form-item__content .el-textarea__inner::-moz-placeholder,
.form-vat.grey .el-form-item__content .el-textarea__inner:-moz-placeholder,
.form-vat.grey .el-form-item__content .el-textarea__inner::-moz-placeholder {
  color: #afb3ba;
}
.formInput.grey .el-form-item__content .el-textarea__inner:-ms-input-placeholder,
.form-number.grey .el-form-item__content .el-textarea__inner:-ms-input-placeholder,
.form-select.grey .el-form-item__content .el-textarea__inner:-ms-input-placeholder,
.form-switch.grey .el-form-item__content .el-textarea__inner:-ms-input-placeholder,
.form-datetime-picker.grey .el-form-item__content .el-textarea__inner:-ms-input-placeholder,
.form-vat.grey .el-form-item__content .el-textarea__inner:-ms-input-placeholder {
  color: #afb3ba;
}
.formInput.grey .el-form-item__content .el-textarea__inner::-webkit-input-placeholder, .formInput.grey .el-form-item__content .el-textarea__inner::placeholder,
.form-number.grey .el-form-item__content .el-textarea__inner::-webkit-input-placeholder,
.form-number.grey .el-form-item__content .el-textarea__inner::placeholder,
.form-select.grey .el-form-item__content .el-textarea__inner::-webkit-input-placeholder,
.form-select.grey .el-form-item__content .el-textarea__inner::placeholder,
.form-switch.grey .el-form-item__content .el-textarea__inner::-webkit-input-placeholder,
.form-switch.grey .el-form-item__content .el-textarea__inner::placeholder,
.form-datetime-picker.grey .el-form-item__content .el-textarea__inner::-webkit-input-placeholder,
.form-datetime-picker.grey .el-form-item__content .el-textarea__inner::placeholder,
.form-vat.grey .el-form-item__content .el-textarea__inner::-webkit-input-placeholder,
.form-vat.grey .el-form-item__content .el-textarea__inner::placeholder {
  color: #afb3ba;
}
.formInput.grey .el-form-item__content .el-textarea__inner,
.form-number.grey .el-form-item__content .el-textarea__inner,
.form-select.grey .el-form-item__content .el-textarea__inner,
.form-switch.grey .el-form-item__content .el-textarea__inner,
.form-datetime-picker.grey .el-form-item__content .el-textarea__inner,
.form-vat.grey .el-form-item__content .el-textarea__inner {
  color: #393f4a;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  resize: none;
}
.formInput.grey .el-form-item__content .el-input__inner:-moz-placeholder, .formInput.grey .el-form-item__content .el-input__inner::-moz-placeholder,
.formInput.grey .el-form-item__content .el-select__inner:-moz-placeholder,
.formInput.grey .el-form-item__content .el-select__inner::-moz-placeholder,
.form-number.grey .el-form-item__content .el-input__inner:-moz-placeholder,
.form-number.grey .el-form-item__content .el-input__inner::-moz-placeholder,
.form-number.grey .el-form-item__content .el-select__inner:-moz-placeholder,
.form-number.grey .el-form-item__content .el-select__inner::-moz-placeholder,
.form-select.grey .el-form-item__content .el-input__inner:-moz-placeholder,
.form-select.grey .el-form-item__content .el-input__inner::-moz-placeholder,
.form-select.grey .el-form-item__content .el-select__inner:-moz-placeholder,
.form-select.grey .el-form-item__content .el-select__inner::-moz-placeholder,
.form-switch.grey .el-form-item__content .el-input__inner:-moz-placeholder,
.form-switch.grey .el-form-item__content .el-input__inner::-moz-placeholder,
.form-switch.grey .el-form-item__content .el-select__inner:-moz-placeholder,
.form-switch.grey .el-form-item__content .el-select__inner::-moz-placeholder,
.form-datetime-picker.grey .el-form-item__content .el-input__inner:-moz-placeholder,
.form-datetime-picker.grey .el-form-item__content .el-input__inner::-moz-placeholder,
.form-datetime-picker.grey .el-form-item__content .el-select__inner:-moz-placeholder,
.form-datetime-picker.grey .el-form-item__content .el-select__inner::-moz-placeholder,
.form-vat.grey .el-form-item__content .el-input__inner:-moz-placeholder,
.form-vat.grey .el-form-item__content .el-input__inner::-moz-placeholder,
.form-vat.grey .el-form-item__content .el-select__inner:-moz-placeholder,
.form-vat.grey .el-form-item__content .el-select__inner::-moz-placeholder {
  color: #afb3ba;
}
.formInput.grey .el-form-item__content .el-input__inner:-ms-input-placeholder,
.formInput.grey .el-form-item__content .el-select__inner:-ms-input-placeholder,
.form-number.grey .el-form-item__content .el-input__inner:-ms-input-placeholder,
.form-number.grey .el-form-item__content .el-select__inner:-ms-input-placeholder,
.form-select.grey .el-form-item__content .el-input__inner:-ms-input-placeholder,
.form-select.grey .el-form-item__content .el-select__inner:-ms-input-placeholder,
.form-switch.grey .el-form-item__content .el-input__inner:-ms-input-placeholder,
.form-switch.grey .el-form-item__content .el-select__inner:-ms-input-placeholder,
.form-datetime-picker.grey .el-form-item__content .el-input__inner:-ms-input-placeholder,
.form-datetime-picker.grey .el-form-item__content .el-select__inner:-ms-input-placeholder,
.form-vat.grey .el-form-item__content .el-input__inner:-ms-input-placeholder,
.form-vat.grey .el-form-item__content .el-select__inner:-ms-input-placeholder {
  color: #afb3ba;
}
.formInput.grey .el-form-item__content .el-input__inner::-webkit-input-placeholder, .formInput.grey .el-form-item__content .el-input__inner::placeholder,
.formInput.grey .el-form-item__content .el-select__inner::-webkit-input-placeholder,
.formInput.grey .el-form-item__content .el-select__inner::placeholder,
.form-number.grey .el-form-item__content .el-input__inner::-webkit-input-placeholder,
.form-number.grey .el-form-item__content .el-input__inner::placeholder,
.form-number.grey .el-form-item__content .el-select__inner::-webkit-input-placeholder,
.form-number.grey .el-form-item__content .el-select__inner::placeholder,
.form-select.grey .el-form-item__content .el-input__inner::-webkit-input-placeholder,
.form-select.grey .el-form-item__content .el-input__inner::placeholder,
.form-select.grey .el-form-item__content .el-select__inner::-webkit-input-placeholder,
.form-select.grey .el-form-item__content .el-select__inner::placeholder,
.form-switch.grey .el-form-item__content .el-input__inner::-webkit-input-placeholder,
.form-switch.grey .el-form-item__content .el-input__inner::placeholder,
.form-switch.grey .el-form-item__content .el-select__inner::-webkit-input-placeholder,
.form-switch.grey .el-form-item__content .el-select__inner::placeholder,
.form-datetime-picker.grey .el-form-item__content .el-input__inner::-webkit-input-placeholder,
.form-datetime-picker.grey .el-form-item__content .el-input__inner::placeholder,
.form-datetime-picker.grey .el-form-item__content .el-select__inner::-webkit-input-placeholder,
.form-datetime-picker.grey .el-form-item__content .el-select__inner::placeholder,
.form-vat.grey .el-form-item__content .el-input__inner::-webkit-input-placeholder,
.form-vat.grey .el-form-item__content .el-input__inner::placeholder,
.form-vat.grey .el-form-item__content .el-select__inner::-webkit-input-placeholder,
.form-vat.grey .el-form-item__content .el-select__inner::placeholder {
  color: #afb3ba;
}
.formInput.grey .el-form-item__content .el-input__inner,
.formInput.grey .el-form-item__content .el-select__inner,
.form-number.grey .el-form-item__content .el-input__inner,
.form-number.grey .el-form-item__content .el-select__inner,
.form-select.grey .el-form-item__content .el-input__inner,
.form-select.grey .el-form-item__content .el-select__inner,
.form-switch.grey .el-form-item__content .el-input__inner,
.form-switch.grey .el-form-item__content .el-select__inner,
.form-datetime-picker.grey .el-form-item__content .el-input__inner,
.form-datetime-picker.grey .el-form-item__content .el-select__inner,
.form-vat.grey .el-form-item__content .el-input__inner,
.form-vat.grey .el-form-item__content .el-select__inner {
  color: #393f4a;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.formInput.column,
.form-number.column,
.form-select.column,
.form-switch.column,
.form-datetime-picker.column,
.form-vat.column {
  flex-direction: column;
  justify-content: unset;
  align-items: unset;
}
.form-select.grey .el-form-item__content .inputModal {
  background: #F9F9F9 !important;
  box-shadow: none !important;
  border-radius: 8px;
  position: relative;
}
.form-select.grey .el-form-item__content .inputModal:hover .inputModalClear {
  position: absolute;
}
.form-select.grey .el-form-item__content .inputModal > div {
  height: 100%;
  align-items: center;
  justify-content: center;
}
.form-select.grey .el-form-item__content .inputModal.empty .inputModalWrapper {
  color: #afb3ba;
}
.form-select.grey .el-form-item__content .inputModal .inputModalWrapper {
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #393f4a;
  border-radius: 8px;
}
.form-select.grey .el-select__wrapper .el-select__input {
  height: 20px;
}
.form-select.grey .el-select__wrapper .el-select__selected-item {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.form-select.grey .el-select__wrapper .el-select__suffix .el-select__caret:not(.el-select__clear), .form-select.grey .el-select__wrapper .el-select__suffix .el-select__caret > svg {
  width: 20px !important;
  height: 20px !important;
}
.form-select.grey .el-select__input {
  height: 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.form-select.grey:not(.empty) .el-select__wrapper .el-select__selected-item {
  color: #393f4a;
}
.form-datetime-picker.grey .el-form-item__content .el-date-editor .el-input__wrapper {
  padding-left: 2px;
  display: flex;
  gap: 12px;
}
.form-datetime-picker.grey .el-form-item__content .el-date-editor .el-input__prefix {
  background: #fff;
  padding: 8px;
  border-radius: 6px;
  width: 34px;
  height: 34px;
  justify-content: center;
}
.form-datetime-picker.grey .el-form-item__content .el-date-editor .el-input__prefix i {
  margin: 0;
  width: 20px;
  height: 20px;
}
.form-datetime-picker.grey .el-form-item__content .el-date-editor .el-input__prefix i svg {
  width: 20px;
  height: 20px;
}
.form-datetime-picker.grey .el-form-item__content .el-date-editor .el-input__prefix i svg path {
  fill: #393f4a;
}
.form-vat.grey .el-form-item__label {
  display: flex;
  flex-direction: column;
  font-size: 14px !important;
  line-height: 20px !important;
}
.form-vat.grey .el-form-item__label .el-checkbox {
  height: fit-content !important;
}
.form-vat.grey .el-form-item__label .el-checkbox:hover .el-checkbox__input .el-checkbox__inner {
  border-color: #393f4a;
}
.form-vat.grey .el-form-item__label .el-checkbox.is-checked .el-checkbox__label {
  color: #393f4a !important;
}
.form-vat.grey .el-form-item__label .el-checkbox.is-checked .el-checkbox__inner {
  background: #393f4a;
  border-color: #393f4a;
}
.form-vat.grey .el-form-item__label .el-checkbox .el-checkbox__label {
  padding-left: 4px;
  line-height: 16px;
}
.form-vat.grey .el-checkbox__label {
  font-size: 12px;
  font-weight: 400;
  color: #8a909a !important;
  line-height: 1;
}
.form-vat.grey__checkbox {
  margin-inline: 0;
  height: fit-content;
}
.form-select__dropdown {
  border-radius: 12px;
  margin-top: -4px;
  background: #F9F9F9;
  box-shadow: none !important;
  border-color: transparent !important;
}
.form-select__dropdown .el-select-dropdown__list {
  padding: 8px;
}
.form-select__dropdown .el-select-dropdown__item {
  padding: 8px;
  height: 36px;
  color: #393f4a;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  border-radius: 6px;
}
.form-select__dropdown .el-select-dropdown__item:hover {
  background: #eeeef0;
}
.form-select__dropdown .el-popper__arrow {
  display: none;
}
.newScrollStyle::-webkit-scrollbar {
  width: 4px;
  height: 20px;
}
.newScrollStyle::-webkit-scrollbar-thumb {
  background-color: #eee;
  border-radius: 10px;
}
.newScrollStyle::-webkit-scrollbar-thumb:hover {
  background-color: #ddd;
}
.newScrollStyle::-webkit-scrollbar-track {
  background-color: #eee;
  border-radius: 10px;
}
.newScrollStyle {
  scrollbar-width: thin;
  scrollbar-color: lightgrey #eee;
}
.newScrollStyle {
  height: 40svh;
  overflow: auto;
}
@media screen and (max-height: 1079px) {
  .newScrollStyle {
    height: 45svh;
  }
}
@media screen and (max-height: 920px) {
  .newScrollStyle {
    height: 50svh;
  }
}
@media screen and (max-height: 820px) {
  .newScrollStyle {
    height: 55svh;
  }
}
@media screen and (max-height: 768px) {
  .newScrollStyle {
    height: 60svh;
  }
}
.formInput {
  position: relative;
}
.formInput .el-form-item__label {
  padding-bottom: 4px;
  margin-bottom: 0;
}
.formInput__validation-message {
  margin: 0;
  position: absolute;
  transform: translate(0, 100%);
  bottom: -1px;
  left: 0;
  color: #f56c6c;
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
}
.form-select .el-form-item__label {
  padding-bottom: 4px;
  margin-bottom: 0;
}
.formSelect {
  position: relative;
}
.formSelect__validation-message {
  position: absolute;
  transform: translate(0, 100%);
  bottom: -1px;
  left: 0;
  color: #f56c6c;
}
.dashboardCard {
  border-radius: 16px;
  height: 100svh;
  display: flex;
  flex-direction: column;
  background: #15182d;
  color: #a2a5bf;
}
.dashboardCardBody {
  flex: 1;
  padding: 25px;
  display: flex;
  flex-direction: column;
}
.dashboardCardNoWidgets svg {
  margin-right: 30px;
}
.dashboardCard .el-button {
  height: 36px;
}
@media (max-width: 1400px) {
  .dashboardCardBody {
    padding: 20px;
  }
}
@media screen and (max-width: 1280px) {
  .dashboardCard {
    height: unset;
    min-height: max(100svh - 101px, 1300px);
  }
}
@media (max-width: 768px) {
  .dashboardCardNoWidgets {
    display: block;
  }
  .dashboardCardNoWidgets svg {
    margin-right: 0;
  }
}
#rubezhPlan .plans .plan {
  padding: 20px 25px;
  background: #FAFAFA;
  border-radius: 5px;
  margin-bottom: 10px;
}
#rubezhPlan .plans .planHead {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
#rubezhPlan .plans .planHeadTitle {
  font-size: 16px;
  font-weight: 500;
}
#rubezhPlan .plans .planUnderHead {
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
  color: #a2a5bf;
}
#rubezhPlan .plans .planUnderHead div {
  margin-right: 30px;
}
#rubezhPlan .plans .plan .mainPlan {
  font-size: 16px;
  font-weight: 500;
}
#rubezhPlan .plans .tasks {
  margin-top: 15px;
}
#rubezhPlan .plans .tasksEmpty {
  margin-top: 20px;
  text-align: center;
}
#rubezhPlan .plans .tasksEmpty svg {
  height: 120px;
}
#rubezhPlan .plans .tasksHead {
  font-size: 12px;
  color: #a2a5bf;
  margin-bottom: 15px;
  font-weight: 300;
}
#rubezhPlan .plans .tasks .task {
  position: relative;
  margin-bottom: 5px;
}
#rubezhPlan .plans .tasks .task p {
  margin-top: 0;
}
#rubezhPlan .plans .tasks .task:not(.done) .taskName, #rubezhPlan .plans .tasks .task:not(.done) .taskIndex {
  font-weight: 500;
}
#rubezhPlan .plans .tasks .task.done {
  color: #a2a5bf;
}
#rubezhPlan .plans .tasks .task.done .taskIndex {
  text-decoration: line-through;
}
#rubezhPlan .plans .tasks .taskRemoveButton {
  color: #a2a5bf;
}
#rubezhPlan .plans .tasks .taskCheck {
  width: 36px;
  height: 36px;
  position: relative;
  top: 6px;
}
#rubezhPlan .plans .tasks .taskCheck.done {
  background-color: #4e92f7;
  border-color: #4e92f7;
  color: white;
}
#rubezhPlan .production {
  background: white;
  padding: 20px;
  border-radius: 5px;
  border: 1px solid #EBEBEB;
  margin-top: 15px;
}
@media (min-width: 768px) {
  .tasks {
    background: white;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #EBEBEB;
  }
  .tasks .taskActions {
    text-align: right;
  }
  .tasks .taskActions .el-button {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .plan {
    padding: 10px 5px !important;
  }
  .planHead {
    padding-left: 15px;
  }
  .planUnderHead {
    padding-left: 15px;
    display: block !important;
  }
  .planFooter {
    padding-left: 15px;
  }
  .production {
    padding: 15px;
  }
  .tasksHead {
    display: none;
  }
  .tasks .task {
    background: white;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #EBEBEB;
    margin-bottom: 10px;
  }
  .tasks .taskIndex {
    display: none;
  }
  .tasks .taskName {
    margin-bottom: 10px;
  }
}
.TableHeadBlock {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.integrationLogos svg {
  height: 20px;
  position: relative;
  top: 3px;
}
.searchAndFilter {
  gap: 10px;
}
.searchAndFilter .el-input {
  max-width: 300px;
}
.btns-group {
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 12px;
}
.el-table .el-table__cell {
  padding: 6px 0;
}
.el-table th.el-table__cell > .cell {
  font-weight: 400;
  color: #8a909a;
  font-size: 12px;
}
.whiteButton {
  color: #49515f !important;
  border: 1px solid #c9ccd0 !important;
  height: 46px !important;
  padding: 12px 20px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  background: white;
}
.whiteButton:hover {
  background-color: #F9F9F9 !important;
}
.whiteButton--narrow {
  width: 50px;
  margin-left: 12px;
}
.whiteButton svg {
  margin-right: 12px;
  height: 20px;
  stroke: #49515f;
}
.whiteButton svg.mr-0 {
  margin-right: 0;
}
.whiteButton.el-button--default {
  background: white !important;
}
.whiteButton.el-button--default:hover {
  background-color: #eeeef0 !important;
}
.whiteButton.el-button--info {
  background: #eeeef0 !important;
}
.whiteButton.el-button--info:hover {
  background-color: #eeeef0 !important;
}
.dateFilter {
  display: flex;
}
.dateFilter .el-button {
  border-color: #c9ccd0 !important;
}
.dateFilter .el-button span:first-child {
  display: block;
}
.dateFilter .el-button .dateFilterDay {
  font-size: 12px;
  margin-bottom: 2px;
}
.dateFilter .el-button .dateFilterNumber {
  font-size: 10px;
}
.dateFilter .el-button--info {
  background-color: #eeeef0 !important;
}
.dateFilter .el-button--default {
  background-color: white;
}
.dateFilter .el-button--default:hover {
  background-color: #eeeef0 !important;
}
@media (max-width: 620px) {
  .TableHeadBlock .dateFilter {
    display: none;
  }
  .TableHeadBlock .buttonsBlock {
    display: flex;
  }
  .TableHeadBlock .buttonsBlock .el-button {
    width: 100%;
  }
  .TableHeadBlock .el-button span span, .TableHeadBlock .searchAndFilter .el-button:not(.whiteButton) span {
    display: none;
  }
}
.pointInfo {
  position: absolute;
  background: white;
  left: 8px;
  bottom: 41px;
  border-radius: 3px;
  box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.15), 0 2px 5px -3px rgba(0, 0, 0, 0.15);
}
.pointInfoBody {
  padding: 15px;
}
.logisticsInfoMain {
  background: #FAFAFA;
  border-radius: 5px;
}
.logisticsInfoMainBlock {
  display: flex;
  background: #FAFAFA;
  border-radius: 5px;
  overflow: hidden;
}
.logisticsInfoMainMap {
  width: 100%;
  max-width: 450px;
  min-height: 530px;
  max-height: 100%;
  height: 100%;
}
.logisticsInfoMainMap .map {
  min-height: 530px;
  max-height: 100%;
  height: 100%;
}
.logisticsInfoMainMap .map-container {
  position: relative;
  min-height: 530px;
  max-height: 100%;
  height: 100%;
  width: 100%;
}
.logisticsInfoMainMap .map-container .ol-viewport {
  width: 100%;
}
.logisticsInfoMainItems {
  width: 100%;
  padding: 15px 15px 0;
}
.logisticsInfoMainItems .logisticsItem {
  background: white;
  padding: 12px;
  border-radius: 5px;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 10px;
  transition: 0.3s all;
  border: 1px solid white;
}
.logisticsInfoMainItems .logisticsItem.active {
  border: 1px solid #a2a5bf;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.05);
}
.logisticsInfoMainItems .logisticsItem:hover {
  cursor: pointer;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.03);
}
.logisticsInfoMainItems .logisticsItemBody {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.logisticsInfoMainItems .logisticsItem .techImage, .logisticsInfoMainItems .logisticsItem .techImageEmpty {
  width: 50px;
  height: 50px;
  margin-right: 20px;
}
.logisticsInfoMainItems .logisticsItemInfo {
  width: calc(100% - 70px);
}
.logisticsInfoMainItems .logisticsItemDetails span {
  color: #a2a5bf;
  font-weight: 300;
  font-size: 12px;
  line-height: 11px;
  margin-right: 25px;
}
.logisticsInfoMainItems .logisticsItemHead {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}
.logisticsInfoMainItems .logisticsItemHead h2 {
  margin-top: 0;
  margin-bottom: 0;
  color: #000000;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
}
.logisticsInfoMainItems .logisticsItemHead h2 svg {
  height: 14px;
  position: relative;
  margin-left: 10px;
  color: #afb3ba;
  transition: 0.3s all;
}
.logisticsInfoMainItems .logisticsItemHead h2 svg:hover {
  color: #1984e6;
}
.logisticsInfoMainItems .logisticsItemHeadStatus {
  position: relative;
  top: -2px;
}
.logisticsInfoMainItems .logisticsItemHeadStatusText {
  margin-left: 10px;
  font-weight: 300;
  font-size: 12px;
  line-height: 11px;
}
.logisticsInfoMainItems .logisticsItemActiveBody hr {
  margin-top: 15px;
  margin-bottom: 15px;
}
.logisticsInfoMainItems .logisticsItemActiveBodyInfo div span {
  color: #a2a5bf;
  font-weight: 300;
  font-size: 10px;
  line-height: 11px;
}
.logisticsInfoMainItems .logisticsItemActiveBodyInfo div p, .logisticsInfoMainItems .logisticsItemActiveBodyInfo div .animateNumber {
  margin-top: 5px;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #3a3a3a;
}
.bw {
  filter: grayscale(100%) brightness(1.1);
}
.ol-control {
  display: none;
}
@media (max-width: 1200px) {
  .logisticsInfoMainMap {
    width: 750px;
    max-width: 100%;
  }
  .logisticsInfoMainItems .logisticsItemHeadStatusText {
    font-size: 10px;
  }
}
@media (max-width: 767px) {
  .logisticsInfoMainMap {
    display: none;
  }
}
.analyticsCard {
  border: 1px solid #EEEEF0;
  border-radius: 8px;
  margin-bottom: 16px;
  min-height: 128px;
  position: relative;
}
.analyticsCardSummary {
  min-height: 96px;
}
.analyticsCardSummary .analyticsCardMainBlock {
  bottom: 14px;
}
.analyticsCardBig {
  min-height: 148px;
}
.analyticsCardBody {
  padding: 20px;
}
.analyticsCardTopTitle {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  display: block;
  margin-bottom: 12px;
}
.analyticsCardScore {
  background: #0b3d6a;
  border-color: #0b3d6a;
}
.analyticsCardScoreText {
  position: relative;
  left: 8px;
  top: 9px;
}
.analyticsCardScoreText span {
  display: block;
}
.analyticsCardScoreTextLetter {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  font-size: 12px;
  line-height: 12px;
}
.analyticsCardAlerts {
  background: #FDF7E6;
  border-color: #FDF7E6;
}
.analyticsCardAlerts svg {
  position: relative;
  top: 4px;
}
.analyticsCardProblems {
  background: #FEE5E3;
  border-color: #FEE5E3;
}
.analyticsCardProblems svg {
  position: relative;
  top: 4px;
}
.analyticsCardMainBlock {
  position: absolute;
  bottom: 20px;
}
.analyticsCardMainBlockTop {
  position: relative;
  top: -16px;
  left: 1px;
}
.analyticsCardMainBlockTop svg {
  height: 12px;
  position: relative;
  top: 2px;
  transition: 0.2s all;
  transform: rotate(0deg);
}
.analyticsCardMainBlockTop.topDown svg {
  transform: rotate(180deg);
}
.analyticsCardMainBlockRight {
  position: absolute;
  bottom: 20px;
  right: 20px;
}
.analyticsCardEmpty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.analyticsCardEmpty .analyticsCardBody {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
}
.notifications-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 15px;
}
.notifications-head .read-notifications {
  padding: 8px 16px;
  color: #1984E6;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  background: #E8F4FF;
  border-radius: 5px;
  transition: 0.3s;
  cursor: pointer;
}
.notifications-head .read-notifications:hover {
  color: #fff;
  background: #1984E6;
}
.notifications-head .read-notifications.disabled {
  color: #1984E6;
  background: #E8F4FF;
  cursor: not-allowed;
  opacity: 0.7;
}
.notifications-empty {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10rem;
  border: 1px solid #EEEEF0;
  border-radius: 8px;
  box-sizing: border-box;
}
.notifications-empty span {
  display: block;
  margin-top: 15px;
  color: #393F4A;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
}
.notification {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 12px;
  border-top: 1px solid #EEEEF0;
}
.notification:last-child {
  border-bottom: 1px solid #EEEEF0;
}
.notification .date {
  padding: 0 20px;
  color: #22252C;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}
.notification .date .time {
  display: block;
  color: #737A86;
  font-size: 12px;
  font-weight: 400;
}
.notification .content {
  padding: 0 20px;
  font-weight: 500;
  line-height: 1.2;
}
.notification .content .title {
  color: #22252C;
  font-size: 14px;
}
.notification .content .body {
  color: #737A86;
  font-size: 12px;
  font-weight: 400;
}
.notification .btn {
  position: absolute;
  top: 50%;
  right: 12px;
  display: block;
  padding: 6px 12px;
  color: #49515F;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  background: transparent;
  border: 1px solid #C9CCD0;
  border-radius: 4px;
  transform: translateY(-50%);
  transition: 0.3s;
  cursor: pointer;
}
.notification .btn:hover {
  color: #fff;
  background: #C9CCD0;
}
@media screen and (max-width: 768px) {
  .notification {
    display: block;
    padding-left: 70px;
  }
  .notification .icon {
    position: absolute;
    top: 12px;
    left: 12px;
  }
  .notification .date {
    padding: 0 0 5px;
    color: #8A909A;
    font-size: 12px;
    font-weight: 400;
  }
  .notification .date .time {
    display: inline-block;
  }
  .notification .content {
    padding: 0 0 12px;
  }
  .notification .btn {
    position: relative;
    top: unset;
    right: unset;
    width: fit-content;
    transform: unset;
  }
}
.tabs-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.tabs-head .tab-head {
  padding: 8px 16px;
  color: #393F4A;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  background: #fff;
  border: 1px solid #C9CCD0;
  transition: 0.3s;
  cursor: pointer;
}
.tabs-head .tab-head:first-child {
  border-radius: 8px 0 0 8px;
}
.tabs-head .tab-head:last-child {
  border-radius: 0 8px 8px 0;
}
.tabs-head .tab-head.active, .tabs-head .tab-head:hover {
  background: #EEEEF0;
}
.mixTimelineSlider {
  margin-top: -44px;
}
.mixTimelineSlider .el-slider__runway, .mixTimelineSlider .el-slider__bar {
  background-color: transparent !important;
}
.progressSlider .el-slider__runway {
  background-color: transparent !important;
  position: relative;
  z-index: -99999;
}
.progressSlider .el-slider__bar {
  display: none;
}
.progressSlider .el-slider__button-wrapper {
  top: -77px;
}
.progressSliderStatusText {
  background: white;
  display: block;
  width: 30px;
  height: 30px;
  padding: 5px;
  text-align: center;
  border: 1px solid #afb3ba;
  color: #afb3ba;
  border-radius: 50%;
  line-height: 17px;
  font-weight: 500;
}
.progressSliderStatusTextActive {
  border: 1px solid #1984e6;
  color: #1984e6;
}
.progressSliderEl:hover {
  z-index: 999;
}
.progressSliderEl:hover .approximateBlock, .progressSliderEl:hover .approximateTime {
  transition: all 0.1s ease-in;
  background: #fff;
}
.approximateBlock {
  background: white;
  z-index: 2;
}
.approximateTime {
  position: absolute;
  left: -7px;
}
.mixTimeline {
  width: 100%;
  flex-direction: row;
  display: flex;
  padding-bottom: 20px;
  gap: 8px;
}
.mixTimelineItem {
  display: inline-flex;
  align-items: center;
  flex-direction: row;
  position: relative;
  color: #8a909a;
}
.mixTimelineItemIcon {
  position: relative;
  height: 18px;
  width: 18px;
  min-width: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.mixTimelineItemIcon svg {
  position: absolute;
  padding: 5px;
  width: 32px;
}
.mixTimelineItemIconTime {
  position: absolute;
  top: 100%;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  padding: 3px;
  border-radius: 23px;
  z-index: 10;
  margin-top: 2px;
  white-space: nowrap;
  color: #8a909a;
}
.mixTimelineItemPoint {
  position: relative;
  height: 18px;
  width: 18px;
  min-width: 18px;
  display: inline-flex;
  background-color: #c9ccd0;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.mixTimelineItemPoint::after {
  content: "";
  background-color: #fff;
  display: inline-flex;
  position: absolute;
  height: 12px;
  width: 12px;
  border-radius: 50%;
}
.mixTimelineItemPointTime {
  position: absolute;
  top: 100%;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  border-radius: 23px;
  z-index: 10;
  margin-top: 21px;
  white-space: nowrap;
  color: #8a909a;
}
.mixTimelineItemPointLabel {
  position: absolute;
  top: 100%;
  margin-top: 4px;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  white-space: nowrap;
  color: #8a909a;
}
.mixTimelineItemLine {
  width: 100%;
}
.mixTimelineItemLine .el-progress-bar__outer {
  background-color: #b8ddfe !important;
}
.mixTimelineItemDuration {
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: calc(100% - 5px);
  left: 13px;
  right: 0;
  z-index: 1;
  text-align: center;
  font-size: 0.68em;
  font-weight: 500;
}
.mixTimelineItemDuration span {
  background-color: var(--background-card);
  padding: 2px 6px;
  border-radius: 4px;
}
.mixTimelineItemData {
  position: absolute;
  top: 11px;
  width: 100%;
}
.mixTimelineItem:not(:last-child) {
  width: 100%;
}
.mixTimelineItem:first-child .mixTimelineItemPointLabel {
  left: 0;
}
.mixTimelineItem:first-child .mixTimelineItemPointTime {
  left: 0;
}
.mixTimelineItem:last-child .mixTimelineItemPointLabel {
  right: 0;
}
.mixTimelineItem:last-child .mixTimelineItemPointTime {
  right: 0;
}
.tableDivRow {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 20px;
  gap: 20px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-top: 0.5px solid;
  border-bottom: 0.5px solid;
  border-color: #eeeef0;
}
.tableDivRow:hover {
  background: #F9F9F9;
}
.tableDivRowCreated {
  background: #FDF7E6;
}
.tableDivRowCreated:hover {
  background: #F7DE97;
}
.tableDivColumn {
  line-height: 23px;
  padding: 0 12px;
  white-space: nowrap;
  word-wrap: break-word;
}
.tableCustom {
  width: 100%;
  border-spacing: 0;
  border-collapse: separate;
}
.tableCustomHead tr th {
  color: #8a909a;
  font-size: 12px;
  font-weight: 300;
  border-bottom: 1px solid #eeeef0;
  padding: 0 0 5px 0;
}
.tableCustom tbody tr:hover {
  background: #F9F9F9;
}
.tableCustom tbody tr td {
  padding: 6px 0;
  border-bottom: 1px solid #eeeef0;
}
.tableCustomCreated {
  background: #FDF7E6;
}
.tableCustomCreated:hover {
  background: #F7DE97 !important;
}
.dispatchCard {
  background: #F9F9F9;
  border: 1px solid #eeeef0;
  border-radius: 8px;
}
.dispatchIndicator {
  display: flex;
}
.dispatchIndicator svg {
  height: 40px;
}
.dispatchIndicator svg path {
  stroke: #0b3d6a;
}
.dispatchMixer {
  display: block;
  width: 100%;
  margin-bottom: 5px;
}
.dispatchMixerHead {
  background: #F9F9F9;
  padding: 12px 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #F9F9F9;
  border-right: 1px solid #F9F9F9;
  border-left: 1px solid #F9F9F9;
  border-bottom: 1px solid #E8F4FF;
}
.dispatchMixerHead:hover {
  border: 1px solid #66b5fe;
}
.dispatchMixerHeadActive {
  border: 1px solid #b8ddfe;
}
.dispatchMixerHeadNumber {
  width: 90px;
}
.dispatchMixerHeadHR {
  display: block;
  padding-left: 20px;
  padding-right: 20px;
}
.dispatchMixerHeadHRLine {
  display: block;
  width: 1px;
  height: 46px;
  background: rgba(47, 60, 78, 0.1);
}
.dispatchMixerHeadButtons svg path {
  fill: #505968;
}
.dispatchMixerHeadButtons svg:hover {
  cursor: pointer;
}
.dispatchMixerHeadButtons svg:hover path {
  fill: #22252c;
}
.dispatchMixerButton {
  margin-bottom: 0;
  margin-top: 3px;
  height: 24px !important;
  font-size: 12px;
}
.dispatchMixerOrder {
  -ms-flex-positive: 1 !important;
  flex-grow: 1 !important;
  width: 100%;
  padding-right: 20px;
}
.dispatchMixerOrder .d-flex-full {
  margin: 0 -5px;
}
.dispatchMixerOrder .d-flex-full div {
  margin: 0 5px;
}
.dispatchMixerOrderItem:first-child {
  margin-bottom: 3px;
}
.dispatchMap {
  width: 100%;
  max-width: 450px;
  height: 530px;
}
.dispatchMap .map-container {
  position: relative;
  height: 500px;
  width: 100%;
}
.dispatchMap .map-container .ol-viewport {
  width: 100%;
}
.dispatchMap .map {
  width: 100%;
  height: 100%;
  transition: 0.3s all;
}
.info-container__header {
  display: flex;
  align-items: center;
}
.info-container__header__number {
  color: #393F4A;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  margin-left: 8px;
}
.info-container__body {
  margin-top: 8px;
}
.info-container__body__item {
  margin-top: 8px;
}
.info-container__body__item__label {
  color: #393F4A;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}
.info-container__body__item__content {
  color: #737A86;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.changeActiveTabButtons .group-btn {
  width: 44px !important;
  height: 44px !important;
}
.changeActiveTabButtons .group-btn.el-button--info {
  position: relative;
  z-index: 2;
  border: 1px solid #1984e6 !important;
  background-color: #E8F4FF !important;
}
.changeActiveTabButtons .group-btn.el-button--info path {
  stroke: #1984e6 !important;
}
.time-delivery-input {
  height: 36px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 8px;
}
.time-delivery-input.is-required label::before {
  content: "*";
  color: #f56c6c;
  margin-right: 4px;
  display: block;
  font-weight: 400 !important;
  font-size: 12px;
  line-height: 20px;
  height: 20px;
}
.time-delivery-input label {
  width: 185px;
  color: #737a86 !important;
  font-weight: 400 !important;
  position: relative;
  justify-content: flex-start;
  display: flex;
  font-size: 12px;
  font-family: "Ubuntu", sans-serif;
}
.time-delivery-input input {
  border-color: #c9ccd0;
  padding: 1px 11px;
  transform: translateZ(0);
  box-shadow: 0 0 0 1px #eeeef0 inset !important;
  background: #F9F9F9 !important;
  transition: 0s !important;
  border: none;
  border-radius: 4px;
  flex: 1;
  outline: none !important;
  height: inherit;
  font-size: 13px;
  font-family: Arial;
  color: #22252c;
}
.group-order-action-dialog {
  border-radius: 16px !important; /* мягкое скругление */
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.3); /* лёгкая, широкая тень */
  padding: 0 !important;
  overflow: hidden;
}
.group-order-action-dialog .add-shipping__body {
  padding: 40px 30px 0 0;
}
.group-order-action-dialog .add-shipping__body.take-away {
  padding: 40px 30px 0 30px;
}
.group-order-action-dialog__footer {
  margin-top: 16px;
  display: flex;
  justify-content: flex-end;
}
.group-order-action-dialog .el-dialog__header {
  margin-right: 0;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
}
.group-order-action-dialog .editSelectVehicles__createDialog .el-dialog__header {
  position: relative;
}
.group-order-action-dialog__actions {
  max-height: calc(100svh - 6vh) !important;
}
.group-order-action-dialog__actions .el-dialog__header {
  padding-bottom: 0;
}
.group-order-action-dialog__actions .el-dialog__headerbtn {
  z-index: 2;
  width: 38px;
  height: 36px;
  right: 2px;
  top: 2px;
}
.dispatch-order-groups-create-form .el-form-item__label {
  color: #737a86 !important;
  font-weight: 400 !important;
  position: relative;
  top: 9px;
}
.dispatch-order-groups-create-form .el-input__wrapper, .dispatch-order-groups-create-form .el-select__wrapper, .dispatch-order-groups-create-form .el-textarea__inner {
  box-shadow: 0 0 0 1px #eeeef0 inset !important;
  background: #F9F9F9 !important;
  transition: 0s !important;
}
.dispatch-order-groups-create-form .el-input__wrapper:hover, .dispatch-order-groups-create-form .el-select__wrapper:hover, .dispatch-order-groups-create-form .el-textarea__inner:hover {
  box-shadow: 0 0 0 1px #dddde0 inset !important;
}
.dispatch-order-groups-create-form .el-input__inner, .dispatch-order-groups-create-form .el-textarea__inner, .dispatch-order-groups-create-form .el-select__inner {
  color: #22252c !important;
}
.dispatch-order-groups-create-form .el-textarea__inner {
  padding-top: 7px;
}
.dispatch-order-groups-create-form .el-form-item {
  margin-bottom: 8px;
}
.dispatchTableReloadButton {
  position: relative;
  background: none !important;
  border: none !important;
  padding: 0 8px !important;
  margin-left: 0 !important;
}
.mixOrderGroupTable th.el-table__cell {
  background: #F7F7F7 !important;
  border-bottom: 1px solid #EEEEF0 !important;
  padding: 0 !important;
}
.mixOrderGroupTable th.el-table__cell .cell {
  padding: 0;
}
.mixOrderGroupTable .el-table__body tr:hover > td.el-table__cell {
  background-color: #F9F9F9 !important;
}
@media screen and (max-width: 1024px) {
  .mixOrderGroupTable .el-table__body:has(td .cell .dispatchOrderItemTable) {
    height: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .mixOrderGroupTable td:has(.cell .dispatchOrderItemTable) {
    height: 100%;
  }
}
.mixOrderGroupTable td .cell {
  padding: 6px 10px !important;
}
@media screen and (max-width: 1024px) {
  .mixOrderGroupTable td .cell:has(.dispatchOrderItemTable) {
    height: 100%;
  }
}
.mixOrderGroupTable td .cell .table-order-item-container {
  align-items: center;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .mixOrderGroupTable td .cell .table-order-item-container {
    height: 100%;
  }
  .mixOrderGroupTable td .cell .table-order-item-container:has(.dispatchOrderItemTableEmpty) .blockCountOrder {
    position: initial;
    margin-left: 8px;
  }
  .mixOrderGroupTable td .cell .table-order-item-container:has(.dispatchOrderItemTableEmpty) .blockCountOrder .beige-circle {
    border-radius: 100%;
  }
}
.mixOrderGroupTable .group-order-actions {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
}
.mixOrderGroupTable .group-order-actions__progress-container {
  max-width: 170px;
}
@media screen and (max-width: 1024px) {
  .mixOrderGroupTable .group-order-actions {
    flex-direction: column;
    align-items: flex-end;
  }
}
.mixOrderGroupTable .filters-line {
  position: relative;
  display: block;
  width: 1px;
  height: 22px;
  background: #EEEEF0;
  left: 0;
  top: 25%;
}
.mixOrderGroupTable .orders-group-create-link {
  padding: 8px 0;
  background: #1984e6;
  color: white;
  font-weight: 500;
  width: 100%;
  display: block;
  text-align: center;
  height: 100%;
  text-decoration: none;
  font-size: 14px;
}
.mixOrderGroupTable .orders-group-create-link:hover {
  cursor: pointer;
  background: #1b91fd;
}
.mixOrderGroupTable .filters-buttons-item {
  padding: 8px 10px;
  height: 39px !important;
  position: relative;
  margin: 0 !important;
  font-size: 14px;
  width: 100%;
  display: block;
  text-align: left;
  color: #22252c !important;
  border: none !important;
  border-radius: 0 !important;
  transition: 0s !important;
}
.mixOrderGroupTable .filters-buttons-item-hover:hover {
  background: #f1f1f1 !important;
  border-color: #f1f1f1 !important;
  background-color: #f1f1f1 !important;
}
.mixOrderGroupTable .filters-buttons-item-hover:hover svg path {
  fill: #676767;
}
.mixOrderGroupTable .filters-buttons-item svg {
  height: 11px;
  position: absolute;
  top: 14px;
  right: 10px;
}
.mixOrderGroupTable .filters-buttons-item svg path {
  fill: #8F8F8F;
}
.mixOrderGroupTable .action-buttons {
  display: flex;
  justify-content: flex-end;
  height: 28px;
  gap: 6px;
}
@media screen and (max-width: 1024px) {
  .mixOrderGroupTable .action-buttons {
    width: 100%;
    justify-content: space-between;
  }
}
.mixOrderGroupTable .action-buttons .ci-btn {
  min-height: auto;
  font-size: 12px;
  border-radius: 4px;
  height: 28px !important;
  line-height: 28px !important;
  padding: 10px !important;
}
.mixOrderGroupTable .action-buttons .plus-btn {
  border: none;
  width: 32px;
  height: 28px;
  padding: 0;
  justify-content: center;
}
.mixOrderGroupTable .action-buttons .action-btn {
  padding: 0 12px;
}
.mixOrderGroupTable .action-buttons .action-btn--rounded {
  border-radius: 8px !important;
}
.mixOrderGroupTable .action-buttons .icon-btn {
  text-align: center;
  display: block;
  padding: 3px 5px !important;
  border-radius: 8px !important;
}
@media screen and (max-width: 1024px) {
  .mixOrderGroupTable .action-buttons .icon-btn {
    padding: 4px !important;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px !important;
  }
  .mixOrderGroupTable .action-buttons .icon-btn svg {
    width: 20px;
    height: 20px;
  }
}
.mixOrderGroupTable .action-buttons .icon-btn .textXS {
  position: relative;
  padding: 0 5px;
  top: -3px;
}
.mixOrderGroupTable .action-buttons .pause-btn {
  background-color: #E8F4FF;
  color: #1984e6;
}
.mixOrderGroupTable .action-buttons .pause-btn:hover {
  background-color: #d4e3f1;
}
.mixOrderGroupTable .action-buttons .pause-btn:disabled {
  background-color: #E8F4FF;
}
.mixOrderGroupTable .action-buttons .pause-btn svg {
  height: 16px;
  width: 16px;
}
.mixOrderGroupTable .action-buttons .work-btn {
  background-color: #EFBD2D;
  color: white;
}
.mixOrderGroupTable .action-buttons .work-btn:hover {
  background-color: #daac26;
}
.mixOrderGroupTable .action-buttons .work-btn:disabled {
  background-color: #EFBD2D;
}
.mixOrderGroupTable .action-buttons .work-btn svg {
  height: 16px;
  width: 16px;
}
.mixOrderGroupTable .action-buttons .show-btn {
  background-color: white;
  color: #393f4a;
  border: 1px solid #c9ccd0;
}
.mixOrderGroupTable .action-buttons .show-btn:hover {
  background-color: #eeeef0;
}
.mixOrderGroupTable .action-buttons .show-btn:disabled {
  background-color: white;
}
.mixOrderGroupTable .action-buttons .show-btn svg {
  height: 16px;
  width: 16px;
}
.mixOrderGroupTable .action-buttons .complete-btn {
  background-color: #009272;
  color: white;
}
.mixOrderGroupTable .action-buttons .complete-btn:hover {
  background-color: #007f63;
}
.mixOrderGroupTable .action-buttons .complete-btn:disabled {
  background-color: #009272;
}
.mixOrderGroupTable .action-buttons .complete-btn svg {
  height: 16px;
  width: 16px;
}
.group-orders-table {
  border: 1px solid #EEEEF0;
}
.group-orders-table-top {
  padding: 16px 24px;
}
.group-orders-table .el-table__row {
  height: 60px !important;
}
.group-orders-table-filters {
  background: #F7F7F7;
  border-bottom: 1px solid #EEEEF0;
}
.group-orders-table-filters-body {
  padding: 0 0 0 12px;
}
.group-orders-table-filters-body .orders-group__create-link {
  padding: 12px 170px;
  background: #1984e6;
  color: white;
  font-weight: 500;
}
.group-orders-table-filters-body .orders-group__create-link:hover {
  cursor: pointer;
  background: #1b91fd;
}
.group-orders-table-filters-buttons {
  display: flex;
}
.group-orders-table-filters-buttons-item {
  padding: 8px 12px;
  position: relative;
}
.group-orders-table-filters-buttons-item:hover {
  cursor: pointer;
  background: #f1f1f1;
}
.group-orders-table-filters-buttons-item:hover svg path {
  fill: #676767;
}
.group-orders-table-filters-buttons-item:before {
  content: "";
  display: block;
  width: 1px;
  height: 22px;
  background: #EEEEF0;
  left: 0;
  top: 25%;
  position: absolute;
}
.group-orders-table-filters-buttons-item svg {
  padding-left: 80px;
  height: 11px;
  position: relative;
  top: 2px;
}
.group-orders-table-filters-buttons-item svg path {
  fill: #8F8F8F;
}
.group-orders-status-text {
  font-size: 12px;
  border: 1px solid;
  border-color: #c9ccd0;
  padding: 0 8px;
  text-align: center;
  background: #F9F9F9;
  border-radius: 4px;
  height: 24px;
  line-height: 22px;
  display: inline-block;
  font-weight: 400;
  flex-shrink: 0;
}
.group-orders-status-text-unconfirmed {
  border-color: #ecaf02;
  color: #ecaf02;
  background: #FDF7E6;
}
.group-orders-status-text-queue {
  border-color: #49a7fd;
  color: #49a7fd;
  background: white;
}
.group-orders-status-text-confirmed {
  border-color: #1984e6;
  color: #1984e6;
  background: white;
}
.group-orders-status-text-work {
  border-color: #1367B4;
  color: #1367B4;
  background: #E8F4FF;
}
.group-orders-status-text-done {
  border-color: #009272;
  color: #009272;
  background: #e6faf6;
}
.group-orders-status-text-completed {
  border-color: #006750;
  color: #006750;
  background: white;
}
.group-orders-status-text-failed {
  border-color: #f74539;
  color: #f74539;
  background: white;
}
.group-orders-status-text-pause {
  border-color: #e27612;
  color: #e27612;
  background: #FDF7E6;
}
.group-orders-status-text-small {
  font-size: 10px;
  padding: 0 6px;
  height: 20px;
  line-height: 18px;
}
.group-orders-summary {
  border: 1px solid #EEEEF0;
  border-bottom: none;
}
.group-orders-summary-body {
  padding: 16px 24px;
}
@media screen and (max-width: 1280px) {
  .group-orders-summary-body {
    padding-block: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .group-orders-summary-body {
    padding-inline: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .group-orders-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .group-orders-info svg {
    display: none;
  }
}
.order-quantity .el-progress-bar {
  width: 100%;
}
.order-quantity .el-progress__text {
  display: none;
}
.order-quantity-total {
  position: relative;
  top: -1px;
  font-size: 13.5px;
  min-width: fit-content;
}
@media screen and (max-width: 1024px) {
  .order-quantity-total {
    font-size: 10.5px;
  }
}
.orders__item__block {
  padding-bottom: 5px;
  padding-top: 5px;
  border-bottom: 1px solid #eeeef0;
}
.orders__item__block:hover {
  background: #fafafa;
}
.ordersTable::-webkit-scrollbar {
  width: 4px;
  height: 20px;
}
.ordersTable::-webkit-scrollbar-thumb {
  background-color: #eee;
  border-radius: 10px;
}
.ordersTable::-webkit-scrollbar-thumb:hover {
  background-color: #ddd;
}
.ordersTable::-webkit-scrollbar-track {
  background-color: #eee;
  border-radius: 10px;
}
.ordersTable {
  scrollbar-width: thin;
  scrollbar-color: lightgrey #eee;
}
@media screen and (max-width: 1400px) {
  .ordersTable .cell {
    padding-inline: 8px;
  }
}
.ordersTable tbody > tr:hover > td {
  background-color: #fafafa;
}
.ordersTableBorder td, .ordersTable thead th {
  border-bottom: 1px solid #ebeef5;
}
.ordersTableItemGPSIcon {
  padding-top: 5px;
}
.ordersTableItemGPSIcon svg:not(.ordersTableItemGPSIconOnline) path {
  stroke: #f74539 !important;
}
.ordersTableItemGPSIcon svg.ordersTableItemGPSIconOnline path {
  stroke: #009272 !important;
}
.ordersTableItem {
  color: #afb3ba;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.ordersTableItem svg {
  margin-right: 5px;
}
.ordersTableItem svg path {
  stroke: #afb3ba;
}
.ordersTableItemIconBlock {
  width: 16px;
  height: 16px;
  margin-right: 5px;
}
.ordersTableItemIconBlockFill svg path {
  stroke: none !important;
  fill: #afb3ba;
}
.ordersTableItemConfirm {
  color: #393f4a;
}
.ordersTableItemConfirm.primary600 {
  color: #1984e6;
}
.ordersTableItemConfirm svg path {
  stroke: #393f4a;
}
.ordersTableItemConfirm .ordersTableItemIconBlockFill svg path {
  stroke: none !important;
  fill: #393f4a;
}
.ordersTableItemConfirm .ordersTableItemIconBlock.ordersTableItemGPSIcon svg:not(.ordersTableItemGPSIconOnline) path {
  stroke: #f74539 !important;
}
.ordersTableItemConfirm .ordersTableItemIconBlock.ordersTableItemGPSIcon svg.ordersTableItemGPSIconOnline path {
  stroke: #009272 !important;
}
.ordersTableItemConfirm.ordersTableItemSub {
  color: #737a86 !important;
}
.ordersTableItemConfirm.ordersTableItemSub svg path {
  stroke: #737a86 !important;
}
.ordersTableItemConfirm.ordersTableItemSub .ordersTableItemIconBlockFill svg path {
  stroke: none !important;
  fill: #737a86 !important;
}
.ordersTableItemNavButton {
  cursor: pointer;
  display: flex;
  color: #1984e6 !important;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  padding: 8px 16px;
  align-items: center;
  border-radius: 4px;
  background: #E8F4FF;
  border: none !important;
}
.ordersTableItemNavButton:hover {
  background: #d8eafa;
}
.ordersTableItemNavButton svg {
  margin-right: 5px;
}
.ordersTableItemNavButton svg path {
  stroke: #1984e6 !important;
}
.ordersTableItem__car {
  display: flex;
  align-items: center;
}
.ordersTableItem__car span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ordersTableItem__car svg {
  margin-right: 5px;
}
.ordersTableItemTimeSeparator {
  margin: 0 4px;
}
.ordersTableItem__market-time {
  display: flex;
  align-items: center;
}
.ordersTableItem__market-time svg {
  position: relative;
}
.ordersTableItem__loading-time {
  display: flex;
  align-items: center;
}
.ordersTableItem__loading-time svg {
  position: relative;
}
.ordersTableItem__mix {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  min-width: 110px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.ordersTableItem__mix svg {
  margin-right: 5px;
  position: relative;
}
.ordersTableItem__mix span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media screen and (max-width: 1250px) {
  .ordersTableItem {
    white-space: nowrap;
  }
}
.dispatchOrderItemTable {
  color: #22252c;
  font-weight: 400;
  border: 1px solid white;
  border-radius: 11px;
  background: white;
}
@media screen and (max-width: 1024px) {
  .dispatchOrderItemTable {
    height: 100%;
  }
}
.dispatchOrderItemTable:hover {
  cursor: pointer;
  border: 1px solid #eeeef0;
}
@media screen and (max-width: 1024px) {
  .dispatchOrderItemTable {
    flex: 1;
    border: 1px solid #eeeef0;
  }
}
.dispatchOrderItemTableNext {
  background: #f4f4f4;
  border: 1px solid #f4f4f4;
}
.dispatchOrderItemTableNext:hover {
  background: white;
}
.dispatchOrderItemTableBody {
  padding: 8px 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: flex-end;
}
@media screen and (max-width: 1024px) {
  .dispatchOrderItemTableBody {
    padding: 8px;
    height: 100%;
    gap: 6px;
  }
}
@media screen and (max-width: 1024px) {
  .dispatchOrderItemTableHeader {
    padding-left: 8px;
    align-self: center;
  }
}
.dispatchOrderItemTableContent {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: start;
  padding-inline: 6px;
}
@media screen and (max-width: 1024px) {
  .dispatchOrderItemTableContentNumber {
    text-align: start;
    padding-right: 0 !important;
    align-self: center;
  }
}
.dispatchOrderItemTableContentInfoNotConfirm {
  position: absolute;
  right: -7px;
  top: -3px;
}
@media screen and (max-width: 1024px) {
  .dispatchOrderItemTableContentInfoNotConfirm {
    position: relative;
    top: 0;
    right: 0;
  }
}
@media screen and (max-width: 1024px) {
  .dispatchOrderItemTableContentInfo {
    width: 100%;
    justify-content: space-between;
  }
  .dispatchOrderItemTableContentInfo div:first-child div {
    padding: 0;
  }
}
@media screen and (max-width: 1024px) {
  .dispatchOrderItemTableContent {
    flex-direction: column-reverse;
    gap: 6px;
  }
}
.dispatchOrderItemTableFooter {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  gap: 5px;
}
@media screen and (max-width: 1024px) {
  .dispatchOrderItemTableFooter {
    flex-direction: column;
    gap: 4px;
  }
}
.dispatchOrderItemTableStatus {
  border-radius: 6px;
  background: #F3F3F3;
  height: 24px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .dispatchOrderItemTableStatus {
    margin-right: 0 !important;
    width: 100%;
  }
}
.dispatchOrderItemTableStatusBody {
  padding: 0 6px;
}
@media screen and (max-width: 1024px) {
  .dispatchOrderItemTableStatusBody {
    margin-right: 0;
    text-align: center;
    overflow: auto;
    flex: 1;
  }
}
.dispatchOrderItemTableStatusBlock {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  color: #22252c;
  font-weight: 400;
  position: relative;
  z-index: 2;
  white-space: nowrap;
}
.dispatchOrderItemTableStatusBlockIcon {
  margin-left: 3px;
  position: relative;
  width: 18px;
  height: 18px;
}
.dispatchOrderItemTableStatusBack {
  display: block;
  height: 30px;
  background: #E4E4E4;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 1;
}
.dispatchOrderItemTableStatusCurrent {
  flex: 1;
}
.dispatchOrderItemTableNext .dispatchOrderItemTableStatus {
  border: 1px solid #e1e1e1;
}
.dispatchOrderItemTableStatus-loading {
  background: #E8F4FF;
}
.dispatchOrderItemTableStatus-loading .dispatchOrderItemTableStatusBack {
  background: #C7E2FA;
}
.dispatchOrderItemTableStatus-delivery {
  background: #FCE7F3;
}
.dispatchOrderItemTableStatus-delivery .dispatchOrderItemTableStatusBack {
  background: #FBCFE8;
}
.dispatchOrderItemTableStatus-object {
  background: #f7eeff;
}
.dispatchOrderItemTableStatus-object .dispatchOrderItemTableStatusBack {
  background: #E6D0FA;
}
.dispatchOrderItemTableStatus-pouring {
  background: #f7eeff;
}
.dispatchOrderItemTableStatus-pouring .dispatchOrderItemTableStatusBack {
  background: #E6D0FA;
}
.dispatchOrderItemTableStatus-return {
  background: #EEF2FF;
}
.dispatchOrderItemTableStatus-return .dispatchOrderItemTableStatusBack {
  background: #C7D2FE;
}
.dispatchOrderItemTableStatus-done {
  background: #e6faf6;
}
.dispatchOrderItemTableStatus-done .dispatchOrderItemTableStatusBack {
  background: #C5F5EA;
}
.dispatchOrderItemTableStatusWait {
  color: #505968;
}
.dispatchOrderItemTableStatusWait.dispatchOrderItemTableStatus-loading {
  background: rgb(216.5, 224, 231.5);
}
.dispatchOrderItemTableStatusWait.dispatchOrderItemTableStatus-loading .dispatchOrderItemTableStatusBack {
  background: #c8d7e5;
}
.dispatchOrderItemTableStatusWait.dispatchOrderItemTableStatus-delivery {
  background: rgb(226.5, 217.5, 225.5);
}
.dispatchOrderItemTableStatusWait.dispatchOrderItemTableStatus-delivery .dispatchOrderItemTableStatusBack {
  background: rgb(226, 205.5, 220);
}
.dispatchOrderItemTableStatusWait.dispatchOrderItemTableStatus-object, .dispatchOrderItemTableStatusWait.dispatchOrderItemTableStatus-pouring {
  background: rgb(224, 221, 231.5);
}
.dispatchOrderItemTableStatusWait.dispatchOrderItemTableStatus-object .dispatchOrderItemTableStatusBack, .dispatchOrderItemTableStatusWait.dispatchOrderItemTableStatus-pouring .dispatchOrderItemTableStatusBack {
  background: rgb(215.5, 206, 229);
}
.dispatchOrderItemTableStatusWait.dispatchOrderItemTableStatus-return {
  background: rgb(219.5, 223, 231.5);
}
.dispatchOrderItemTableStatusWait.dispatchOrderItemTableStatus-return .dispatchOrderItemTableStatusBack {
  background: #c8cfe7;
}
.ordersTableItem-notConfirm {
  color: #afb3ba !important;
}
.ordersTableItem-new {
  color: #393f4a;
}
.ordersTableItem-loading {
  color: #1984e6;
}
.ordersTableItem-delivery {
  color: #BE185D;
}
.ordersTableItem-object, .ordersTableItem-pouring {
  color: #ae54fe;
}
.ordersTableItem-return {
  color: #4F46E5;
}
.ordersTableItem-done {
  color: #009272;
}
.statusCheck {
  height: 28px;
  margin-right: 6px;
}
.statusCheck .el-checkbox__label {
  color: #393f4a !important;
  font-weight: 400 !important;
  font-size: 12px !important;
}
.statusCheck {
  border-color: #eeeef0 !important;
}
.statusCheck:hover {
  border-color: #8a909a !important;
}
.statusCheck.is-checked.statusCheckActive {
  border-color: #afb3ba !important;
}
.statusCheck.is-checked.statusCheckActive:hover {
  border-color: #8a909a !important;
}
.statusCheck:not(.statusCheckActive) .el-checkbox__label {
  color: #8a909a !important;
}
.statusCheck:not(.statusCheckActive) {
  border-color: #eeeef0 !important;
}
.statusCheck:not(.statusCheckActive):hover {
  border-color: #c9ccd0 !important;
}
.statusCheck .el-checkbox__inner:after {
  border-color: white !important;
}
.statusCheck-new.is-checked .el-checkbox__inner {
  background-color: #393f4a !important;
  border-color: #393f4a !important;
}
.statusCheck-loading.is-checked .el-checkbox__inner {
  background-color: #1984e6 !important;
  border-color: #1984e6 !important;
}
.statusCheck-delivery.is-checked .el-checkbox__inner {
  background-color: #EC4899 !important;
  border-color: #EC4899 !important;
}
.statusCheck-object.is-checked .el-checkbox__inner, .statusCheck-pouring.is-checked .el-checkbox__inner {
  background-color: #ae54fe !important;
  border-color: #ae54fe !important;
}
.statusCheck-return.is-checked .el-checkbox__inner {
  background-color: #4F46E5 !important;
  border-color: #4F46E5 !important;
}
.statusCheck-done.is-checked .el-checkbox__inner {
  background-color: #009272 !important;
  border-color: #009272 !important;
}
.statusCheckHead {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1399px) {
  .statusCheckHead {
    display: block;
  }
  .statusCheckHead button {
    margin-bottom: 15px;
  }
}
.orderNotConfirm {
  border: 1px solid #afb3ba;
  transition: 0.2s all;
}
.orderNotConfirm:hover {
  border: 1px solid #505968 !important;
}
.orderNotConfirm:hover .orderNotConfirmIconColor {
  fill: rgb(73.6, 81.88, 95.68);
  transition: fill 0.3s ease-in-out;
}
.orderNotConfirmIcon path, .orderNotConfirmIconColor {
  fill: #505968;
}
.orderNotConfirmText {
  color: #505968;
}
.orderNotConfirmActual {
  border: 1px solid #EFBD2D;
}
.orderNotConfirmActual:hover {
  border: 1px solid #f4d16c !important;
}
.orderNotConfirmActual:hover .orderNotConfirmIconColor {
  fill: #ecaf02;
  animation: blink 0.7s ease-in-out 3;
}
@keyframes blink {
  0% {
    fill: #ecaf02;
  }
  20% {
    fill: rgb(226.56, 168, 1.92);
  }
  50% {
    fill: rgb(207.68, 154, 1.76);
  }
  80% {
    fill: rgb(226.56, 168, 1.92);
  }
  100% {
    fill: #ecaf02;
  }
}
.orderNotConfirmActual .orderNotConfirmIcon path, .orderNotConfirmActual .orderNotConfirmIconColor {
  fill: #ecaf02;
}
.orderNotConfirmActual .orderNotConfirmText {
  color: #ecaf02;
}
.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 5px;
}
@media screen and (max-width: 1440px) {
  .summary-order-groups-container {
    align-items: center;
    height: 100%;
  }
}
@media screen and (max-width: 1280px) {
  .summary-order-groups-container {
    border-right: 1px solid #eeeef0;
    padding-inline: 0 !important;
  }
}
@media screen and (max-width: 1024px) {
  .summary-order-groups-container {
    height: 52px;
    gap: 8px;
  }
}
@media screen and (max-width: 440px) {
  .summary-order-groups-container {
    gap: 4px;
  }
}
.y-map {
  background: #F9F9F9;
}
.order-groups {
  display: flex;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .order-groups {
    gap: 8px;
  }
}
@media screen and (max-width: 440px) {
  .order-groups {
    gap: 4px;
  }
}
.order-groups__icon {
  margin-right: 9px;
  margin-top: auto;
  margin-bottom: auto;
  width: 20px;
}
@media screen and (max-width: 1024px) {
  .order-groups__icon {
    width: 16px;
    margin-right: 0;
  }
}
.order-groups__info {
  margin-top: 5px;
  margin-bottom: 5px;
}
@media screen and (max-width: 1024px) {
  .order-groups__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
}
.order-groups__info__title {
  color: #393F4A;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
}
@media screen and (max-width: 1024px) {
  .order-groups__info__title {
    font-size: 14px;
    line-height: 16px;
  }
}
.order-groups__info__desc {
  color: #1984E6;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 133.333% */
}
@media screen and (max-width: 1024px) {
  .order-groups__info__desc {
    font-size: 12px;
    line-height: 14px;
  }
}
.order-groups__info__desc--yellow {
  color: #FFB500;
  font-size: 12px;
  font-weight: 400;
}
.hover-row:hover {
  background-color: #F9F9F9;
}
.add-shipping__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.add-shipping__header__title {
  margin-bottom: 24px;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  padding: 20px 40px 0 20px;
}
.add-shipping__header__actions {
  display: flex;
}
.add-shipping__header__actions__back-previous {
  cursor: pointer;
  color: #1984E6;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  display: flex;
  align-items: center;
}
.add-shipping__header__actions__update {
  margin-left: 16px;
  display: flex;
  cursor: pointer;
  padding: 8px 16px;
  align-items: center;
  gap: 4px;
  border-radius: 4px;
  background: #E8F4FF;
}
.add-shipping__header__actions__update svg {
  margin-right: 8px;
}
.add-shipping__content {
  padding: 24px;
  gap: 16px;
  align-self: stretch;
  border-radius: 12px;
  border: 1px solid #eeeef0;
}
.add-shipping__content__hr {
  border-top: 1px solid #CCC;
  margin: 16px 0;
}
.add-shipping__content__error-title {
  color: #393F4A;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}
.add-shipping__content__error-desc {
  color: #49515F;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.add-shipping__content__error-desc__to-schedule {
  display: flex;
  padding: 6px 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  border-radius: 8px;
  border: 1px solid #C9CCD0;
  background: #FFF;
  text-decoration: none;
  color: #49515F;
}
.add-shipping__content--error {
  background: rgba(247, 69, 57, 0.05);
}
.add-shipping__content__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.add-shipping__content__header__title {
  color: #393F4A;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}
.add-shipping__content__header .ci-btn {
  line-height: 34px;
  font-weight: 500;
  min-height: 32px;
  font-size: 12px;
}
@media screen and (max-width: 870px) and (min-width: 768px) {
  .add-shipping__content__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
.add-shipping__content__delivery {
  display: flex;
  align-items: center;
}
.add-shipping__content__delivery__item {
  margin-right: 32px;
}
.add-shipping__content__delivery__item__total {
  width: 62px;
  margin-bottom: 0;
}
.add-shipping__content__delivery__item__label {
  color: #49515F;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  margin-bottom: 5px;
}
.add-shipping__content__delivery__item__data svg {
  margin-right: 5px;
}
.add-shipping__content__order-terms__title {
  color: #8a909a;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.add-shipping__content__order-terms__title:last-child {
  margin-bottom: 0;
}
.add-shipping__content__order-terms__title__item {
  display: flex;
  align-items: center;
  margin-right: 10px;
  color: #49515F;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}
.add-shipping__content__order-terms__title__item__icon {
  margin-right: 6px;
  width: 16px;
  height: 16px;
  min-width: 16px;
}
.add-shipping__content__order-terms__item {
  margin-top: 12px;
  display: flex;
}
.add-shipping__content__order-terms__item__icon {
  margin-right: 5px;
}
.add-shipping__content__order-terms__item__title {
  color: #49515F;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}
.add-shipping__comments .el-button {
  height: fit-content !important;
}
.add-shipping__comments hr {
  border-top: 1px solid #CCC;
  margin-block: 15px;
}
.add-shipping__footer {
  justify-content: flex-end;
  display: flex;
  padding: 20px;
}
.add-shipping__loader {
  height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.border-blue {
  border: 1px solid #409EFF !important;
}
.documentPrints {
  gap: 15px;
}
.documentPrints .document {
  width: 190px;
}
.documentPrints__order-checkboxes .el-checkbox-group {
  max-height: 60svh;
  overflow: hidden auto;
}
.documentPrints__order-checkboxes .el-checkbox-group .el-checkbox__label {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.documentPrints .el-checkbox {
  height: auto !important;
  align-items: flex-start !important;
}
.documentPrints .el-checkbox:hover img {
  border: 1px solid #e1e1e1;
}
.documentPrints .el-checkbox:hover p {
  color: #22252c;
}
.documentPrints .is-checked p {
  color: #1984e6 !important;
}
.documentPrints .is-checked img {
  border: 1px solid #ccc !important;
}
.documentPrints .document img {
  height: 220px;
  border-radius: 5px;
  border: 1px solid #f5f5f5;
  transition: 0.2s all;
}
.documentPrints .document p {
  color: #49515f;
}
.content__delivery {
  display: flex;
  align-items: center;
  width: 100%;
}
.content__delivery > .d-flex {
  gap: 25px;
}
.content__delivery__item__total {
  width: 100px;
  min-width: 100px;
  height: 40px;
}
.content__delivery__item__label {
  color: #49515F;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  margin-right: 4px;
}
.content__delivery__item__data {
  color: #49515f;
  height: 26px;
  display: flex;
  justify-content: start;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
}
.content__delivery__item__data svg {
  margin-right: 5px;
}
.content__delivery__item__text {
  font-weight: 500;
  font-size: 16px;
}
.content__delivery__button {
  padding: 4px 8px;
  width: 42px !important;
  margin-left: 8px !important;
}
.content__delivery__button:hover {
  border-color: #606266;
}
.content__delivery__button svg {
  width: 20px;
  height: 20px;
  margin: 0 !important;
}
.content__delivery__button:disabled {
  color: #c9ccd0;
}
.content__delivery__button:disabled:hover {
  color: #c9ccd0;
}
.content__delivery__footer {
  justify-content: flex-end;
  margin-top: 25px;
  display: flex;
}
.content__delivery__tooltip--status {
  max-width: 230px;
}
.content__delivery__tooltip--redirection {
  max-width: 270px;
}
.addDeliveryForm {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 10px;
}
.addDeliveryFormItem {
  display: flex;
  background: #F7F7F8;
  border-radius: 8px;
  padding: 2px;
  border: 1px solid #F7F7F8;
  overflow: hidden;
  margin-bottom: 15px;
  color: #49515f;
}
.addDeliveryFormItem:hover {
  border: 1px solid #eeeeee;
}
.addDeliveryFormItemIcon {
  background: white;
  border-radius: 6px;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.addDeliveryFormItemSeparator {
  display: block;
  height: 2px;
  width: 100%;
  position: relative;
  top: 20px;
  background: #505968;
}
.addDeliveryFormItemInputText {
  display: flex;
  align-items: center;
  padding: 0 11px;
  white-space: nowrap;
}
.addDeliveryFormItem .el-input-number {
  width: 100% !important;
}
.addDeliveryFormItem .el-input {
  height: 36px;
  border: none !important;
  --el-input-border-color: transparent !important;
}
.addDeliveryFormItem .el-input__wrapper, .addDeliveryFormItem textarea {
  background: #f7f7f8;
  box-shadow: none !important;
}
.addDeliveryFormItem .el-input-number__increase {
  background: white;
  border-radius: 6px 6px 2px 2px !important;
  border-color: transparent !important;
}
.addDeliveryFormItem .el-input-number__decrease {
  background: white;
  border-radius: 2px 2px 6px 6px !important;
  border-color: transparent !important;
}
.addDeliveryFormTotal .el-input-number.is-controls-right .el-input__wrapper {
  padding-left: 3px;
  padding-right: 33px;
}
.addDeliveryFormLabel {
  color: #8a909a;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 16px;
  margin-bottom: 8px;
}
.addDeliveryFormData {
  font-size: 16px;
  line-height: 20px;
  color: #22252c;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
}
.addDeliveryFormData svg {
  margin-right: 5px;
}
.time-select {
  border-radius: 8px;
  overflow: hidden;
  margin: 0;
}
.time-select .el-input {
  border: none !important;
  --el-input-border-color: none !important;
}
.time-select .el-input__wrapper {
  background-color: #F7F7F8;
}
.time-select .el-input__wrapper:focus-visible {
  outline: none;
}
.time-select .el-input__wrapper:hover {
  box-shadow: none;
}
.time-select .el-input.is-disabled .el-input__wrapper {
  box-shadow: none;
}
.time-select.neutral200 .el-input__inner {
  color: #afb3ba !important;
}
.time-select.neutral800 .el-input__inner {
  color: #2c3139 !important;
}
body .el-drawer .mix-create-title {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
body .el-drawer .mix-create-title h3 {
  text-align: left;
  font-size: 24px;
  color: #22252C !important;
  padding: 0;
  margin: 0 0 32px 0;
}
.mixer-create .el-drawer__header {
  padding: 20px 32px 0;
}
.mixer-create .el-drawer__body {
  padding: 0 32px 32px;
}
.mixer-create .inputModal {
  --el-border-radius-base: 8px;
  border-radius: 8px;
}
.mixer-create .el-form-item__label {
  color: #505968 !important;
}
.mixer-create .el-table .cell {
  padding: 5px 1px 0 0;
}
.mixer-create .sub-title {
  margin: -20px 0 30px 0;
}
.mixer-create .vehicleButton {
  padding: 12px 24px;
}
.driverFormItem .el-select__wrapper {
  font-size: 13px;
  font-weight: 400;
  padding: 4px 12px;
}
.driverFormItem .el-select__wrapper .el-select__placeholder {
  color: #22252c;
}
.driverFormItem .el-select__wrapper .el-select__placeholder.is-transparent {
  color: #a8abb2;
}
.driverFormItem .el-select__wrapper.el-select__wrapper {
  height: auto !important;
  min-height: 40px;
}
.el-overlay-dialog {
  justify-content: center;
  align-items: center;
  display: flex;
}
.filterSelect .el-select__wrapper {
  height: 46px !important;
  border-radius: 8px !important;
}
.filterSelect .el-select--large .el-select__wrapper {
  min-height: 46px;
}
.filterSelectNew .el-select__wrapper {
  height: 46px !important;
  border-radius: 4px !important;
  background: white !important;
}
.filterSelectNew .el-select--large .el-select__wrapper {
  min-height: 46px;
}
.dispatchSelectGoods {
  background: #F9F9F9;
  margin-block: 5svh;
  max-height: 90svh;
  min-height: 80svh;
  overflow: auto;
}
@media (max-height: 870px) {
  .dispatchSelectGoods {
    min-height: 88svh;
  }
}
.dispatchSelectGoods .el-table--enable-row-hover .el-table__body tr:hover > td.el-table__cell {
  background-color: #F9F9F9;
}
.dispatchSelectGoodsTableBody {
  height: 75svh;
  background: white;
  box-shadow: 0 0 0 1px #eeeef0 inset !important;
}
.dispatchSelectGoodsTableBody:hover {
  box-shadow: 0 0 0 1px #dddde0 inset !important;
}
.dispatchSelectGoodsTableBody {
  border-radius: 10px;
  padding: 15px 20px 20px;
}
@media (max-height: 870px) {
  .dispatchSelectGoodsTableBody {
    height: 70svh;
  }
}
.dispatchSelectGoodsTableBodyBlock {
  height: 72svh;
  display: flex;
  flex-direction: column;
}
@media (max-height: 870px) {
  .dispatchSelectGoodsTableBodyBlock {
    height: 62svh;
  }
}
.dispatchSelectGoods__body {
  border-radius: 10px;
}
.dispatchSelectGoods__body::-webkit-scrollbar {
  width: 4px;
  height: 20px;
}
.dispatchSelectGoods__body::-webkit-scrollbar-thumb {
  background-color: #eee;
  border-radius: 10px;
}
.dispatchSelectGoods__body::-webkit-scrollbar-thumb:hover {
  background-color: #ddd;
}
.dispatchSelectGoods__body::-webkit-scrollbar-track {
  background-color: #eee;
  border-radius: 10px;
}
.dispatchSelectGoods__body {
  scrollbar-width: thin;
  scrollbar-color: lightgrey #eee;
}
.dispatchSelectGoods__body {
  height: 75svh;
  overflow: auto;
}
@media (max-height: 870px) {
  .dispatchSelectGoods__body {
    height: 70svh;
  }
}
.dispatchSelectGoodsSearch .el-input__wrapper {
  background: white !important;
}
.dispatchSelectGoods #emptyState {
  padding-bottom: 20px;
}
.dispatchSelectGoods__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dispatchSelectGoodsFiltersBlock {
  width: 280px;
  height: 75svh;
  display: flex;
  flex-direction: column;
}
@media (max-height: 870px) {
  .dispatchSelectGoodsFiltersBlock {
    height: 70svh;
  }
}
.dispatchSelectGoodsRadioGroup .el-checkbox .el-checkbox__label {
  color: #49515f;
}
.dispatchSelectGoodsRadioGroup .el-checkbox .el-checkbox__inner {
  transition: 0s !important;
}
.dispatchSelectGoodsRadioGroup .el-checkbox:hover .el-checkbox__label {
  color: #22252c;
}
.dispatchSelectGoodsRadioGroup .el-checkbox:hover .el-checkbox__inner {
  border-color: #c9ccd0;
}
.dispatchSelectGoodsRadioGroup .el-checkbox.is-checked .el-checkbox__label {
  color: #22252c;
}
.switcherBlock {
  border: 1px solid #EEEEEE;
  background: #F9F9F9;
  border-radius: 12px;
}
.switcherBlock .active {
  border: 1px solid #EEEEF0;
  background: #FFFFFF;
  border-radius: 12px;
  color: #1984e6;
}
.switcherBlock .switcher div {
  cursor: pointer;
  padding: 12px 24px;
}
.time-input-select .el-input {
  width: 90px;
}
.error {
  color: #f74539;
}
.error-border .el-input__wrapper, .error-border .el-select__wrapper, .error-border .el-textarea__inner, .error-border .inputModal, .error-border .inputModalWrapper {
  box-shadow: 0 0 0 1px #f56c6c inset !important;
}
.error-border .el-input__wrapper:hover, .error-border .el-select__wrapper:hover, .error-border .el-textarea__inner:hover, .error-border .inputModal:hover, .error-border .inputModalWrapper:hover {
  box-shadow: 0 0 0 1px #f56c6c inset !important;
}
.driverFormItem.inputModal {
  border-radius: 4px !important;
}
.addDeliveryFormItem.addDeliveryVolume .el-input-number {
  width: 260px !important;
}
.addDeliveryFormTooltip {
  max-width: 250px;
  white-space: normal;
  font-size: 12px;
  line-height: 16px;
}
.addDeliveryFormCol .questionIcon, .addDeliveryFormCol .editIcon {
  margin-bottom: 15px;
  min-width: 20px;
  height: 20px;
  cursor: pointer;
}
.addDeliveryFormItem {
  position: relative;
}
.addDeliveryFormItem.disabled .addDeliveryFormItemInputText {
  opacity: 0.6;
}
.addDeliveryFormItem.editDriverComment {
  margin-bottom: 0;
  margin-right: 4px;
}
.addDeliveryFormItem.editDriverComment .addDeliveryFormItemInputText {
  padding: 0 11px;
  width: 100%;
}
.addDeliveryFormItem.editDriverComment .addDeliveryFormItemIcon {
  flex-shrink: 0;
  min-height: 36px;
  height: auto;
}
.addDeliveryFormItem.editDriverComment .el-textarea {
  width: 100%;
}
.addDeliveryFormItem.editDriverComment .el-textarea .el-textarea__inner {
  padding: 0;
}
.addDeliveryFormItem.editDriverComment .el-button {
  height: fit-content !important;
}
.new-mixer .el-input .el-input__wrapper, .new-mixer .el-select__wrapper, .new-mixer .inputModalWrapper {
  height: 40px !important;
  padding-inline: 12px;
}
.lab-spec-create__common-spec .lab-spec-item {
  gap: 6px;
}
.lab-spec-item {
  gap: 15px;
}
.lab-spec-item .el-form-item {
  margin-bottom: 0 !important;
}
.buyer-circle {
  margin-left: 4px;
  margin-right: 4px;
  vertical-align: middle;
}
.date-picker-container {
  max-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.date-picker-container .summary-date-picker .custom-date-picker__control {
  flex-wrap: wrap;
  row-gap: 2px;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}
.date-picker-container .summary-date-picker .custom-date-picker__display {
  padding: 0;
  border: none;
  background: transparent;
  min-height: auto;
  font-size: 12px;
  color: #393f4a;
  box-shadow: none;
}
.date-picker-container .summary-date-picker .custom-date-picker__display:hover {
  background: transparent;
  border-color: transparent;
}
.date-picker-container .summary-date-picker .custom-date-picker__display:focus-visible {
  box-shadow: none;
}
.date-picker-container .summary-date-picker .custom-date-picker__display--centered {
  min-width: 70px;
}
.date-picker-container .summary-date-picker .custom-date-picker__icon {
  display: none;
}
.date-picker-container .summary-date-picker .custom-date-picker__nav {
  width: 16px;
  height: 16px;
  border: none;
  background: transparent;
  color: #737a86;
  box-shadow: none;
}
.date-picker-container .summary-date-picker .custom-date-picker__nav--double {
  width: 18px;
}
.date-picker-container .summary-date-picker .custom-date-picker__today {
  padding: 0;
  border: none;
  background: transparent;
  min-height: auto;
  font-size: 11px;
  color: #1984e6;
  box-shadow: none;
}
.date-picker-container .summary-date-picker.is-open .custom-date-picker__display {
  box-shadow: none;
}
.date-picker-container .summary-date-picker .custom-date-picker__dropdown {
  min-width: 220px;
}
.date-picker-container .summary-date-picker .custom-date-picker__text--summary {
  gap: 1px;
}
.date-picker-container .summary-date-picker .custom-date-picker__label {
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0;
  text-align: left;
  color: #1984e6;
  margin-left: 19px;
  width: 120px;
}
.summary {
  justify-content: space-between;
}
.summary .el-col {
  flex: initial;
}
@media screen and (max-width: 1280px) {
  .summary__empty {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .summary .el-col .order-groups {
    justify-content: start;
  }
}
@media screen and (max-width: 1280px) {
  .summary {
    padding-block: 8px;
    display: grid;
    grid-template-columns: 0.7fr 0.7fr 1fr 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: "summary-date-picker . . ." "summary-mix-orders summary-orders summary-vehicles summary-mixers";
    gap: 24px 12px;
  }
  .summary .date-picker-container {
    grid-area: summary-date-picker;
  }
  .summary__orders {
    grid-area: summary-orders;
  }
  .summary__orders .order-groups {
    min-width: 110px;
  }
  .summary__mix-orders {
    grid-area: summary-mix-orders;
  }
  .summary__mix-orders .order-groups {
    min-width: 110px;
  }
  .summary__vehicles {
    grid-area: summary-vehicles;
  }
  .summary__vehicles .order-groups {
    min-width: 75px;
  }
  .summary__mixers {
    grid-area: summary-mixers;
  }
  .summary__mixers .summary-order-groups-container {
    border-right: none;
  }
  .summary__mixers .order-groups {
    min-width: 75px;
  }
}
@media screen and (max-width: 1024px) {
  .summary {
    grid-template-columns: 0.8fr 0.8fr 1.2fr 1.2fr;
    grid-template-areas: "summary-date-picker . . ." "summary-mix-orders summary-orders summary-vehicles summary-mixers";
    gap: 12px;
  }
}
@media screen and (max-width: 880px) {
  .summary {
    grid-template-columns: 110px 1fr 1.5fr;
    grid-template-areas: "summary-date-picker summary-mix-orders summary-vehicles" ". summary-orders summary-mixers";
  }
  .summary__vehicles .summary-order-groups-container {
    border-right: none;
  }
}
@media screen and (max-width: 560px) {
  .summary {
    grid-template-columns: 170px 1fr;
    grid-template-areas: "summary-date-picker summary-date-picker" "summary-orders summary-vehicles" "summary-mix-orders summary-mixers";
  }
  .summary__mixers .summary-order-groups-container {
    border-right: none;
  }
}
@media screen and (max-width: 440px) {
  .summary {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto 52px 52px;
    grid-template-areas: "summary-date-picker ." "summary-orders summary-mix-orders" "summary-vehicles summary-vehicles" "summary-mixers summary-mixers";
    gap: 20px 8px;
  }
}
.blockCountOrder {
  display: block;
  min-width: 26px;
  position: relative;
  left: -6px;
}
@media screen and (max-width: 1024px) {
  .blockCountOrder {
    position: absolute;
    top: 7px;
    right: 11px;
    margin-left: 0;
  }
}
.beige-circle {
  background-color: rgb(249, 234, 192);
  height: 20px;
  font-size: 12px;
  padding: 2px 3px;
  border-radius: 4px;
  align-content: center;
  color: #505968;
  width: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.beige-circle:hover {
  color: #22252c;
}
@media screen and (max-width: 1024px) {
  .beige-circle {
    min-width: 32px;
    height: 32px;
    border-radius: 0;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 8px;
    color: #22252c;
    text-align: center;
  }
}
.algorithmGoalButtons {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.algorithmGoalButtons .el-radio {
  display: flex;
  flex-direction: row-reverse;
  gap: 10px;
  align-items: flex-start;
  justify-content: space-between;
  width: 320px;
  background: #FAFAFA;
  padding: 16px 18px !important;
  border-radius: 5px;
  border: 1px solid #eeeef0;
  height: auto !important;
  position: relative;
  text-decoration: none;
  margin-bottom: 15px;
  margin-right: 15px;
  white-space: normal;
  color: #3a3a3a;
  align-self: stretch;
}
.algorithmGoalButtons .el-radio:hover:not(.is-checked) {
  border: 1px solid #dddde0;
}
.algorithmGoalButtons .el-radio__label {
  width: 100%;
}
.algorithmGoalButtons .title {
  font-size: 14px;
  font-weight: 500;
  display: block;
  color: #22252c !important;
}
.algorithmGoalButtons .description {
  margin-top: 6px;
  display: block;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: #49515f !important;
}
.algorithmGoalButtons .schema {
  font-size: 14px;
  font-weight: 500;
  display: block;
  margin-top: 18px;
  color: #22252c !important;
}
.dispatchActualOrders {
  border-radius: 10px;
  background: #F9F9F9;
  margin-top: 10px;
  border: 1px solid #eeeef0;
}
.dispatchActualOrdersBody {
  padding: 10px;
}
.dispatchActualOrdersBlock {
  background: white;
}
.dispatchActualOrdersButtonBlock td {
  background: #E8F4FF;
  padding: 8px 0;
  border-bottom: 1px solid #ebeef5;
}
.dispatchActualOrdersButtonBlock td:hover {
  background: #b8ddfe;
  background-color: #b8ddfe !important;
}
.dispatchActualOrdersButtonBlock:hover {
  background: #9fc6ea;
  background-color: #9fc6ea;
}
.dispatchActualOrdersButtonHistory td {
  background: #F9F9F9;
  padding: 8px 0;
  border-bottom: 1px solid #ebeef5;
}
.dispatchActualOrdersButtonHistory td:hover {
  background: #eeeef0;
  background-color: #eeeef0 !important;
}
.dispatchActualOrdersButtonHistory:hover {
  background: #dedee3;
  background-color: #dedee3;
}
@media (max-width: 1280px) {
  .dispatchCardBody {
    position: relative;
    padding: 0 !important;
  }
}
.scrollTable::-webkit-scrollbar {
  width: 4px;
  height: 20px;
}
.scrollTable::-webkit-scrollbar-thumb {
  background-color: #eee;
  border-radius: 10px;
}
.scrollTable::-webkit-scrollbar-thumb:hover {
  background-color: #ddd;
}
.scrollTable::-webkit-scrollbar-track {
  background-color: #eee;
  border-radius: 10px;
}
.scrollTable {
  scrollbar-width: thin;
  scrollbar-color: lightgrey #eee;
}
.scrollTable {
  height: 60svh;
  overflow-y: scroll;
}
.tableWithScroll::-webkit-scrollbar {
  width: 4px;
  height: 20px;
}
.tableWithScroll::-webkit-scrollbar-thumb {
  background-color: #eee;
  border-radius: 10px;
}
.tableWithScroll::-webkit-scrollbar-thumb:hover {
  background-color: #ddd;
}
.tableWithScroll::-webkit-scrollbar-track {
  background-color: #eee;
  border-radius: 10px;
}
.tableWithScroll {
  scrollbar-width: thin;
  scrollbar-color: lightgrey #eee;
}
.tableWithScroll {
  height: 40svh;
  overflow: auto;
}
@media screen and (max-height: 1079px) {
  .tableWithScroll {
    height: 45svh;
  }
}
@media screen and (max-height: 920px) {
  .tableWithScroll {
    height: 50svh;
  }
}
@media screen and (max-height: 820px) {
  .tableWithScroll {
    height: 55svh;
  }
}
@media screen and (max-height: 768px) {
  .tableWithScroll {
    height: 60svh;
  }
}
.customTableStyles .el-table__inner-wrapper th.el-table__cell > .cell {
  font-weight: 400;
  color: #afb3ba;
  font-size: 13px;
}
.customTableStyles .el-table__inner-wrapper thead tr th {
  padding-block: 0;
}
.customTableStyles .el-table__inner-wrapper thead tr th .cell {
  padding-inline: 8px;
}
.customTableStyles .el-table__inner-wrapper tbody tr td .cell {
  padding-inline: 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
}
.crm-details {
  border: 1px solid #EEEEF0;
}
.crm-details-body {
  padding: 0 24px;
}
.crm-details-block {
  display: flex;
  flex-direction: row;
  justify-content: left;
  gap: 30px;
}
.crm-details-block-left {
  width: 350px;
  padding: 15px 0;
}
.crm-details-block-right {
  border-left: 1px solid #EEEEF0;
  padding: 5px 0 5px 30px;
  width: 100%;
  overflow: hidden;
}
.crm-details-block-bottom {
  border-top: 1px solid #EEEEF0;
  padding: 15px 0;
}
.manager-items .manager-item {
  margin: 5px 0;
  padding: 5px 0;
  border-bottom: 1px solid #EEEEF0;
}
.crmContractTable .searchNew .el-input__wrapper {
  height: 36px !important;
}
.crm-event {
  display: block;
  margin: 10px 0;
  padding: 12px;
  border-radius: 4px;
  border: 1px solid #EEEEF0;
  background: #F9F9F9;
}
.crm-event-done {
  border-color: #009272 !important;
  background: #e6faf6 !important;
}
.crm-event-canceled {
  border-color: #c9ccd0 !important;
  background: #eeeef0 !important;
}
.crm-buttons .el-button--success {
  color: #fff;
  background-color: #009272 !important;
  border-color: #009272 !important;
}
.crm-buttons .el-button--success:hover {
  background-color: #00d0a3 !important;
  border-color: #00d0a3 !important;
}
.serviceBtn.serviceBtn {
  height: 24px !important;
  display: block;
}
.serviceIcon {
  position: relative;
  stroke: #afb3ba;
  width: 24px;
  height: 24px;
  display: block;
}
.serviceIconBig {
  stroke: #49515f;
}
.serviceIconConfirm {
  stroke: #009272;
}
.serviceTable .el-button + .el-button {
  margin-left: 8px;
}
@media (max-width: 1300px) {
  .crm-details-body {
    padding: 0 14px;
  }
  .crm-details-block-left {
    width: 160px;
    padding: 10px 0;
  }
  .crm-details-block-right {
    padding: 5px 0 5px 15px;
  }
}
.about-driver-info {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 19px;
  margin-left: 20px;
}
.about-driver-info .text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-driver-info .text {
  margin: 0;
}
.about-driver-info .text:last-child {
  font-size: 10px;
}
.edit-volume-input {
  margin-left: 4px;
}
.edit-volume-input__input {
  max-height: 24px;
}
.edit-volume-input__input.el-input-number {
  width: 64px;
}
.edit-volume-input .el-input-number.is-controls-right .el-input__wrapper {
  padding-left: 4px;
  padding-right: 24px;
}
.edit-volume-input .el-input-number.is-controls-right .el-input__wrapper.is-focus {
  box-shadow: 0 0 0 1px #1984e6 inset;
  border-color: #1984e6;
}
.edit-volume-input .el-input__inner {
  color: #1984e6 !important;
  font-size: 16px !important;
  font-family: "Ubuntu";
  font-weight: 500 !important;
  line-height: 24px;
  height: 24px !important;
}
.edit-volume-input .el-input-number__increase, .edit-volume-input .el-input-number__decrease {
  width: 12px !important;
  height: 12px !important;
}
.edit-volume-input .el-input-number__increase i.el-icon svg, .edit-volume-input .el-input-number__decrease i.el-icon svg {
  margin-right: 0 !important;
  width: 10px;
  height: 10px;
}
.edit-volume-input__button {
  width: 24px !important;
  height: 24px !important;
  margin: 0 !important;
  padding: 0 !important;
  min-height: initial !important;
  border-radius: 4px;
  align-items: center;
}
.edit-volume-input__button.el-button--primary.is-plain {
  background: #ecf5ff;
}
.edit-volume-input__button i.el-icon {
  width: 14px;
  height: 14px;
}
.edit-volume-input__button i.el-icon svg {
  margin-right: 0;
}
/* Общие стили для виджетов */
.widget-card {
  height: 100%;
  background: #17172C;
  display: flex;
  flex-direction: column;
  padding: 16px;
  /* Фон лоадера для виджетов */
}
.widget-card .el-loading-mask {
  background-color: rgba(23, 23, 44, 0.9);
}
/* Заголовок виджета */
.widget-header {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.widget-title {
  color: #FFFFFF;
  font-family: Ubuntu, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
}
.widget-divider {
  height: 1px;
  background: #EEEEF0;
  width: 100%;
}
/* Основной контент */
.widget-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
/* Состояние без данных */
.no-data-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #8b8d97;
}
.no-data-text {
  margin-top: 8px;
  font-size: 14px;
}
/* Индикатор загрузки */
.loading-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  color: #8b8d97;
}
.loading-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid #3e4152;
  border-top: 3px solid #14CAC4;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 16px;
}
.loading-text {
  font-size: 14px;
}
/* Hover эффекты для таблиц */
.factories-table .factory-row {
  transition: all 0.3s ease;
}
.factories-table .factory-row:hover {
  background-color: #1f2340 !important;
}
.factories-table .factory-row.active:hover {
  background-color: #252849 !important;
}
.mixers-table-body .mixer-row {
  transition: all 0.3s ease;
}
.mixers-table-body .mixer-row:hover {
  background-color: #13162a;
  box-shadow: 0 2px 24px 0 #26293e;
}
@media screen and (max-width: 767px) {
  .widget-title,
  .widget-card-title {
    font-size: 18px;
    max-width: 80%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#main.driver {
  padding-top: 0;
  background-color: #EEEEF0;
  overflow-y: auto !important;
  padding-left: 0;
}
#main.driver aside {
  display: none;
}
#main.driver .el-loading-mask {
  background-color: #EEEEF0 !important;
}
.driver-bg {
  background-color: #EEEEF0;
}
.driver #content {
  padding: 0 16px;
}
.driver .el-radio-button:first-child .el-radio-button__inner {
  border-left: 1px solid #c9ccd0;
  border-radius: 8px 0 0 8px;
}
.driver .el-radio-button:last-child .el-radio-button__inner {
  border-radius: 0 8px 8px 0;
}
.driver .el-radio-button__original-radio:checked + .el-radio-button__inner {
  color: #393f4a;
  background-color: #c9ccd0;
  border-color: #c9ccd0;
  box-shadow: -1px 0 0 0 #c9ccd0;
}
.driver .card-body {
  padding: 16px !important;
}
.driver #mobile-header {
  margin: 0;
  border-radius: 0;
}
.driver #mobile-menu {
  height: 100%;
}
.driver .justify-center {
  justify-content: center;
}
.driver .justify-between {
  justify-content: space-between;
}
.driver .align-items {
  align-items: center;
}
.driver .text.single-line {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#main.mix-driver {
  padding: 0;
  background-color: #eeeef0;
  min-height: 100svh;
}
#main.mix-driver aside {
  display: none;
}
#main.mix-driver .el-loading-mask {
  background-color: #eeeef0 !important;
}
@media screen and (max-width: 360px) {
  #main.mix-driver .header {
    flex-direction: column;
  }
}
.mix-driver-bg {
  background-color: #eeeef0;
}
.mix-driver #content {
  padding: 18px 10px;
}
.mix-driver #mobile-header {
  margin: 0;
  border-radius: 0;
}
.mix-driver #mobile-menu {
  height: 100%;
}
.mix-driver-task p {
  margin-block: 0;
}
.mix-driver-task_unconfirmed .time-info-container, .mix-driver-task_unconfirmed .location-info {
  opacity: 0.4;
}
.mix-driver-task .time-info, .mix-driver-task .delivery-info {
  border: 1px solid #EEEEF0;
}
.mix-driver-task .delivery-info {
  flex: 1;
}
.mix-driver-task .labels .label:last-child {
  border-top-right-radius: 8px;
}
.mix-driver-task .time {
  font-size: 36px;
}
.mix-driver-task .location-item:first-child {
  border-radius: 4px;
}
.mix-driver-task .location-item:last-child {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.mix-driver-task .location-item svg {
  flex-shrink: 0;
}
.mix-driver-task-actual p {
  margin-block: 0;
}
.mix-driver-task-actual_unconfirmed {
  opacity: 0.4;
}
.mix-driver-task-actual .time-info-container {
  border: 1px solid #EEEEF0;
}
.mix-driver-task-actual .time-info, .mix-driver-task-actual .delivery-info {
  padding: 8px;
}
.mix-driver-task-actual .time-info {
  border-bottom: inherit;
}
.mix-driver-task-actual .time {
  font-size: 36px;
  color: inherit;
}
.mix-driver-task-actual .labels .label:last-child {
  border-top-right-radius: 8px;
}
.mix-driver-task-actual .location-item .factory {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.mix-driver-task-actual .location-item svg {
  flex-shrink: 0;
}
.mix-driver-task-actual .location-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.mix-driver-task-actual .location-item:last-child {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.mix-driver-task-actual .dot {
  background: #dadada;
  width: 4px;
  height: 4px;
}
.mix-driver-task-actual .status-text {
  font-size: 11px;
  border: 1px solid;
  border-color: #c9ccd0;
  padding: 4px 8px;
  text-align: center;
  background: #f9f9f9;
  border-radius: 4px;
}
.mix-driver-task-actual .status__title {
  color: #1984e6;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}
.mix-driver-task-actual .pump__title {
  color: #ecaf02;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}
.mix-driver-task-actual .task__title {
  display: flex;
}
.mix-driver-task-actual .task__title__item {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 200px;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
}
.mix-driver-task-actual .task__title__separator {
  margin: 0 2px;
}
.mix-driver-task-detailed {
  display: flex;
  flex-direction: column;
}
.mix-driver-task-detailed p {
  margin-block: 0;
}
.mix-driver-task-detailed__header {
  padding-bottom: 18px;
  display: flex;
  gap: 8px;
  border: none;
  cursor: pointer;
}
.mix-driver-task-detailed__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mix-driver-task-detailed__body-info {
  margin-bottom: 0;
  padding: 4px;
  border-radius: 12px;
  background: #fff;
}
.mix-driver-task-detailed__body-text {
  padding-left: 8px;
  font-size: 12px;
  line-height: 20px;
  color: #8a909a;
}
.mix-driver-task-detailed__body-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mix-driver-task-detailed__body-card:first-child {
  flex: 1;
}
.mix-driver-task-detailed__body-card:last-child > div {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.mix-driver-task-detailed__body-card-loading {
  padding: 7px;
  display: flex;
  gap: 8px;
  align-items: center;
  background: #F9F9F9;
  font-weight: 500;
  font-size: 16px;
  line-height: 19.2px;
  color: #393f4a;
  border-radius: 4px 4px 4px 8px;
  min-height: 48px;
  flex: 1;
}
.mix-driver-task-detailed__body-card-sequence {
  padding: 5px 7px;
  border: 1px solid #EEEEF0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  border-radius: 4px 4px 8px 4px !important;
  gap: 8px;
  flex: 1;
  cursor: pointer;
}
.mix-driver-task-detailed__body-card-sequence p {
  font-size: 30px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: -0.02em;
  color: #1984e6;
}
.mix-driver-task-detailed__body-card-location {
  border-radius: 4px 4px 8px 8px;
  border: 1px solid #EEEEF0;
}
.mix-driver-task-detailed__body-card-location > div {
  gap: 4px;
}
.mix-driver-task-detailed__body-card-location > div:not(last-child) {
  border-bottom: 1px solid #EEEEF0;
}
.mix-driver-task-detailed__body-card-location > div:last-child {
  border-bottom: none;
}
.mix-driver-task-detailed__body-card-pump, .mix-driver-task-detailed__body-card-location {
  display: flex;
  flex-direction: column;
}
.mix-driver-task-detailed__body-card-pump > div, .mix-driver-task-detailed__body-card-location > div {
  padding: 7px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  color: #393f4a;
  font-size: 16px;
  line-height: 19.2px;
  min-height: 48px;
}
.mix-driver-task-detailed__body-card-pump a, .mix-driver-task-detailed__body-card-pump svg, .mix-driver-task-detailed__body-card-location a, .mix-driver-task-detailed__body-card-location svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.mix-driver-task-detailed__body-card-pump {
  gap: 4px;
}
.mix-driver-task-detailed__body-card-pump > div {
  gap: 8px;
  border-radius: 4px;
}
.mix-driver-task-detailed__body-card-pump > div:last-child {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  border: 1px solid #EEEEF0;
}
.mix-driver-task-detailed__body-card-payment, .mix-driver-task-detailed__body-card-comment {
  display: flex;
  padding: 8px;
  border-radius: 4px;
  display: flex;
  gap: 4px;
  color: #393f4a;
  background: #F9F9F9;
  min-height: 48px;
}
.mix-driver-task-detailed__body-card-payment p, .mix-driver-task-detailed__body-card-comment p {
  hyphens: auto;
  word-wrap: break-word;
}
.mix-driver-task-detailed__body-card-comment {
  justify-content: center;
}
.mix-driver-task-detailed__body-card-payment {
  align-items: center;
}
.mix-driver-task-detailed .linked-shipments-list .linked-shipment-card {
  border: 1px solid #EEEEF0;
}
.mix-driver-task-detailed .linked-shipments-list .linked-shipment-card--active {
  border-color: #1984e6;
  border-width: 1.5px;
}
.linked-badge .label__icon {
  width: 14px;
  height: 14px;
}
.mix-driver-queue-modal {
  padding-inline: 10px;
  font-family: "Ubuntu";
  position: fixed;
  background: #f5f6f8;
  display: flex;
  flex-direction: column;
  min-height: calc(100svh - 48px);
  text-align: center;
  right: 0;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.mix-driver-queue {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mix-driver-queue-modal {
  padding: 4px 8px 16px;
  background: #fff;
}
.mix-driver-queue-modal p {
  margin-block: 0;
}
.mix-driver-queue-modal__header {
  padding-block: 18px;
  display: flex;
  gap: 8px;
  border: none;
  cursor: pointer;
}
.mix-driver-queue-modal__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: auto;
}
.mix-driver-queue-modal__body-header {
  display: flex;
  gap: 8px;
}
.mix-driver-queue-modal__body-header-item {
  text-align: start;
}
.mix-driver-queue-modal__body-header-item:first-child {
  min-width: 64px;
  padding-left: 8px;
}
@media screen and (max-width: 640px) {
  .mix-driver-queue-modal__body-header-item:first-child {
    min-width: 36px;
  }
}
.mix-driver-queue-modal__body-header-item:last-child {
  padding-right: 8px;
  width: max-content;
}
.mix-driver-queue-modal__body-list {
  margin-block: 0;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  height: 100%;
  overflow: auto;
}
.mix-driver-queue-modal__body-item {
  padding: 10px 8px;
  list-style: none;
  text-align: start;
  display: flex;
  gap: 8px;
  background: #F9F9F9;
  color: #8a909a;
}
.mix-driver-queue-modal__body-item:first-child, .mix-driver-queue-modal__body-item:last-child {
  background: none;
  color: #49515f;
  border: 1px solid #EEEEF0;
}
.mix-driver-queue-modal__body-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.mix-driver-queue-modal__body-item:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.mix-driver-queue-modal__body-item-content:first-child {
  min-width: 56px;
}
@media screen and (max-width: 640px) {
  .mix-driver-queue-modal__body-item-content:first-child {
    min-width: 28px;
  }
}
.mix-driver-queue-modal__body-item-vehicle {
  display: flex;
  gap: 4px;
  flex: 1;
}
body .el-dialog.approve-modal {
  margin: 0;
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
}
.approve-modal {
  font-family: "Ubuntu";
  background: #f5f6f8;
  display: flex;
  align-items: center;
  flex-direction: column;
  height: calc(100svh - 48px);
  text-align: center;
  justify-content: center;
  z-index: 2;
}
.approve-modal__title {
  margin: 20px 0;
  font-size: 16px;
  line-height: 24px;
}
.approve-modal p {
  font-size: 24px;
  margin: 0;
  margin-bottom: 40px;
}
.approve-modal__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.approve-modal .el-button {
  width: 350px;
  font-size: 24px;
  height: 60px !important;
  margin: 0 !important;
  font-weight: 500;
  border-radius: 12px;
}
@media (max-width: 425px) {
  .approve-modal .el-button {
    width: 100%;
  }
}
.approve-modal .el-button:first-child {
  background: #1984e6;
  color: #fff;
}
.approve-modal .el-button:last-child {
  background: #e8f4ff;
  color: #1984e6;
}
.button-order-height {
  height: 60px !important;
}
.mix-driver-task-timeline .el-progress {
  margin-bottom: 4px;
  position: relative;
}
.mix-driver-task-timeline .el-progress:before, .mix-driver-task-timeline .el-progress:after {
  content: "";
  width: 8px;
  height: 8px;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  border-radius: 50%;
}
.mix-driver-task-timeline .el-progress:after {
  background: #fff;
  border: 2px solid #b8ddfe;
  right: 0;
}
.mix-driver-task-timeline .el-progress:before {
  background: #1b91fd;
  left: 0;
}
.mix-driver-task-timeline__timer span {
  color: inherit;
}
.mix-driver-task-timeline--completed .el-progress:after {
  background: #1b91fd;
  border: none;
  right: 0;
}
.mix-driver-task-timeline .el-progress-bar__outer {
  background: #b8ddfe;
  max-height: 4px;
}
html {
  box-sizing: border-box;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}
html, body {
  margin: 0;
}
table {
  table-layout: fixed;
  border-spacing: 0;
  border-collapse: collapse;
}
thead {
  display: table-header-group;
}
tfoot {
  display: table-row-group;
}
tr {
  page-break-inside: avoid;
}
td {
  vertical-align: top;
}
.page-break {
  page-break-after: always !important;
}
body {
  margin: 0;
  font-family: "Ubuntu", "Roboto", "PT Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  color: #a2a5bf;
  text-align: left;
  background-color: white;
}
#main {
  padding-left: 64px;
  overflow: hidden;
  min-height: 100%;
  position: relative;
  z-index: 10;
}
aside {
  background: #111428;
  color: #747689;
  position: fixed;
  display: flex;
  flex-direction: column;
  width: 64px;
  left: 0;
  bottom: 0;
  top: 0;
  z-index: 2001;
  transition: width 0.3s ease;
}
aside .link span.title {
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  transition-delay: 0s;
}
aside .naviHide {
  opacity: 0;
  transition: 0.15s ease-in-out;
  display: block;
}
aside #navigation-footer-buttons > *:not(.escape-opacity), aside .object-selector {
  opacity: 0;
  display: none;
}
aside:hover {
  width: 236px;
  transition: width 0.2s ease;
  transition-delay: 0.3s;
}
aside:hover .link span.title {
  opacity: 1;
  transition-delay: 0.3s;
}
aside:hover .naviHide {
  opacity: 1;
  transition-delay: 0.3s;
}
aside:hover #navigationFooter #navigation-footer-buttons {
  padding-left: 24px;
  transition-delay: 0.3s;
}
aside:hover #navigationFooter #navigation-footer-buttons > *, aside:hover #navigationFooter #navigation-footer-buttons .object-selector {
  transition: 0.3s ease-in-out;
  transition-delay: 0.3s;
  opacity: 1;
}
aside:hover #navigationFooter #navigation-footer-buttons > * {
  display: flex;
  transition-delay: 0.3s;
}
aside:hover #navigationFooter #navigation-footer-buttons .object-selector {
  display: block;
  transition-delay: 0.3s;
}
#content {
  position: relative;
  left: 0;
}
@media (max-width: 1024px) {
  #content {
    padding-bottom: 100px;
  }
}
.topBreadcrumbHead {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 133.333% */
  color: #22252c;
}
.topBreadcrumbLink, .topBreadcrumbLink .el-breadcrumb__inner, .topBreadcrumbLink .el-breadcrumb__separator {
  font-size: 12px !important;
  font-style: normal;
  font-weight: 400 !important;
  line-height: 16px; /* 133.333% */
  color: #8a909a !important;
}
#headTabs {
  background: #F9F9F9;
  padding-inline: 25px;
  display: flex;
  gap: 12px;
}
#headTabsBlock::-webkit-scrollbar {
  width: 4px;
  height: 20px;
}
#headTabsBlock::-webkit-scrollbar-thumb {
  background-color: #eee;
  border-radius: 10px;
}
#headTabsBlock::-webkit-scrollbar-thumb:hover {
  background-color: #ddd;
}
#headTabsBlock::-webkit-scrollbar-track {
  background-color: #eee;
  border-radius: 10px;
}
#headTabsBlock {
  scrollbar-width: thin;
  scrollbar-color: lightgrey #eee;
}
#headTabsBlock .headTab {
  padding: 12px 24px;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  color: #505968;
  text-decoration: none !important;
  border-radius: 12px 12px 0 0;
}
#headTabsBlock .headTab:hover {
  color: #2c3139;
  background: #f5f4f4;
  cursor: pointer;
}
#headTabsBlock .headTabActive {
  background: white !important;
  color: #1984e6;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
#headTabsBlock .headTabActive:hover {
  color: #1b91fd;
}
#headTabsBlock {
  border: 1px solid #eeeef0;
  background: #F9F9F9;
  display: inline-flex;
  border-bottom: none;
  overflow: auto;
  border-radius: 12px 12px 0 0;
}
#mobile-bottom-bar-wrapper {
  display: flex;
  position: fixed;
  width: 100%;
  z-index: 9;
  bottom: 0;
  height: 80px;
  padding: 4px 24px 16px 24px;
  background-color: #111428;
  align-items: center;
  justify-content: center;
}
#mobile-bottom-bar-wrapper .mobile-bottom-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #747687;
  text-decoration: none;
  min-width: 64px;
  min-height: 60px;
  cursor: pointer;
  font-size: 12px;
  line-height: 16px;
}
#mobile-bottom-bar-wrapper .mobile-bottom-bar-item:first-child {
  margin-right: auto;
}
#mobile-bottom-bar-wrapper .mobile-bottom-bar-item:last-child {
  margin-left: auto;
}
#mobile-bottom-bar-wrapper .mobile-bottom-bar-item svg {
  stroke: #747687;
  width: 100%;
  max-width: 24px;
  margin-bottom: 4px;
}
#mobile-bottom-bar-wrapper .mobile-bottom-bar-item.router-link-exact-active:not(.router-link-exact-active__menu-opened) {
  color: #fff;
}
#mobile-bottom-bar-wrapper .mobile-bottom-bar-item.router-link-exact-active:not(.router-link-exact-active__menu-opened) svg {
  stroke: #fff;
}
#loading {
  opacity: 0;
}
#application.loading #loading {
  opacity: 1;
}
#application.loading #content {
  opacity: 0.8;
}
.dark-bg {
  background: #111428;
}
#emptyState {
  width: 100%;
  display: block;
  text-align: center;
  margin-top: 70px;
  padding-bottom: 50px;
}
#emptyStateMix {
  width: 100%;
  display: block;
  text-align: center;
  background: #F9F9F9;
  padding: 30px;
  border-radius: 16px;
}
.goodUnit sup {
  position: relative;
  top: -5px;
}
.impesonate-leav {
  position: fixed;
  right: 0;
  top: 48%;
  padding: 10px 5px;
  background: #fff;
  border: black 1px double;
}
.first-letter {
  color: #1984e6;
  font-weight: bold;
}
body.dark-mode {
  filter: invert(1);
  background-color: black;
  height: 100vh;
}
@media screen and (max-width: 768px) {
  html::-webkit-scrollbar {
    width: 6px;
    height: 6px;
  }
  html::-webkit-scrollbar-corner {
    background-color: transparent;
  }
  html::-webkit-scrollbar-track {
    background-color: #2a2d3a;
    border-radius: 3px;
  }
  html::-webkit-scrollbar-thumb {
    background-color: #4a4d5a;
    border-radius: 3px;
  }
  html::-webkit-scrollbar-thumb:hover {
    background-color: #5a5d6a;
  }
  html {
    scroll-behavior: smooth;
  }
  .dark-bg {
    background: #17172C;
  }
}