.bold {
  font-weight: bold; }

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

.right {
  margin-left: auto; }

.svg {
  display: block;
  width: 35%;
  margin: 0 auto; }

.clickable {
  cursor: pointer; }

.disabled {
  color: #ccc;
  font-weight: normal; }

.text-small {
  font-size: 0.8rem; }

.text-no-wrap {
  white-space: nowrap; }

button {
  outline: none; }

button::-moz-focus-inner {
  border: 0; }

.button {
  border: none;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border-radius: 8px;
  font-weight: bold;
  padding: 0.5rem 30px; }
  .button.theme-light {
    color: #fff; }
  .theme-light .button {
    color: #fff; }
  .button.theme-dark {
    color: #fff; }
  .theme-dark .button {
    color: #fff; }
  .button.theme-light {
    background-color: #bf0411; }
  .theme-light .button {
    background-color: #bf0411; }
  .button.theme-dark {
    background-color: #bf0411; }
  .theme-dark .button {
    background-color: #bf0411; }

.button--rounded {
  border-radius: 50px; }

.button--square {
  border-radius: 0; }

.button--transparent {
  background-color: transparent !important; }
  .button--transparent.theme-light {
    color: #bf0411; }
  .theme-light .button--transparent {
    color: #bf0411; }
  .button--transparent.theme-dark {
    color: #bf0411; }
  .theme-dark .button--transparent {
    color: #bf0411; }

.button--bordered {
  border: 2px solid; }
  .button--bordered.theme-light {
    border-color: #bf0411; }
  .theme-light .button--bordered {
    border-color: #bf0411; }
  .button--bordered.theme-dark {
    border-color: #bf0411; }
  .theme-dark .button--bordered {
    border-color: #bf0411; }

.button--inactive {
  background-color: transparent !important; }
  .button--inactive.theme-light {
    border-color: #bebebe; }
  .theme-light .button--inactive {
    border-color: #bebebe; }
  .button--inactive.theme-dark {
    border-color: #bebebe; }
  .theme-dark .button--inactive {
    border-color: #bebebe; }
  .button--inactive.theme-light {
    color: #bebebe; }
  .theme-light .button--inactive {
    color: #bebebe; }
  .button--inactive.theme-dark {
    color: #bebebe; }
  .theme-dark .button--inactive {
    color: #bebebe; }
  .button--inactive:hover.theme-light {
    border-color: #bf0411; }
  .theme-light .button--inactive:hover {
    border-color: #bf0411; }
  .button--inactive:hover.theme-dark {
    border-color: #bf0411; }
  .theme-dark .button--inactive:hover {
    border-color: #bf0411; }
  .button--inactive:hover.theme-light {
    color: #bf0411; }
  .theme-light .button--inactive:hover {
    color: #bf0411; }
  .button--inactive:hover.theme-dark {
    color: #bf0411; }
  .theme-dark .button--inactive:hover {
    color: #bf0411; }

.button--flat {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: initial;
  outline: none; }

@media (max-width: 1440px) {
  .button {
    font-size: 0.8rem;
    padding: 0.4rem 20px; } }

.tooltip {
  position: absolute;
  background-color: #333333;
  border-color: #333333;
  border-radius: 5px;
  padding: 0.5rem; }

.tooltip--left {
  left: -0.5rem;
  top: 50%;
  transform: translate(-100%, -50%); }
  .tooltip--left::after {
    left: 100%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: transparent;
    border-left-color: inherit;
    border-width: 6px;
    margin-top: -6px; }

.tooltip--right {
  right: -0.5rem;
  top: 50%;
  transform: translate(100%, -50%); }
  .tooltip--right::after {
    right: 100%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: transparent;
    border-right-color: inherit;
    border-width: 6px;
    margin-top: -6px; }

.tooltip--top {
  top: -0.5rem;
  left: 50%;
  transform: translate(-50%, -100%); }
  .tooltip--top::after {
    left: 50%;
    top: 100%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: transparent;
    border-top-color: inherit;
    border-width: 6px;
    margin-left: -6px; }

.tooltip--bottom {
  bottom: -0.5rem;
  left: 50%;
  transform: translate(-50%, 100%); }
  .tooltip--bottom::after {
    left: 50%;
    bottom: 100%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: transparent;
    border-bottom-color: inherit;
    border-width: 6px;
    margin-left: -6px; }

.table {
  padding: 2rem;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr); }

.table__header,
.table__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(1px, 1fr));
  align-items: center;
  position: relative; }

.table__add-more-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem; }

.table__header {
  font-weight: bold;
  padding: 0 1rem;
  border-bottom: 2px solid #111;
  white-space: nowrap; }

.table__header-item {
  display: flex;
  align-items: center;
  gap: 0.5rem; }
  .table__header-item--sortable {
    cursor: pointer; }

.table__rows {
  overflow-y: auto; }

.table__row {
  padding: 1rem;
  border-bottom: 1px solid #111; }

.table__options {
  position: absolute;
  right: 10px;
  height: 100%;
  display: flex;
  align-items: center; }

.table_sortable-column-header {
  cursor: pointer;
  display: flex;
  align-items: center; }

.popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2; }

.popup-inner {
  z-index: 3;
  position: absolute;
  left: 25%;
  right: 25%;
  top: 25%;
  bottom: 25%;
  margin: auto; }
  .popup-inner.theme-light {
    background-color: #f3f3f3; }
  .theme-light .popup-inner {
    background-color: #f3f3f3; }
  .popup-inner.theme-dark {
    background-color: #1b1b1b; }
  .theme-dark .popup-inner {
    background-color: #1b1b1b; }

.popup-inner--small {
  left: 40%;
  right: 40%;
  top: 35%;
  bottom: 35%; }

.popup-inner--big {
  left: 10%;
  right: 10%;
  top: 10%;
  bottom: 10%; }

.ds {
  display: grid;
  grid-template-areas: "toolbar" "filters" "main";
  grid-template-rows: auto auto 1fr;
  height: 100%; }

.ds-main {
  grid-area: main;
  overflow-y: auto;
  position: relative;
  overflow-y: auto; }

.toolbar--ds {
  grid-area: toolbar;
  padding: 0.5rem;
  margin: 0; }

.ds-delete-popup {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center; }

.ds-delete-popup__title {
  margin: 0.5rem; }

.ds-delete-popup__buttons {
  display: flex;
  justify-content: center;
  align-items: center; }

.ds-main-widget {
  display: grid;
  grid-template-rows: 1fr auto;
  grid-template-areas: "panel" "info";
  background-color: #fff; }

.ds-main-widget__ghost {
  grid-area: panel;
  position: absolute;
  width: 100%;
  height: 100%; }

.ds-main-widget__iframe {
  grid-area: panel;
  width: 100%;
  height: 100%;
  border: none;
  border-bottom: 1px solid #000; }

.ds-main-widget__info {
  grid-area: info;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-right: 20px; }

.ds-main-widget__title {
  padding: 0.5rem; }

.ds-main-widget__delete {
  margin: 0 0.5rem;
  cursor: pointer; }

.react-grid-item.react-draggable-dragging {
  z-index: 3;
  transition: none;
  will-change: transform; }

.react-grid-item.react-grid-placeholder {
  z-index: 2;
  user-select: none; }

.react-resizable-handle {
  position: absolute;
  background-image: url(../img/resize.svg);
  background-position: bottom right;
  background-repeat: no-repeat;
  background-origin: content-box;
  width: 20px;
  height: 20px;
  bottom: 0;
  right: 0;
  cursor: se-resize; }

.ds-filters {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  padding: 1rem;
  top: 0.5rem;
  right: 0.5rem; }
  .ds-filters > * {
    padding: 0 0.5rem; }

.ds-filters--hidden {
  display: none; }

.ds-filters__category-title {
  font-weight: bold;
  display: flex;
  align-items: center; }
  .ds-filters__category-title img {
    margin-right: 0.5rem; }

.ds-filters__input {
  border: 1px solid #ccc;
  padding: 0.5rem;
  min-width: 150px;
  background: white; }

.ds-filters__org-filters,
.ds-filters__time-filters {
  display: flex;
  margin-left: 25px;
  flex-wrap: wrap; }
  .ds-filters__org-filters > *,
  .ds-filters__time-filters > * {
    margin: 0 0.5rem; }

.ds-filters__apply-container {
  display: flex;
  align-items: center;
  justify-content: center; }

.ds-filters__ref-filter {
  display: flex;
  align-items: center; }
  .ds-filters__ref-filter > * {
    margin: 0 0.5rem; }

.ds-filters__ref-selector {
  min-width: 200px; }

.ds__welcome {
  grid-area: main;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column; }
  .ds__welcome > * {
    margin: 0.5rem 0; }

@media (max-width: 1440px) {
  .ds-filters > * {
    padding: 0; }
  .ds-filters__org-filters,
  .ds-filters__time-filters,
  .ds-filters__ref-filter {
    font-size: 0.8rem;
    margin: 0; }
  .ds-filters__input {
    font-size: 0.8rem; } }

.ekanban-org {
  display: grid;
  grid-template-areas: "toolbar" "buttons" "utils" "circuits";
  grid-template-rows: auto auto auto 1fr;
  grid-template-columns: 100%;
  height: 100%; }
  .ekanban-org.theme-light {
    color: #000; }
  .theme-light .ekanban-org {
    color: #000; }
  .ekanban-org.theme-dark {
    color: #fff; }
  .theme-dark .ekanban-org {
    color: #fff; }

.ekanban-org-buttons {
  grid-area: buttons;
  display: flex;
  font-size: 0.8rem; }
  .ekanban-org-buttons > * {
    margin-right: 0.5rem; }

.ekanban-org-utils {
  grid-area: utils;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap; }

.ekanban-org-utils__selector {
  width: 30px;
  height: 30px;
  cursor: pointer;
  opacity: .3; }

.ekanban-org-utils__selector--active {
  opacity: 1; }

.ekanban-org-utils__generate-pdf {
  height: 25px;
  margin: 0 0.5rem;
  cursor: pointer; }

.ekanban-org-utils__status-filters {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-right: auto; }
  .ekanban-org-utils__status-filters > *:not(:first-child):not(:last-child) {
    margin: 0 0.5rem; }

.ekanban-org-utils__select {
  min-width: 300px; }

.ekanban-org-utils__status-filter {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border: 1px solid transparent;
  border-radius: 30px;
  flex-wrap: nowrap; }
  .ekanban-org-utils__status-filter span {
    white-space: nowrap;
    margin-left: 0.5rem; }
  .ekanban-org-utils__status-filter:hover {
    box-shadow: 1px 1px 6px 0 rgba(0, 0, 0, 0.3); }
    .ekanban-org-utils__status-filter:hover.theme-light {
      border-color: #bebebe; }
    .theme-light .ekanban-org-utils__status-filter:hover {
      border-color: #bebebe; }
    .ekanban-org-utils__status-filter:hover.theme-dark {
      border-color: #bebebe; }
    .theme-dark .ekanban-org-utils__status-filter:hover {
      border-color: #bebebe; }

.ekanban-org-utils__status-filter--selected.theme-light {
  border-color: #bebebe; }

.theme-light .ekanban-org-utils__status-filter--selected {
  border-color: #bebebe; }

.ekanban-org-utils__status-filter--selected.theme-dark {
  border-color: #bebebe; }

.theme-dark .ekanban-org-utils__status-filter--selected {
  border-color: #bebebe; }

.ekanban-org-utils__status-filter--disabled.theme-light {
  color: #bebebe; }

.theme-light .ekanban-org-utils__status-filter--disabled {
  color: #bebebe; }

.ekanban-org-utils__status-filter--disabled.theme-dark {
  color: #bebebe; }

.theme-dark .ekanban-org-utils__status-filter--disabled {
  color: #bebebe; }

.ekanban-org-utils__status-icon {
  border-radius: 50%;
  padding: 3px;
  width: 25px;
  height: 25px; }

.ekanban-org-circuits--list__container {
  overflow: scroll;
  margin: 1rem 1rem;
  padding: 1rem; }
  .ekanban-org-circuits--list__container.theme-light {
    background-color: #fff; }
  .theme-light .ekanban-org-circuits--list__container {
    background-color: #fff; }
  .ekanban-org-circuits--list__container.theme-dark {
    background-color: #000; }
  .theme-dark .ekanban-org-circuits--list__container {
    background-color: #000; }

.ekanban-org-circuits--list__header {
  display: grid;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #000; }

.ekanban-org-circuits--list__header-item {
  z-index: 1;
  position: relative;
  display: flex;
  white-space: nowrap;
  align-items: center;
  justify-content: center; }
  .ekanban-org-circuits--list__header-item > * {
    display: block;
    margin: 0 auto;
    text-align: center; }
  .ekanban-org-circuits--list__header-item img {
    width: 30px;
    height: 30px; }

.ekanban-org-circuits--list__header-tooltip {
  border-radius: 10px;
  padding: 0.3rem;
  z-index: 0;
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  margin: 0 auto;
  with: 100px; }
  .ekanban-org-circuits--list__header-tooltip.theme-light {
    background-color: #000; }
  .theme-light .ekanban-org-circuits--list__header-tooltip {
    background-color: #000; }
  .ekanban-org-circuits--list__header-tooltip.theme-dark {
    background-color: #fff; }
  .theme-dark .ekanban-org-circuits--list__header-tooltip {
    background-color: #fff; }
  .ekanban-org-circuits--list__header-tooltip.theme-light {
    color: #fff; }
  .theme-light .ekanban-org-circuits--list__header-tooltip {
    color: #fff; }
  .ekanban-org-circuits--list__header-tooltip.theme-dark {
    color: #fff; }
  .theme-dark .ekanban-org-circuits--list__header-tooltip {
    color: #fff; }

.ekanban-org-circuits--grid {
  display: grid;
  padding: 1rem;
  grid-gap: 0 1rem;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(300px, auto); }
  @media (min-width: 1024px) and (max-width: 1440px) {
    .ekanban-org-circuits--grid {
      grid-auto-rows: minmax(250px, auto); } }
  @media (max-width: 1376px) {
    .ekanban-org-circuits--grid {
      grid-auto-rows: minmax(250px, auto); } }

.circuit--grid {
  display: grid;
  grid-template-columns: 2% 1fr 1fr;
  grid-template-rows: auto minmax(0, 1fr) auto;
  grid-template-areas: "status-bar header header" "status-bar graph graph-legend" "status-bar footer footer";
  border-radius: 10px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  margin-top: 1rem;
  cursor: pointer; }
  .circuit--grid.theme-light {
    background-color: #fff; }
  .theme-light .circuit--grid {
    background-color: #fff; }
  .circuit--grid.theme-dark {
    background-color: #000; }
  .theme-dark .circuit--grid {
    background-color: #000; }

.circuit--accessible-grid {
  cursor: initial; }

.circuit--grid__status-bar,
.circuit--small__status-bar {
  grid-area: status-bar;
  border-radius: 10px 0 0 10px; }

.circuit--grid__header {
  position: relative;
  grid-area: header;
  display: grid;
  grid-template-columns: 1fr 3fr 2fr;
  grid-gap: 0.5rem;
  padding: 1rem 0;
  padding-right: 30px; }
  .circuit--grid__header.theme-light {
    color: #fff; }
  .theme-light .circuit--grid__header {
    color: #fff; }
  .circuit--grid__header.theme-dark {
    color: #fff; }
  .theme-dark .circuit--grid__header {
    color: #fff; }

.circuit__status-icon {
  position: absolute;
  padding: 3px;
  background-color: inherit;
  border-radius: 50%;
  border: 3px solid;
  top: -9px;
  right: -9px; }

.circuit__status-icon--grid {
  width: 30px;
  height: 30px;
  box-shadow: 0 0 5px 0;
  --box-shadow-color: inherit; }
  .circuit__status-icon--grid.theme-light {
    border-color: #f3f3f3; }
  .theme-light .circuit__status-icon--grid {
    border-color: #f3f3f3; }
  .circuit__status-icon--grid.theme-dark {
    border-color: #1b1b1b; }
  .theme-dark .circuit__status-icon--grid {
    border-color: #1b1b1b; }

.circuit__status-icon--list {
  width: 25px;
  height: 25px; }
  .circuit__status-icon--list.theme-light {
    border-color: #fff; }
  .theme-light .circuit__status-icon--list {
    border-color: #fff; }
  .circuit__status-icon--list.theme-dark {
    border-color: #000; }
  .theme-dark .circuit__status-icon--list {
    border-color: #000; }

.circuit__status-icon--small {
  width: 25px;
  height: 25px; }
  .circuit__status-icon--small.theme-light {
    border-color: #f3f3f3; }
  .theme-light .circuit__status-icon--small {
    border-color: #f3f3f3; }
  .circuit__status-icon--small.theme-dark {
    border-color: #1b1b1b; }
  .theme-dark .circuit__status-icon--small {
    border-color: #1b1b1b; }

.circuit--grid__img-container {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center; }

.circuit--grid__img {
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  width: 60px;
  height: 60px;
  object-fit: contain; }

.circuit--grid__span {
  display: block; }

.circuit--grid__references {
  text-align: right; }

.circuit--grid__title {
  font-weight: bold;
  margin: 0; }

.ekanban-org__graph {
  grid-area: graph;
  max-height: 100%;
  max-width: 100%; }

.circuit--grid__footer {
  grid-area: footer;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem; }
  .circuit--grid__footer.theme-light {
    background-color: #f3f3f3; }
  .theme-light .circuit--grid__footer {
    background-color: #f3f3f3; }
  .circuit--grid__footer.theme-dark {
    background-color: #1b1b1b; }
  .theme-dark .circuit--grid__footer {
    background-color: #1b1b1b; }
  .circuit--grid__footer span {
    display: inline;
    white-space: nowrap; }
  .circuit--grid__footer > span {
    padding: 0.5rem; }
    .circuit--grid__footer > span span {
      font-weight: bold; }

.circuit--grid__footer-item {
  display: flex;
  margin: 0 1rem; }
  .circuit--grid__footer-item > * {
    margin: 0 .2rem; }

.circuit--accessible-grid__footer {
  grid-area: footer;
  display: flex;
  width: 100%; }

.circuit--accessible-grid__btn {
  border-radius: 0;
  border: 2px solid;
  padding: 1rem .5rem;
  font-size: 20px; }
  .circuit--accessible-grid__btn.theme-light {
    border-color: #bf0411; }
  .theme-light .circuit--accessible-grid__btn {
    border-color: #bf0411; }
  .circuit--accessible-grid__btn.theme-dark {
    border-color: #bf0411; }
  .theme-dark .circuit--accessible-grid__btn {
    border-color: #bf0411; }

.circuit--accessible-grid__change-consume-btn {
  flex: 2; }

.circuit--accessible-grid__change-stock-btn {
  flex: 1; }
  .circuit--accessible-grid__change-stock-btn.theme-light {
    background-color: #fff; }
  .theme-light .circuit--accessible-grid__change-stock-btn {
    background-color: #fff; }
  .circuit--accessible-grid__change-stock-btn.theme-dark {
    background-color: #000; }
  .theme-dark .circuit--accessible-grid__change-stock-btn {
    background-color: #000; }
  .circuit--accessible-grid__change-stock-btn.theme-light {
    color: #bf0411; }
  .theme-light .circuit--accessible-grid__change-stock-btn {
    color: #bf0411; }
  .circuit--accessible-grid__change-stock-btn.theme-dark {
    color: #bf0411; }
  .theme-dark .circuit--accessible-grid__change-stock-btn {
    color: #bf0411; }

.circuit--grid:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2); }

.circuit--list {
  display: grid;
  grid-template-rows: 1fr;
  border-bottom: 1px solid;
  cursor: pointer; }
  .circuit--list.theme-light {
    border-color: #bebebe; }
  .theme-light .circuit--list {
    border-color: #bebebe; }
  .circuit--list.theme-dark {
    border-color: #bebebe; }
  .theme-dark .circuit--list {
    border-color: #bebebe; }

.ekanban-org-circuits--list__header,
.circuit--list {
  grid-template-columns: 30px 1.5fr 2fr 2fr repeat(6, minmax(0, 1fr));
  grid-gap: 0.5rem;
  padding: 0.5rem 0; }

.circuit--list__status-bar {
  position: relative;
  border-radius: 5px 10px 0 5px;
  height: 40px; }

.circuit--list__name,
.circuit--list__reference {
  display: flex;
  align-items: center; }

.circuit--list__name {
  font-weight: bold; }

.circuit--list__reference.theme-light {
  color: #4e4e4e; }

.theme-light .circuit--list__reference {
  color: #4e4e4e; }

.circuit--list__reference.theme-dark {
  color: #f3f3f3; }

.theme-dark .circuit--list__reference {
  color: #f3f3f3; }

.ekanban__status--center {
  display: inline-block;
  text-align: center;
  align-self: center; }

.ekanban-org__number {
  font-weight: bold; }

.circuit--list__image {
  display: block;
  height: 100%;
  align-self: center;
  margin: 0 auto; }

.ekanban-org-circuits--small {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 1fr;
  grid-gap: 1rem; }
  @media (min-width: 1024px) and (max-width: 1440px) {
    .ekanban-org-circuits--small {
      grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 1024px) {
    .ekanban-org-circuits--small {
      grid-template-columns: repeat(2, 1fr); } }

.circuit--small {
  position: relative;
  display: grid;
  grid-template-areas: "status-bar graph info" "status-bar footer footer";
  grid-template-columns: 2% 1fr 1.5fr;
  grid-template-rows: 1fr auto;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  border-radius: 10px 0 0 10px;
  cursor: pointer;
  margin-top: 1rem;
  min-height: 100px; }
  .circuit--small.theme-light {
    background-color: #fff; }
  .theme-light .circuit--small {
    background-color: #fff; }
  .circuit--small.theme-dark {
    background-color: #000; }
  .theme-dark .circuit--small {
    background-color: #000; }

.circuit--small-info {
  grid-area: info;
  margin: auto 0; }

.circuit--small-info__name,
.circuit--small-info__reference {
  display: block;
  font-size: .9rem;
  margin: 0; }

.circuit--small__footer {
  grid-area: footer;
  display: flex;
  justify-content: space-around;
  align-items: center; }
  .circuit--small__footer.theme-light {
    background-color: #f3f3f3; }
  .theme-light .circuit--small__footer {
    background-color: #f3f3f3; }
  .circuit--small__footer.theme-dark {
    background-color: #1b1b1b; }
  .theme-dark .circuit--small__footer {
    background-color: #1b1b1b; }
  .circuit--small__footer div span, .circuit--small__footer div img {
    display: inline;
    vertical-align: middle;
    padding: 0 2px; }
  .circuit--small__footer div img {
    height: 1.2rem; }

.circuit--grid__graph {
  grid-area: graph;
  display: flex;
  justify-content: center;
  align-items: center; }

.circuit--grid__graph-legend {
  grid-area: graph-legend;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 1rem;
  max-width: 250px;
  margin: 0.5rem 0; }

.circuit--grid__graph-legend-item {
  display: flex;
  justify-content: flex-start;
  width: 100%; }
  .circuit--grid__graph-legend-item > *:first-child {
    margin-right: 0.5rem; }
  .circuit--grid__graph-legend-item > *:last-child {
    margin-left: auto; }

.ekanban-org-buttons,
.ekanban-org-utils,
.ekanban-org-circuits--small {
  padding: 0 1rem; }

.ekanban-org-buttons {
  margin: 1rem 0; }

.ekanban-org-circuits-container {
  grid-area: circuits;
  overflow-y: auto;
  display: flex;
  flex-direction: column; }

.ekanban-org-circuits__load-more {
  text-align: center;
  align-self: center;
  margin: 0.5rem; }

@media (max-width: 1440px) {
  .ekanban-org-utils__status-filter-span {
    display: none; }
  .ekanban-org-circuits--grid {
    grid-template-columns: 1fr; } }

.landing-container {
  height: 100%;
  font-family: 'Arial','san-serif';
  display: grid;
  grid-template-areas: "login image" "footer footer";
  grid-template-columns: 1.5fr minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr) 20%; }

.landing__login {
  grid-area: login;
  padding-left: 15%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center; }

.landing__image {
  grid-area: image;
  display: flex;
  justify-content: flex-start;
  align-items: center; }
  .landing__image > * {
    height: 80%; }

.landing__logo {
  display: block;
  width: 150px;
  margin-top: .5rem;
  margin-bottom: 2rem; }

.landing__button {
  margin: 0; }

.landing__title {
  font-size: 3rem;
  margin: 0; }

.landing__subtitle {
  font-size: 1.2rem;
  padding: 1rem 0; }

.landing__description {
  padding: 1rem 0;
  max-width: 70%;
  line-height: 1.5rem; }

.landing__footer {
  grid-area: footer;
  display: flex;
  align-items: flex-end;
  padding: .5rem 0;
  background-image: url("../img/landing-footer.jpg");
  background-size: cover;
  background-repeat: no-repeat; }
  .landing__footer > * {
    margin: 0 .5rem;
    text-decoration: none;
    color: white; }
  .landing__footer a:hover.theme-light {
    color: #4e4e4e; }
  .theme-light .landing__footer a:hover {
    color: #4e4e4e; }
  .landing__footer a:hover.theme-dark {
    color: #f3f3f3; }
  .theme-dark .landing__footer a:hover {
    color: #f3f3f3; }

.landing__title.theme-light,
.landing__subtitle.theme-light {
  color: #bf0411; }

.theme-light .landing__title, .theme-light
.landing__subtitle {
  color: #bf0411; }

.landing__title.theme-dark,
.landing__subtitle.theme-dark {
  color: #bf0411; }

.theme-dark .landing__title, .theme-dark
.landing__subtitle {
  color: #bf0411; }

@media (max-width: 450px) {
  .landing__container {
    grid-template-columns: 1fr;
    grid-template-areas: "login" "footer";
    grid-template-rows: minmax(0, 1fr) auto; } }

@media (max-height: 600px) {
  .landing-container {
    grid-template-rows: minmax(0, 1fr) auto; }
  .landing__header {
    padding: 0;
    padding-left: 7.5%; }
  .landing__logo {
    width: 100px;
    margin: 0; }
  .landing__login {
    gap: 0.5rem; }
  .landing__description,
  .landing__subtitle {
    padding: 0;
    max-width: initial; }
  .landing__title {
    font-size: 1.5rem; } }

.manage {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto minmax(0, 1fr);
  height: 100%;
  background-color: white; }

.manage-sidebar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.5rem;
  padding-top: 150px; }
  .manage-sidebar.theme-light {
    background-color: #a00d17; }
  .theme-light .manage-sidebar {
    background-color: #a00d17; }
  .manage-sidebar.theme-dark {
    background-color: #a00d17; }
  .theme-dark .manage-sidebar {
    background-color: #a00d17; }
  .manage-sidebar.theme-light {
    color: #fff; }
  .theme-light .manage-sidebar {
    color: #fff; }
  .manage-sidebar.theme-dark {
    color: #fff; }
  .theme-dark .manage-sidebar {
    color: #fff; }

.manage-sidebar__element {
  position: relative;
  display: flex;
  align-items: center;
  margin: 1rem 0;
  cursor: pointer; }
  .manage-sidebar__element.theme-light {
    border-color: #a00d17; }
  .theme-light .manage-sidebar__element {
    border-color: #a00d17; }
  .manage-sidebar__element.theme-dark {
    border-color: #a00d17; }
  .theme-dark .manage-sidebar__element {
    border-color: #a00d17; }
  .manage-sidebar__element > * {
    padding: 0.5rem; }

.manage-sidebar__element--selected:after {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  right: -20px;
  border-style: solid;
  border-width: 25px 0 25px 25px;
  border-color: transparent;
  border-left-color: inherit; }

.manage-page {
  overflow: auto;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  grid-template-areas: "toolbar" "rest";
  padding: 1rem;
  background-color: white;
  height: 100%; }

.manage-page__column {
  margin-bottom: 2rem; }

.manage-options {
  display: flex; }
  .manage-options > * {
    padding: 0 0.5rem;
    border-right: solid 1px gray;
    cursor: pointer; }
    .manage-options > *:first-child {
      padding-left: 0; }
    .manage-options > *:last-child {
      padding-right: 0;
      border-right: none; }

.manage-orgs__user-icons > * {
  margin: 0 .1rem; }

.manage-ref__icon,
.manage-org__icon,
.manage-user__icon {
  width: 35px;
  height: 35px;
  border: 2px solid;
  border-radius: 50%;
  object-fit: contain; }
  .manage-ref__icon.theme-light,
  .manage-org__icon.theme-light,
  .manage-user__icon.theme-light {
    border-color: #a00d17; }
  .theme-light .manage-ref__icon, .theme-light
  .manage-org__icon, .theme-light
  .manage-user__icon {
    border-color: #a00d17; }
  .manage-ref__icon.theme-dark,
  .manage-org__icon.theme-dark,
  .manage-user__icon.theme-dark {
    border-color: #a00d17; }
  .theme-dark .manage-ref__icon, .theme-dark
  .manage-org__icon, .theme-dark
  .manage-user__icon {
    border-color: #a00d17; }

.manage-user__selected-list {
  min-height: 100px; }
  .manage-user__selected-list > * {
    display: flex;
    align-items: center; }
    .manage-user__selected-list > *:not(:first-child) {
      padding-left: 0.5rem; }

.manage-ref__icon--default,
.manage-org__icon--default,
.manage-user__icon--default {
  background: #ccc; }

.manage-org-table__header,
.manage-org-table__row {
  grid-template-columns: .3fr 1fr 2fr 1fr .2fr; }

.manage-user-table__header,
.manage-user-table__row {
  grid-template-columns: .5fr 2fr 2fr 1fr .2fr; }

.manage-device-table__header,
.manage-device-table__row {
  grid-template-columns: 2fr 2fr 2fr 1fr 1fr; }

.manage-location-table__header,
.manage-location-table__row {
  grid-template-columns: repeat(3, 1fr); }

.manage-circuit-table__header,
.manage-circuit-table__row {
  grid-template-columns: .5fr 1fr 1fr 1.5fr 1.5fr 1.5fr 1.5fr 2fr 1.5fr .2fr; }

.manage-circuits-ref-icon__img-container {
  display: flex;
  align-items: center; }
  .manage-circuits-ref-icon__img-container > * {
    margin: 0 0.5rem; }

.manage-orgs-user-icons__img-container {
  position: relative;
  display: inline-block; }

.manage-orgs-user-icons__img-tooltip {
  display: none;
  position: absolute;
  padding: .2rem;
  border: 1px solid #000;
  border-radius: 5px;
  z-index: 10;
  top: 0;
  left: 0; }
  .manage-orgs-user-icons__img-tooltip.theme-light {
    background-color: #4e4e4e; }
  .theme-light .manage-orgs-user-icons__img-tooltip {
    background-color: #4e4e4e; }
  .manage-orgs-user-icons__img-tooltip.theme-dark {
    background-color: #f3f3f3; }
  .theme-dark .manage-orgs-user-icons__img-tooltip {
    background-color: #f3f3f3; }
  .manage-orgs-user-icons__img-tooltip.theme-light {
    color: #fff; }
  .theme-light .manage-orgs-user-icons__img-tooltip {
    color: #fff; }
  .manage-orgs-user-icons__img-tooltip.theme-dark {
    color: #fff; }
  .theme-dark .manage-orgs-user-icons__img-tooltip {
    color: #fff; }

.manage-orgs-user-icons__img-container:hover .manage-orgs-user-icons__img-tooltip {
  display: block; }

.manage-org_list-kebab {
  display: flex;
  flex-direction: column;
  right: 0;
  width: 170px;
  z-index: 2; }
  .manage-org_list-kebab.theme-light {
    background-color: #bf0411; }
  .theme-light .manage-org_list-kebab {
    background-color: #bf0411; }
  .manage-org_list-kebab.theme-dark {
    background-color: #bf0411; }
  .theme-dark .manage-org_list-kebab {
    background-color: #bf0411; }
  .manage-org_list-kebab.theme-light {
    color: #fff; }
  .theme-light .manage-org_list-kebab {
    color: #fff; }
  .manage-org_list-kebab.theme-dark {
    color: #fff; }
  .theme-dark .manage-org_list-kebab {
    color: #fff; }
  .manage-org_list-kebab > * {
    padding: 0.5rem; }

.manage-org__ftp-connection-days {
  display: flex;
  justify-content: space-between;
  width: 150%; }

.manage-org__ftp-connection-day {
  display: flex;
  flex-direction: column;
  align-items: center; }

.manage-org__ftp-hour {
  display: flex;
  align-items: center; }

.manage-user__keycloak-button {
  font: 400 13.3333px Arial;
  font-weight: bold; }

.manage-location__sublocation-adder {
  display: flex; }
  .manage-location__sublocation-adder input {
    margin-right: 0.5rem;
    flex: 1; }

.manage-location__sublocation {
  display: flex;
  align-items: center;
  justify-content: space-between; }

.manage-location__delete-sublocation {
  cursor: pointer;
  opacity: 0; }

.manage-location__sublocation:hover .manage-location__delete-sublocation {
  opacity: 1; }

.manage-location__sublocation-list {
  display: flex;
  flex-direction: column;
  margin-top: 0.5rem; }
  .manage-location__sublocation-list > * {
    border-top: 1px solid gray;
    padding: 5px; }

@media (min-width: 1024px) and (max-width: 1440px) {
  .manage-sidebar,
  .manage-page {
    font-size: 80%; } }

@media (max-width: 1024px) {
  .manage-sidebar,
  .manage-page {
    font-size: 70%; } }

.orgs {
  display: grid;
  grid-template-areas: "toolbar" "main";
  grid-template-rows: auto minmax(0, 1fr);
  grid-gap: 1rem;
  padding: 1rem;
  height: 100%; }

.orgs-main {
  grid-area: main; }

.orgs-main--list {
  border-radius: 4px;
  padding: 1rem;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  display: grid;
  grid-template-rows: auto 1fr; }
  .orgs-main--list.theme-light {
    background-color: #fff; }
  .theme-light .orgs-main--list {
    background-color: #fff; }
  .orgs-main--list.theme-dark {
    background-color: #000; }
  .theme-dark .orgs-main--list {
    background-color: #000; }

.orgs-main--list-header, .orgs-main--list-row {
  display: grid;
  grid-template-columns: 1fr 3fr 3fr;
  font-size: 80%; }

.orgs-main--list-row {
  align-items: center;
  border-top: 1px solid;
  cursor: pointer; }

.orgs-main--list__cards {
  overflow: auto; }

.orgs-main--list-row__image-container {
  height: 70px;
  margin: 0.5rem auto;
  display: flex;
  justify-content: center;
  align-items: center; }
  .orgs-main--list-row__image-container.theme-light {
    background-color: #bf0411; }
  .theme-light .orgs-main--list-row__image-container {
    background-color: #bf0411; }
  .orgs-main--list-row__image-container.theme-dark {
    background-color: #bf0411; }
  .theme-dark .orgs-main--list-row__image-container {
    background-color: #bf0411; }

.orgs-main--list-row__image {
  height: 100%; }

.orgs-main--list-row:first-of-type {
  border-top-color: #000; }

.orgs-main--list-header {
  padding: 0.5rem 0; }

.orgs-main--list-header__organization {
  grid-column-start: 2; }

.orgs-main--list-header__description {
  grid-column-start: 3; }

.orgs-main--grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(3, 1fr);
  grid-gap: 1rem;
  overflow-y: auto;
  padding-bottom: 0.5rem; }

.orgs-main--grid-card-container {
  height: 0;
  padding-top: 75%;
  position: relative; }
  .orgs-main--grid-card-container:hover {
    box-shadow: 4px 4px 15px 0 rgba(190, 190, 190, 0.35); }

.orgs-main--grid-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-areas: "card-img" "card-info";
  grid-template-rows: minmax(20px, 1fr) auto;
  font-size: 70%;
  border-radius: 5px;
  transition: 0.3s;
  cursor: pointer; }
  .orgs-main--grid-card.theme-light {
    background-color: #fff; }
  .theme-light .orgs-main--grid-card {
    background-color: #fff; }
  .orgs-main--grid-card.theme-dark {
    background-color: #000; }
  .theme-dark .orgs-main--grid-card {
    background-color: #000; }

.orgs-main--grid-card__image-container {
  grid-area: card-img;
  display: flex;
  align-items: center;
  justify-content: center; }

.orgs-main--grid-card__children {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: minmax(75px, 1fr);
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin; }
  .orgs-main--grid-card__children--big {
    grid-template-columns: repeat(2, 1fr); }
  .orgs-main--grid-card__children--medium {
    grid-template-columns: repeat(3, 1fr); }
  .orgs-main--grid-card__children .orgs-main--grid-card-container {
    height: 100%;
    padding-top: initial;
    box-shadow: none; }
  .orgs-main--grid-card__children .orgs-main--grid-card {
    position: initial; }

.orgs-main--grid-card__image {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain; }

.orgs-main--grid-card__info {
  position: relative;
  grid-area: card-info;
  display: flex;
  justify-content: space-between;
  padding: 4%; }

.orgs-main--grid-card__title {
  font-weight: bold;
  margin: 0; }

.orgs-main--grid-card__image, .orgs-main--list img {
  display: block;
  margin: 0 auto; }

.orgs__view-selector {
  opacity: .3; }

.orgs__view-selector--active {
  opacity: 1; }

.toolbar--orgs {
  grid-area: toolbar; }

@media (max-width: 500px) {
  .orgs-main--grid {
    grid-template-columns: 1fr; } }

@media (min-width: 500px) and (max-width: 1440px) {
  .orgs-main--grid {
    grid-template-columns: repeat(2, 1fr); } }

.panel-selector {
  padding: .5rem;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  grid-gap: .5rem; }
  .panel-selector.theme-light {
    background-color: #a00d17; }
  .theme-light .panel-selector {
    background-color: #a00d17; }
  .panel-selector.theme-dark {
    background-color: #a00d17; }
  .theme-dark .panel-selector {
    background-color: #a00d17; }

.panel-selector-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 30%;
  grid-gap: 1rem;
  padding: .5rem;
  overflow-y: auto; }

.panel-selector-list-panel {
  background-color: #fff;
  display: grid;
  grid-template-areas: "panel" "info";
  grid-template-rows: 1fr auto;
  height: 100%; }

.panel-selector-list-panel__iframe {
  grid-area: panel;
  border: none;
  height: 100%;
  width: 100%; }

.panel-selector-list-panel__info {
  grid-area: info;
  padding: .5rem;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #000; }

.panel-selector-bar__button {
  border: none;
  border-radius: 0;
  padding: .5rem;
  cursor: pointer;
  float: right; }
  .panel-selector-bar__button.theme-light {
    background-color: #f3f3f3; }
  .theme-light .panel-selector-bar__button {
    background-color: #f3f3f3; }
  .panel-selector-bar__button.theme-dark {
    background-color: #1b1b1b; }
  .theme-dark .panel-selector-bar__button {
    background-color: #1b1b1b; }

.ekanban__status--ok.theme-light,
.ekanban__status--in-warehouse.theme-light {
  color: #3c751b; }

.theme-light .ekanban__status--ok, .theme-light
.ekanban__status--in-warehouse {
  color: #3c751b; }

.ekanban__status--ok.theme-dark,
.ekanban__status--in-warehouse.theme-dark {
  color: #3c751b; }

.theme-dark .ekanban__status--ok, .theme-dark
.ekanban__status--in-warehouse {
  color: #3c751b; }

.ekanban__status--prevention.theme-light,
.ekanban__status--preparing.theme-light {
  color: #e4b200; }

.theme-light .ekanban__status--prevention, .theme-light
.ekanban__status--preparing {
  color: #e4b200; }

.ekanban__status--prevention.theme-dark,
.ekanban__status--preparing.theme-dark {
  color: #e4b200; }

.theme-dark .ekanban__status--prevention, .theme-dark
.ekanban__status--preparing {
  color: #e4b200; }

.ekanban__status--alert.theme-light,
.ekanban__status--consumed.theme-light {
  color: #bf0411; }

.theme-light .ekanban__status--alert, .theme-light
.ekanban__status--consumed {
  color: #bf0411; }

.ekanban__status--alert.theme-dark,
.ekanban__status--consumed.theme-dark {
  color: #bf0411; }

.theme-dark .ekanban__status--alert, .theme-dark
.ekanban__status--consumed {
  color: #bf0411; }

.ekanban__status--transit.theme-light,
.ekanban__status--in-transit.theme-light {
  color: #5ca531; }

.theme-light .ekanban__status--transit, .theme-light
.ekanban__status--in-transit {
  color: #5ca531; }

.ekanban__status--transit.theme-dark,
.ekanban__status--in-transit.theme-dark {
  color: #5ca531; }

.theme-dark .ekanban__status--transit, .theme-dark
.ekanban__status--in-transit {
  color: #5ca531; }

.ekanban__status--unknown.theme-light {
  color: #000; }

.theme-light .ekanban__status--unknown {
  color: #000; }

.ekanban__status--unknown.theme-dark {
  color: #000; }

.theme-dark .ekanban__status--unknown {
  color: #000; }

.ekanban__status--unknown.theme-light {
  color: #000; }

.theme-light .ekanban__status--unknown {
  color: #000; }

.ekanban__status--unknown.theme-dark {
  color: #000; }

.theme-dark .ekanban__status--unknown {
  color: #000; }

.ekanban__status-bar {
  border-top-left-radius: inherit;
  border-bottom-left-radius: inherit; }

.ekanban__status-bar--top {
  border-bottom-left-radius: 0;
  border-top-right-radius: inherit; }

.ekanban__status-bar--alert.theme-light,
.ekanban__status-bar--consumed.theme-light {
  background-color: #bf0411; }

.theme-light .ekanban__status-bar--alert, .theme-light
.ekanban__status-bar--consumed {
  background-color: #bf0411; }

.ekanban__status-bar--alert.theme-dark,
.ekanban__status-bar--consumed.theme-dark {
  background-color: #bf0411; }

.theme-dark .ekanban__status-bar--alert, .theme-dark
.ekanban__status-bar--consumed {
  background-color: #bf0411; }

.ekanban__status-bar--alert.theme-light,
.ekanban__status-bar--consumed.theme-light {
  border-color: #bf0411; }

.theme-light .ekanban__status-bar--alert, .theme-light
.ekanban__status-bar--consumed {
  border-color: #bf0411; }

.ekanban__status-bar--alert.theme-dark,
.ekanban__status-bar--consumed.theme-dark {
  border-color: #bf0411; }

.theme-dark .ekanban__status-bar--alert, .theme-dark
.ekanban__status-bar--consumed {
  border-color: #bf0411; }

.ekanban__status-bar--prevention.theme-light,
.ekanban__status-bar--preparing.theme-light {
  background-color: #e4b200; }

.theme-light .ekanban__status-bar--prevention, .theme-light
.ekanban__status-bar--preparing {
  background-color: #e4b200; }

.ekanban__status-bar--prevention.theme-dark,
.ekanban__status-bar--preparing.theme-dark {
  background-color: #e4b200; }

.theme-dark .ekanban__status-bar--prevention, .theme-dark
.ekanban__status-bar--preparing {
  background-color: #e4b200; }

.ekanban__status-bar--prevention.theme-light,
.ekanban__status-bar--preparing.theme-light {
  border-color: #e4b200; }

.theme-light .ekanban__status-bar--prevention, .theme-light
.ekanban__status-bar--preparing {
  border-color: #e4b200; }

.ekanban__status-bar--prevention.theme-dark,
.ekanban__status-bar--preparing.theme-dark {
  border-color: #e4b200; }

.theme-dark .ekanban__status-bar--prevention, .theme-dark
.ekanban__status-bar--preparing {
  border-color: #e4b200; }

.ekanban__status-bar--transit.theme-light,
.ekanban__status-bar--in-transit.theme-light {
  background-color: #5ca531; }

.theme-light .ekanban__status-bar--transit, .theme-light
.ekanban__status-bar--in-transit {
  background-color: #5ca531; }

.ekanban__status-bar--transit.theme-dark,
.ekanban__status-bar--in-transit.theme-dark {
  background-color: #5ca531; }

.theme-dark .ekanban__status-bar--transit, .theme-dark
.ekanban__status-bar--in-transit {
  background-color: #5ca531; }

.ekanban__status-bar--transit.theme-light,
.ekanban__status-bar--in-transit.theme-light {
  border-color: #5ca531; }

.theme-light .ekanban__status-bar--transit, .theme-light
.ekanban__status-bar--in-transit {
  border-color: #5ca531; }

.ekanban__status-bar--transit.theme-dark,
.ekanban__status-bar--in-transit.theme-dark {
  border-color: #5ca531; }

.theme-dark .ekanban__status-bar--transit, .theme-dark
.ekanban__status-bar--in-transit {
  border-color: #5ca531; }

.ekanban__status-bar--summary.theme-light {
  background-color: #ccc; }

.theme-light .ekanban__status-bar--summary {
  background-color: #ccc; }

.ekanban__status-bar--summary.theme-dark {
  background-color: #fff; }

.theme-dark .ekanban__status-bar--summary {
  background-color: #fff; }

.ekanban__status-bar--ok.theme-light,
.ekanban__status-bar--in-warehouse.theme-light {
  background-color: #3c751b; }

.theme-light .ekanban__status-bar--ok, .theme-light
.ekanban__status-bar--in-warehouse {
  background-color: #3c751b; }

.ekanban__status-bar--ok.theme-dark,
.ekanban__status-bar--in-warehouse.theme-dark {
  background-color: #3c751b; }

.theme-dark .ekanban__status-bar--ok, .theme-dark
.ekanban__status-bar--in-warehouse {
  background-color: #3c751b; }

.ekanban__status-bar--ok.theme-light,
.ekanban__status-bar--in-warehouse.theme-light {
  border-color: #3c751b; }

.theme-light .ekanban__status-bar--ok, .theme-light
.ekanban__status-bar--in-warehouse {
  border-color: #3c751b; }

.ekanban__status-bar--ok.theme-dark,
.ekanban__status-bar--in-warehouse.theme-dark {
  border-color: #3c751b; }

.theme-dark .ekanban__status-bar--ok, .theme-dark
.ekanban__status-bar--in-warehouse {
  border-color: #3c751b; }

.ekanban__status-bar--unknown.theme-light {
  background-color: #000; }

.theme-light .ekanban__status-bar--unknown {
  background-color: #000; }

.ekanban__status-bar--unknown.theme-dark {
  background-color: #000; }

.theme-dark .ekanban__status-bar--unknown {
  background-color: #000; }

.ekanban__status-bar--unknown.theme-light {
  border-color: #000; }

.theme-light .ekanban__status-bar--unknown {
  border-color: #000; }

.ekanban__status-bar--unknown.theme-dark {
  border-color: #000; }

.theme-dark .ekanban__status-bar--unknown {
  border-color: #000; }

.ekanban__status-bar--delivery-note-diff.theme-light {
  background-color: #ED7D31; }

.theme-light .ekanban__status-bar--delivery-note-diff {
  background-color: #ED7D31; }

.ekanban__status-bar--delivery-note-diff.theme-light {
  border-color: #ED7D31; }

.theme-light .ekanban__status-bar--delivery-note-diff {
  border-color: #ED7D31; }

.ekanban__status--inactive.theme-light, .ekanban__status--inactive .ekanban__number.theme-light {
  color: #bebebe; }

.theme-light .ekanban__status--inactive, .theme-light .ekanban__status--inactive .ekanban__number {
  color: #bebebe; }

.ekanban__status--inactive.theme-dark, .ekanban__status--inactive .ekanban__number.theme-dark {
  color: #bebebe; }

.theme-dark .ekanban__status--inactive, .theme-dark .ekanban__status--inactive .ekanban__number {
  color: #bebebe; }

.toolbar {
  grid-area: toolbar;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  padding: 1rem; }

.toolbar--reversed {
  justify-content: flex-start; }

.toolbar-element {
  margin-right: 0.5rem;
  margin-left: 0.5rem;
  transition: .3s; }
  .toolbar-element > * {
    display: inline;
    vertical-align: middle; }
  .toolbar-element > *:not(:first-child) {
    margin-left: 0.5rem; }
  .toolbar-element > *:not(:last-child) {
    margin-right: 0.5rem; }
  .toolbar-element:first-child {
    margin-left: 0; }
  .toolbar-element:last-child:not(:only-child) {
    margin-right: 0; }

.toolbar-element--clickable {
  cursor: pointer; }

.toolbar-element--left {
  margin-right: auto; }

.toolbar-breadcrumb {
  display: flex;
  flex-direction: row-reverse; }

.toolbar--underlined {
  border-bottom: 1px solid; }
  .toolbar--underlined.theme-light {
    border-color: #bebebe; }
  .theme-light .toolbar--underlined {
    border-color: #bebebe; }
  .toolbar--underlined.theme-dark {
    border-color: #bebebe; }
  .theme-dark .toolbar--underlined {
    border-color: #bebebe; }

.toolbar--shadow {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); }

.toolbar--without-paddings {
  padding: 0; }

.org-bar {
  grid-column-start: span 3;
  background-color: black;
  color: white;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  cursor: pointer; }

@media (min-width: 1024px) and (max-width: 1440px) {
  .toolbar {
    padding: 0.7rem; } }

@media (max-width: 1024px) {
  .toolbar {
    padding: 0.5rem; } }

.side-bar {
  display: grid;
  grid-area: side-bar;
  grid-template-rows: auto 1fr auto auto;
  grid-template-areas: "logo" "items" "theme" "utilities";
  font-size: 80%;
  height: 100vh;
  width: 90px; }
  .side-bar.theme-light {
    background-color: #bf0411; }
  .theme-light .side-bar {
    background-color: #bf0411; }
  .side-bar.theme-dark {
    background-color: #bf0411; }
  .theme-dark .side-bar {
    background-color: #bf0411; }
  .side-bar.theme-light {
    color: #000; }
  .theme-light .side-bar {
    color: #000; }
  .side-bar.theme-dark {
    color: #fff; }
  .theme-dark .side-bar {
    color: #fff; }

.side-bar-logo {
  grid-area: logo;
  margin-top: .5rem; }

.logo__image {
  width: 60%; }

.side-bar-items {
  grid-area: items;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: space-around;
  max-height: 400px; }

.items-link {
  color: #fff;
  text-decoration: none;
  text-align: center;
  transition: background-color .2s; }

.items-link__image,
.items-link__name {
  display: block; }

.items-link--active.theme-light {
  background-color: #a00d17; }

.theme-light .items-link--active {
  background-color: #a00d17; }

.items-link--active.theme-dark {
  background-color: #a00d17; }

.theme-dark .items-link--active {
  background-color: #a00d17; }

@media (min-width: 1024px) and (max-width: 1440px) {
  .side-bar {
    width: 70px;
    font-size: 70%; } }

@media (max-width: 1040px) {
  .side-bar {
    width: 60px;
    font-size: 60%; } }

.side-bar-dropdown {
  position: relative;
  grid-area: utilities; }
  .side-bar-dropdown.theme-light {
    color: #fff; }
  .theme-light .side-bar-dropdown {
    color: #fff; }
  .side-bar-dropdown.theme-dark {
    color: #fff; }
  .theme-dark .side-bar-dropdown {
    color: #fff; }

.side-bar-dropdown__user-icon {
  display: block;
  border-radius: 50%;
  align-self: center;
  margin: 0 auto .5rem auto;
  width: 40%;
  cursor: pointer; }

.side-bar-dropdown-main {
  display: none;
  position: absolute;
  bottom: 50%;
  left: 75%;
  width: calc(100%  + 60px);
  padding: .5rem;
  border-radius: 4px;
  z-index: 4; }
  .side-bar-dropdown-main.theme-light {
    background-color: #a00d17; }
  .theme-light .side-bar-dropdown-main {
    background-color: #a00d17; }
  .side-bar-dropdown-main.theme-dark {
    background-color: #a00d17; }
  .theme-dark .side-bar-dropdown-main {
    background-color: #a00d17; }

.dropdown-main__username {
  text-align: center;
  font-size: 80%;
  font-weight: bold;
  margin: 0; }

.dropdown-main-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  margin: 2px 0;
  cursor: pointer; }
  .dropdown-main-item.theme-light {
    color: #fff; }
  .theme-light .dropdown-main-item {
    color: #fff; }
  .dropdown-main-item.theme-dark {
    color: #fff; }
  .theme-dark .dropdown-main-item {
    color: #fff; }

.dropdown-main-item__image,
.dropdown-main-item__name {
  padding: .2rem; }

.dropdown-main-item__name {
  width: 100%;
  text-align: center; }

.side-bar-dropdown:hover .side-bar-dropdown-main {
  display: flex;
  flex-direction: column; }

.search-bar {
  display: flex;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 2rem;
  padding: 5px;
  min-width: 50px; }

.search-bar__input-field {
  background-color: transparent;
  margin-left: 0.5rem;
  border: 0; }

.form {
  display: grid;
  grid-template-rows: auto 1fr;
  grid-template-columns: repeat(3, 1fr);
  padding: 1rem;
  grid-gap: 1rem; }

.form__title {
  grid-column-end: span 3;
  border-bottom: 1px solid #000;
  padding-left: 1rem; }

.form__column {
  display: flex;
  flex-direction: column; }

.form__column--right {
  align-items: flex-end; }

.form__element > * {
  display: block;
  margin: 0.5rem 0; }

.form__input {
  border: 1px solid #ccc;
  border-radius: 0;
  padding: 0.5rem;
  width: 100%; }

.form__elements {
  display: flex;
  align-items: center; }
  .form__elements > * {
    margin: 0 0.5rem; }

.form__cancel {
  display: block;
  text-decoration: underline;
  margin: 0.5rem;
  cursor: pointer; }
  .form__cancel.theme-light {
    color: #a00d17; }
  .theme-light .form__cancel {
    color: #a00d17; }
  .form__cancel.theme-dark {
    color: #a00d17; }
  .theme-dark .form__cancel {
    color: #a00d17; }

.form__select {
  border: 1px solid #ccc;
  padding: 0.5rem;
  width: 100%; }

.form__checkbox {
  display: flex;
  align-items: center;
  margin: 1rem 0;
  cursor: pointer; }

.form__checkbox-input {
  margin-right: 0.5rem; }

.form__image-upload {
  display: flex;
  align-items: center; }

.form__img {
  width: 100px;
  height: 100px; }

.form__img--golden-ratio {
  width: 161px;
  height: 100px; }

.form__img--empty {
  background-image: url("../img/add-image.svg");
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid #000;
  opacity: 0.5;
  border-radius: 5px;
  outline: none; }

.form__add-logo > * {
  display: block;
  margin: 0.5rem; }

.form__list-row {
  display: flex;
  justify-content: space-between;
  align-items: center; }

.form__subcolumns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0.5rem; }

.form-radio-btn-list__options {
  display: flex;
  flex-direction: column; }

.form-radio-btn-list__option {
  display: flex; }

.form__radio-btn {
  display: flex;
  align-items: center; }

.form__date-picker {
  padding: 0.5rem; }

.multi-select-bt {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  padding: 0.5rem 1rem;
  box-sizing: border-box;
  cursor: pointer;
  background-color: transparent;
  border: 1px solid; }
  .multi-select-bt.theme-light {
    border-color: #bebebe; }
  .theme-light .multi-select-bt {
    border-color: #bebebe; }
  .multi-select-bt.theme-dark {
    border-color: #bebebe; }
  .theme-dark .multi-select-bt {
    border-color: #bebebe; }
  .multi-select-bt__icon {
    height: 20px; }
    .multi-select-bt__icon--selector {
      width: 10px; }
  .multi-select-bt__label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    max-width: 400px; }

.multi-select-opt {
  display: flex;
  align-items: center;
  justify-content: start;
  font-size: 12px;
  padding: 0.5rem;
  border-left: 3px solid transparent;
  cursor: pointer; }
  .multi-select-opt:hover {
    border-left: 3px solid; }
    .multi-select-opt:hover.theme-light {
      border-color: #bf0411; }
    .theme-light .multi-select-opt:hover {
      border-color: #bf0411; }
    .multi-select-opt:hover.theme-dark {
      border-color: #bf0411; }
    .theme-dark .multi-select-opt:hover {
      border-color: #bf0411; }
  .multi-select-opt__custom-checkbox-icon {
    min-width: 15px;
    width: 15px;
    height: 15px;
    border: 1px solid;
    margin-right: 1rem; }
    .multi-select-opt__custom-checkbox-icon--checked {
      background-image: url("../img/custom-checkbox-checkmark-white.svg");
      background-position: 50% 50%;
      background-size: cover;
      background-repeat: no-repeat; }
      .multi-select-opt__custom-checkbox-icon--checked.theme-light {
        background-color: #bf0411; }
      .theme-light .multi-select-opt__custom-checkbox-icon--checked {
        background-color: #bf0411; }
      .multi-select-opt__custom-checkbox-icon--checked.theme-dark {
        background-color: #bf0411; }
      .theme-dark .multi-select-opt__custom-checkbox-icon--checked {
        background-color: #bf0411; }
  .multi-select-opt__label {
    text-align: left; }

.multi-select-opts-container {
  width: 160px;
  position: relative;
  z-index: 999; }
  .multi-select-opts-container--extra-wide {
    width: 250px; }
  .multi-select-opts-container--full-rel-wide {
    width: 100%; }
  .multi-select-opts-container__tooltip {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    overflow-y: auto; }
    .multi-select-opts-container__tooltip.theme-light {
      background-color: #f3f3f3; }
    .theme-light .multi-select-opts-container__tooltip {
      background-color: #f3f3f3; }
    .multi-select-opts-container__tooltip.theme-dark {
      background-color: #1b1b1b; }
    .theme-dark .multi-select-opts-container__tooltip {
      background-color: #1b1b1b; }

.generic-popup__backdrop {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0; }
  .generic-popup__backdrop.generic-popup__backdrop--lightbox {
    z-index: 3;
    background-color: rgba(0, 0, 0, 0.5); }

.generic-popup__container {
  padding: 2rem;
  background-color: #fff;
  border-radius: 1rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2; }

.generic-error-popup {
  position: relative; }
  .generic-error-popup img {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 16px;
    cursor: pointer; }
  .generic-error-popup > * {
    display: block; }

.generic-confirmation-popup {
  display: flex;
  flex-direction: column;
  gap: 2rem; }

.generic-confirmation-popup__buttons {
  display: flex;
  gap: 0.5rem; }

.loading-popup__container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  background-color: #fff;
  border-radius: 1rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); }

.loading-popup__backdrop {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2; }
  .loading-popup__backdrop.loading-popup__backdrop--lightbox {
    background-color: rgba(0, 0, 0, 0.5); }

.loading-popup__spinner {
  height: 2em; }

.cropper {
  display: grid;
  grid-template-columns: 2fr 1.5fr; }

.cropper__preview {
  position: relative;
  height: 100%;
  width: 100%; }

.cropper__preview--empty {
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #000;
  opacity: 0.5; }

.cropper__zoom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 40%;
  margin-left: auto;
  margin-right: auto;
  padding: 0.5rem; }

.cropper__crop-area {
  color: rgba(0, 0, 0, 0.6) !important;
  border-color: #000 !important; }

.cropper__options {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 1rem; }

.cropper__file-input {
  margin-bottom: 2rem; }

.manage-circuit__org-selector {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr; }
  .manage-circuit__org-selector span:not(:first-child) {
    text-align: center; }

.manage-circuit__role-selector {
  display: flex;
  align-items: center;
  justify-content: center; }

.manage-circuit__location-actions {
  margin: 1rem 0; }

.circuit-integration__day {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0.5rem;
  margin: 0.5rem 0; }

.circuit-integration__day-title {
  grid-column-start: span 2;
  font-weight: bold;
  display: flex;
  cursor: pointer; }

.circuit-integration__period-selector {
  display: flex;
  align-items: center; }
  .circuit-integration__period-selector div:first-child {
    flex: 1; }

.circuit-integration__hour-selector {
  display: flex;
  flex-direction: column; }

.circuit-integration__hour-adder {
  border-radius: 50%;
  border: 1px solid;
  width: 25px;
  height: 25px;
  padding: 2px;
  cursor: pointer;
  margin-left: 0.5rem; }
  .circuit-integration__hour-adder.theme-light {
    border-color: #bf0411; }
  .theme-light .circuit-integration__hour-adder {
    border-color: #bf0411; }
  .circuit-integration__hour-adder.theme-dark {
    border-color: #bf0411; }
  .theme-dark .circuit-integration__hour-adder {
    border-color: #bf0411; }

.circuit-integration__fixed-time {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center; }

.circuit-location-actions__button {
  border-radius: 10px;
  background-color: white;
  border-color: red;
  color: red;
  outline: none; }

.manage-circuit__location-selector {
  margin: 0.5rem 0; }

.manage-circuit__location-input {
  margin: 0.5rem 0; }

.manage-circuit__checkbox-container {
  float: left; }

.manage-circuit__checkbox {
  margin-left: 1rem; }

.manage-circuit__delivery-times {
  display: flex; }

.manage-circuit__delivery-time-value {
  width: 35px;
  text-align: center; }

.manage-circuit__estimated-delivery-hours {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0 0.5rem; }

.manage-circuit__estimated-delivery-hours-title {
  grid-column-start: span 3; }

.cycle {
  padding: 20px 10px 20px 70px;
  position: relative; }

.cycle__loop {
  position: absolute;
  width: 50px;
  height: 100%;
  border: solid 2px;
  left: 0;
  top: 0;
  border-radius: 50px;
  box-sizing: border-box;
  z-index: 0; }
  .cycle__loop.theme-light {
    border-color: #bf0411; }
  .theme-light .cycle__loop {
    border-color: #bf0411; }
  .cycle__loop.theme-dark {
    border-color: #bf0411; }
  .theme-dark .cycle__loop {
    border-color: #bf0411; }

.cycle__step {
  height: 2.5rem; }
  .cycle__step::after {
    content: '';
    position: relative;
    background-image: url("../img/location-action-diagram-dot.svg");
    background-size: 12px 67px;
    display: block;
    width: 12px;
    height: 100%;
    margin: -50px 0 10px -27px;
    z-index: 2; }

.accessible-circuit {
  position: relative;
  border-radius: 5px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  margin-top: 1rem;
  padding-left: 15px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem; }
  .accessible-circuit.theme-light {
    background-color: #fff; }
  .theme-light .accessible-circuit {
    background-color: #fff; }
  .accessible-circuit.theme-dark {
    background-color: #000; }
  .theme-dark .accessible-circuit {
    background-color: #000; }
  .accessible-circuit--ok:after.theme-light, .accessible-circuit--ok .circuit__status-icon.theme-light {
    color: #3c751b; }
  .theme-light .accessible-circuit--ok:after, .theme-light .accessible-circuit--ok .circuit__status-icon {
    color: #3c751b; }
  .accessible-circuit--ok:after.theme-light, .accessible-circuit--ok .circuit__status-icon.theme-light {
    background-color: #3c751b; }
  .theme-light .accessible-circuit--ok:after, .theme-light .accessible-circuit--ok .circuit__status-icon {
    background-color: #3c751b; }
  .accessible-circuit--prevention:after.theme-light, .accessible-circuit--prevention .circuit__status-icon.theme-light {
    color: #e4b200; }
  .theme-light .accessible-circuit--prevention:after, .theme-light .accessible-circuit--prevention .circuit__status-icon {
    color: #e4b200; }
  .accessible-circuit--prevention:after.theme-light, .accessible-circuit--prevention .circuit__status-icon.theme-light {
    background-color: #e4b200; }
  .theme-light .accessible-circuit--prevention:after, .theme-light .accessible-circuit--prevention .circuit__status-icon {
    background-color: #e4b200; }
  .accessible-circuit--alert:after.theme-light, .accessible-circuit--alert .circuit__status-icon.theme-light {
    color: #bf0411; }
  .theme-light .accessible-circuit--alert:after, .theme-light .accessible-circuit--alert .circuit__status-icon {
    color: #bf0411; }
  .accessible-circuit--alert:after.theme-light, .accessible-circuit--alert .circuit__status-icon.theme-light {
    background-color: #bf0411; }
  .theme-light .accessible-circuit--alert:after, .theme-light .accessible-circuit--alert .circuit__status-icon {
    background-color: #bf0411; }
  .accessible-circuit:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 100%;
    border-top-left-radius: inherit;
    border-bottom-left-radius: inherit; }
  .accessible-circuit__header {
    display: flex;
    padding: 0.5rem 2rem;
    padding-bottom: 0;
    gap: 1rem; }
  .accessible-circuit__title {
    font-weight: bold; }
  .accessible-circuit__references {
    margin-left: auto; }
    .accessible-circuit__references > * {
      margin: 0; }
  .accessible-circuit__image-container {
    width: 60px;
    height: 60px; }
  .accessible-circuit__image {
    background: white;
    border-radius: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain; }
  .accessible-circuit__body {
    padding: 0 2rem;
    flex: 1;
    display: flex;
    justify-content: space-between;
    gap: 1rem; }
  .accessible-circuit__buttons {
    display: flex;
    padding: 0 2rem;
    gap: 2rem; }
    .accessible-circuit__buttons > * {
      padding: 0.5rem;
      border-radius: 20px;
      font-weight: bold; }
  .accessible-circuit__stock-btn {
    flex: 0.5;
    border: 2px solid; }
    .accessible-circuit__stock-btn.theme-light {
      border-color: #bf0411; }
    .theme-light .accessible-circuit__stock-btn {
      border-color: #bf0411; }
    .accessible-circuit__stock-btn.theme-dark {
      border-color: #bf0411; }
    .theme-dark .accessible-circuit__stock-btn {
      border-color: #bf0411; }
    .accessible-circuit__stock-btn.theme-light {
      color: #bf0411; }
    .theme-light .accessible-circuit__stock-btn {
      color: #bf0411; }
    .accessible-circuit__stock-btn.theme-dark {
      color: #bf0411; }
    .theme-dark .accessible-circuit__stock-btn {
      color: #bf0411; }
    .accessible-circuit__stock-btn.theme-light {
      background-color: transparent; }
    .theme-light .accessible-circuit__stock-btn {
      background-color: transparent; }
    .accessible-circuit__stock-btn.theme-dark {
      background-color: transparent; }
    .theme-dark .accessible-circuit__stock-btn {
      background-color: transparent; }
  .accessible-circuit__consume-btn {
    flex: 1; }
  .accessible-circuit__footer {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 2rem; }
    .accessible-circuit__footer.theme-light {
      background-color: #f3f3f3; }
    .theme-light .accessible-circuit__footer {
      background-color: #f3f3f3; }
    .accessible-circuit__footer.theme-dark {
      background-color: #1b1b1b; }
    .theme-dark .accessible-circuit__footer {
      background-color: #1b1b1b; }
    .accessible-circuit__footer > * {
      display: flex;
      align-items: center;
      gap: 0.5rem; }
  .accessible-circuit__stock-value {
    font-weight: bold; }

.info-card {
  display: flex;
  flex-direction: column;
  box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.1);
  border-radius: 5px; }
  .info-card__header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem;
    font-weight: bold;
    gap: 0.5rem;
    font-size: 14px; }
    .info-card__header.theme-light {
      background-color: #f3f3f3; }
    .theme-light .info-card__header {
      background-color: #f3f3f3; }
    .info-card__header.theme-dark {
      background-color: #1b1b1b; }
    .theme-dark .info-card__header {
      background-color: #1b1b1b; }
  .info-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    text-align: center;
    padding: 0.5rem; }
  .info-card__icon {
    max-width: 50px; }
  .info-card__big-text {
    font-size: 25px;
    font-weight: bold; }

.ekanban-circuit {
  position: relative;
  display: grid;
  grid-template-areas: "toolbar" "detailed-circuit";
  grid-template-rows: auto minmax(0, 1fr);
  height: 100%; }
  .ekanban-circuit.theme-light {
    color: #000; }
  .theme-light .ekanban-circuit {
    color: #000; }
  .ekanban-circuit.theme-dark {
    color: #fff; }
  .theme-dark .ekanban-circuit {
    color: #fff; }
  .ekanban-circuit.theme-light {
    background-color: #f3f3f3; }
  .theme-light .ekanban-circuit {
    background-color: #f3f3f3; }
  .ekanban-circuit.theme-dark {
    background-color: #1b1b1b; }
  .theme-dark .ekanban-circuit {
    background-color: #1b1b1b; }

.ekanban-circuit--shortcuts {
  grid-template-areas: "toolbar toolbar" "shortcuts detailed-circuit";
  grid-template-columns: minmax(0, 1fr) minmax(0, 5fr); }

.ekanban-circuit--general-info {
  grid-template-areas: "toolbar toolbar" "general-info detailed-circuit";
  grid-template-columns: 1fr minmax(0, 5fr); }
  .ekanban-circuit--general-info .circuit-details {
    grid-column: 1 / 3; }

.ekanban-circuit--both {
  grid-template-areas: "toolbar toolbar toolbar" "shortcuts general-info detailed-circuit";
  grid-template-columns: minmax(0, 1fr) 1fr minmax(0, 5fr); }
  .ekanban-circuit--both .circuit-details {
    grid-column: 2 / 4; }

.ekanban-circuit__general-buttons {
  position: absolute;
  width: 10px;
  top: 74px;
  bottom: 0;
  background-color: #fff;
  z-index: 2; }
  .ekanban-circuit__general-buttons .ekanban-circuit__button {
    width: 32px;
    margin-left: 10px; }
    .ekanban-circuit__general-buttons .ekanban-circuit__button:first-child {
      margin-top: 0; }

.ekanban-circuit__buttons {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  right: -32px;
  top: 0; }

.ekanban-circuit__button {
  position: relative;
  padding: 4px;
  background-color: #fff;
  margin: 0.5rem 0;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #fff; }
  .ekanban-circuit__button::after {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    bottom: -8px;
    left: 0;
    border-style: solid;
    border-width: 8px 10px 0 0;
    border-color: #fff transparent transparent transparent;
    border-top-color: inherit; }

.ekanban-circuit__button--selected.theme-light {
  background-color: #bf0411; }

.theme-light .ekanban-circuit__button--selected {
  background-color: #bf0411; }

.ekanban-circuit__button--selected.theme-dark {
  background-color: #bf0411; }

.theme-dark .ekanban-circuit__button--selected {
  background-color: #bf0411; }

.ekanban-circuit__button--selected.theme-light {
  color: #bf0411; }

.theme-light .ekanban-circuit__button--selected {
  color: #bf0411; }

.ekanban-circuit__button--selected.theme-dark {
  color: #bf0411; }

.theme-dark .ekanban-circuit__button--selected {
  color: #bf0411; }

.ekanban-circuit__shortcuts {
  position: relative;
  grid-area: shortcuts;
  display: grid;
  grid-template-rows: auto 1fr;
  grid-template-columns: 100%;
  z-index: 2; }

.ekanban-circuit__shortcuts-toolbar {
  display: flex;
  margin: 0.5rem; }

.ekanban-circuit__shortcuts-list {
  padding: 0.5rem;
  overflow-y: auto; }

.circuit--minimal {
  display: grid;
  grid-template-rows: 5px auto;
  border-radius: 4px;
  margin: 0.5rem; }

.circuit--minimal-info {
  padding: 0.5rem; }

.circuit--minimal-info__name,
.circuit--minimal-info__reference {
  display: block;
  font-size: .9rem;
  margin: 0; }

.circuit--minimal:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2); }

.circuit--minimal--selected {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  grid-template-rows: auto;
  grid-template-columns: 1fr 3fr; }
  .circuit--minimal--selected.theme-light {
    background-color: #ccc; }
  .theme-light .circuit--minimal--selected {
    background-color: #ccc; }

.circuit--minimal-status {
  grid-row-start: 1;
  display: flex;
  border-top-right-radius: inherit; }

.circuit--minimal-status-icon {
  border-radius: 50%;
  border: 1px solid;
  border-color: inherit;
  height: 300%;
  z-index: 2; }

.circuit-details__icon {
  margin-right: 0.5rem; }

.circuit--minimal-status-bar {
  display: flex;
  flex: 1;
  border-top-right-radius: inherit;
  position: relative; }
  .circuit--minimal-status-bar > *:last-child {
    border-top-right-radius: inherit; }
  .circuit--minimal-status-bar > *:first-child:before {
    content: '';
    position: absolute;
    background-color: #fff;
    top: -1px;
    left: -8px;
    width: 10px;
    height: 10px;
    border-radius: 50%; }

.circuit-details {
  position: relative;
  display: grid;
  padding: 1rem;
  grid-template-areas: "graph table" "graph table";
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-columns: 1fr 4fr;
  grid-gap: 1rem;
  grid-row: 2; }
  .circuit-details--with-evolution-graph {
    grid-template-areas: "graph table" "evolution evolution"; }
  .circuit-details__evolution-graph-visibility-btn {
    position: absolute;
    bottom: 0;
    left: 10px;
    width: 32px;
    height: 32px;
    border-radius: 5px 5px 0 0;
    background-color: #fff;
    color: #fff; }
    .circuit-details__evolution-graph-visibility-btn--selected {
      top: -32px;
      left: 0;
      bottom: initial; }
      .circuit-details__evolution-graph-visibility-btn--selected.theme-light {
        background-color: #bf0411; }
      .theme-light .circuit-details__evolution-graph-visibility-btn--selected {
        background-color: #bf0411; }
      .circuit-details__evolution-graph-visibility-btn--selected.theme-dark {
        background-color: #bf0411; }
      .theme-dark .circuit-details__evolution-graph-visibility-btn--selected {
        background-color: #bf0411; }
      .circuit-details__evolution-graph-visibility-btn--selected.theme-light {
        color: #bf0411; }
      .theme-light .circuit-details__evolution-graph-visibility-btn--selected {
        color: #bf0411; }
      .circuit-details__evolution-graph-visibility-btn--selected.theme-dark {
        color: #bf0411; }
      .theme-dark .circuit-details__evolution-graph-visibility-btn--selected {
        color: #bf0411; }
    .circuit-details__evolution-graph-visibility-btn img {
      width: 24px;
      height: 24px; }
    .circuit-details__evolution-graph-visibility-btn:after {
      position: absolute;
      right: -0.4rem;
      bottom: 0;
      content: '';
      border-color: transparent;
      border-left-color: inherit;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: .5rem 0 0 .5rem; }

.circuit-details__evolution {
  position: relative;
  grid-area: evolution;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 0.5rem; }

.circuit-details__evolution-header {
  display: flex;
  align-items: center;
  justify-content: space-between; }

.circuit-details__evolution-graph {
  height: 100%;
  width: 100%; }

.circuit-details__evolution-time-controls > * {
  margin: 0 2px; }

.circuit-details__graph-container {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px; }
  .circuit-details__graph-container > *:first-child {
    flex: 1; }

.circuit-details__general-info {
  position: relative;
  grid-area: general-info;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(4, 1fr) auto;
  grid-gap: 1rem;
  z-index: 2;
  padding: 0.5rem; }
  .circuit-details__general-info.theme-light {
    background-color: #f3f3f3; }
  .theme-light .circuit-details__general-info {
    background-color: #f3f3f3; }
  .circuit-details__general-info.theme-dark {
    background-color: #1b1b1b; }
  .theme-dark .circuit-details__general-info {
    background-color: #1b1b1b; }

.circuit-details__info-block {
  display: grid;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  grid-template-rows: auto minmax(0, 1fr); }

.circuit-details__info-block--double {
  grid-column-end: span 2;
  grid-template-columns: 1fr 1fr; }
  .circuit-details__info-block--double .circuit-details__info-header {
    grid-column-end: span 2; }

.circuit-details__info-header {
  display: flex;
  justify-content: center;
  padding: 0.5rem; }
  .circuit-details__info-header.theme-light {
    color: #000; }
  .theme-light .circuit-details__info-header {
    color: #000; }
  .circuit-details__info-header.theme-dark {
    color: #fff; }
  .theme-dark .circuit-details__info-header {
    color: #fff; }

.circuit-details__info-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0.5rem; }
  .circuit-details__info-content.theme-light {
    background-color: #fff; }
  .theme-light .circuit-details__info-content {
    background-color: #fff; }
  .circuit-details__info-content.theme-dark {
    background-color: #000; }
  .theme-dark .circuit-details__info-content {
    background-color: #000; }

.circuit-details__info-content--double {
  padding: 5px; }

.circuit-details__info-company {
  display: flex;
  justify-content: center; }

.circuit-details__info-details > * {
  display: block; }

.circuit-details__graph-footer {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap; }

.circuit-details__graph-footer-piece {
  display: flex;
  align-items: center; }
  .circuit-details__graph-footer-piece > * {
    padding: 5px; }

.circuit-details__info-status {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center; }

.circuit-details__info-block,
.circuit-details__info-status {
  border-radius: 0.5rem; }

.circuit-details__info-last-consumed {
  grid-column-end: span 2;
  text-align: center;
  padding: 1rem; }

.circuit-details__stock-cards {
  grid-area: stock-info;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 0.5rem; }

.circuit-details__stock-card {
  display: grid;
  grid-template-rows: auto 1fr;
  grid-template-areas: "status" "content"; }

.circuit-details__stock-card--minimized {
  grid-template-rows: 1fr auto;
  grid-template-areas: "none" "status"; }
  .circuit-details__stock-card--minimized .circuit-details__stock-card-content {
    display: none; }

.circuit-details__stock-card--medium {
  grid-template-rows: 1fr auto 2fr;
  grid-template-areas: "none" "status" "content"; }

.circuit-details__stock-card-content {
  grid-area: content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; }
  .circuit-details__stock-card-content.theme-light {
    background-color: #fff; }
  .theme-light .circuit-details__stock-card-content {
    background-color: #fff; }
  .circuit-details__stock-card-content.theme-dark {
    background-color: #000; }
  .theme-dark .circuit-details__stock-card-content {
    background-color: #000; }

.circuit-details__stock-card-status {
  grid-area: status;
  padding: 0.5rem; }

.circuit-details__summary-cards {
  grid-area: summary-info;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0.5rem; }

.circuit-details--popup .circuit-details__stock-cards {
  grid-template-columns: repeat(5, 1fr); }

.circuit-details__popup {
  display: grid;
  position: relative;
  margin: 0.5rem; }

.circuit-details__close {
  position: absolute;
  right: 0;
  top: 0;
  margin: 0.5rem;
  cursor: pointer; }

.circuit-details__evolution,
.circuit-details__popup,
.ekanban-circuit__shortcuts {
  border-radius: 4px; }
  .circuit-details__evolution.theme-light,
  .circuit-details__popup.theme-light,
  .ekanban-circuit__shortcuts.theme-light {
    background-color: #fff; }
  .theme-light .circuit-details__evolution, .theme-light
  .circuit-details__popup, .theme-light
  .ekanban-circuit__shortcuts {
    background-color: #fff; }
  .circuit-details__evolution.theme-dark,
  .circuit-details__popup.theme-dark,
  .ekanban-circuit__shortcuts.theme-dark {
    background-color: #000; }
  .theme-dark .circuit-details__evolution, .theme-dark
  .circuit-details__popup, .theme-dark
  .ekanban-circuit__shortcuts {
    background-color: #000; }

.ekanban-circuit__table-container {
  grid-area: table;
  display: grid;
  grid-template-rows: minmax(100px, 150px) minmax(150px, 1fr);
  grid-template-columns: 100%;
  grid-gap: .5rem; }

.ekanban-circuit__table {
  grid-template-rows: auto auto minmax(0, 1fr);
  padding: 1rem 2rem; }
  .ekanban-circuit__table.theme-light {
    background-color: #fff; }
  .theme-light .ekanban-circuit__table {
    background-color: #fff; }
  .ekanban-circuit__table.theme-dark {
    background-color: #000; }
  .theme-dark .ekanban-circuit__table {
    background-color: #000; }

.ekanban-circuit__table-header--in-warehouse,
.ekanban-circuit__table-row--in-warehouse {
  grid-template-columns: 1.5fr repeat(6, 1fr) 0.4fr; }

.ekanban-circuit__table-header--preparing,
.ekanban-circuit__table-row--preparing {
  grid-template-columns: 1.5fr 1fr 1fr 2fr 2fr 1fr; }

.ekanban-circuit__card-state-note-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.5rem; }

.ekanban-circuit__table-selectors {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, minmax(0, 2fr));
  grid-template-rows: 100%;
  grid-gap: 0.5%; }

.ekanban-circuit__table-selector {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  border-radius: .5rem;
  cursor: pointer; }
  .ekanban-circuit__table-selector.theme-light {
    color: #fff; }
  .theme-light .ekanban-circuit__table-selector {
    color: #fff; }
  .ekanban-circuit__table-selector.theme-dark {
    color: #fff; }
  .theme-dark .ekanban-circuit__table-selector {
    color: #fff; }
  .ekanban-circuit__table-selector img {
    margin-right: 0.5rem;
    border-radius: 50%; }
  .ekanban-circuit__table-selector div {
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    flex-wrap: wrap;
    font-size: calc(12px + (26 - 14) * ((100vw - 1024px) / (1600 - 300))); }

.ekanban-circuit__table-selector--selected:before {
  content: '';
  width: 100%;
  height: 1rem;
  position: absolute;
  bottom: 0;
  background-color: #f3f3f3; }

.ekanban-circuit__table-selector--selected:after {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border-left: .5rem solid transparent;
  border-right: .5rem solid transparent;
  border-top: .5rem solid;
  border-top-color: inherit;
  bottom: .6rem; }

.ekanban-circuit__card-num {
  font-size: calc(14px + (50 - 14) * ((100vw - 1024px) / (1600 - 300)));
  padding-bottom: .5rem; }

.ekanban-circuit__table-toolbar {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem; }

.ekanban-circuit__integrate-popup,
.ekanban-circuit__adjust-stock-popup,
.ekanban-circuit__consume-multi-popup {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 300px; }
  .ekanban-circuit__integrate-popup > *,
  .ekanban-circuit__adjust-stock-popup > *,
  .ekanban-circuit__consume-multi-popup > * {
    margin: 0.5rem 0; }

.ekanban-circuit__card-state-note-popup {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; }
  .ekanban-circuit__card-state-note-popup > * {
    min-width: 30%;
    margin: 0.5rem 0; }

.ekanban-circuit__stock-selector {
  display: flex;
  justify-content: center;
  align-items: center; }

.ekanban-circuit__stock-selector-input {
  width: 100px; }

.ekanban-circuit__rm-stock,
.ekanban-circuit__add-stock {
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 2px;
  font-size: 1.5rem;
  width: 30px;
  height: 30px;
  margin: 0.5rem;
  cursor: pointer; }
  .ekanban-circuit__rm-stock.theme-light,
  .ekanban-circuit__add-stock.theme-light {
    border-color: #bf0411; }
  .theme-light .ekanban-circuit__rm-stock, .theme-light
  .ekanban-circuit__add-stock {
    border-color: #bf0411; }
  .ekanban-circuit__rm-stock.theme-dark,
  .ekanban-circuit__add-stock.theme-dark {
    border-color: #bf0411; }
  .theme-dark .ekanban-circuit__rm-stock, .theme-dark
  .ekanban-circuit__add-stock {
    border-color: #bf0411; }
  .ekanban-circuit__rm-stock.theme-light,
  .ekanban-circuit__add-stock.theme-light {
    color: #bf0411; }
  .theme-light .ekanban-circuit__rm-stock, .theme-light
  .ekanban-circuit__add-stock {
    color: #bf0411; }
  .ekanban-circuit__rm-stock.theme-dark,
  .ekanban-circuit__add-stock.theme-dark {
    color: #bf0411; }
  .theme-dark .ekanban-circuit__rm-stock, .theme-dark
  .ekanban-circuit__add-stock {
    color: #bf0411; }

.ekanban-circuit__rm-stock--bigger,
.ekanban-circuit__add-stock--bigger {
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 2px;
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  margin: 0.5rem;
  cursor: pointer; }
  .ekanban-circuit__rm-stock--bigger.theme-light,
  .ekanban-circuit__add-stock--bigger.theme-light {
    border-color: #bf0411; }
  .theme-light .ekanban-circuit__rm-stock--bigger, .theme-light
  .ekanban-circuit__add-stock--bigger {
    border-color: #bf0411; }
  .ekanban-circuit__rm-stock--bigger.theme-dark,
  .ekanban-circuit__add-stock--bigger.theme-dark {
    border-color: #bf0411; }
  .theme-dark .ekanban-circuit__rm-stock--bigger, .theme-dark
  .ekanban-circuit__add-stock--bigger {
    border-color: #bf0411; }
  .ekanban-circuit__rm-stock--bigger.theme-light,
  .ekanban-circuit__add-stock--bigger.theme-light {
    color: #bf0411; }
  .theme-light .ekanban-circuit__rm-stock--bigger, .theme-light
  .ekanban-circuit__add-stock--bigger {
    color: #bf0411; }
  .ekanban-circuit__rm-stock--bigger.theme-dark,
  .ekanban-circuit__add-stock--bigger.theme-dark {
    color: #bf0411; }
  .theme-dark .ekanban-circuit__rm-stock--bigger, .theme-dark
  .ekanban-circuit__add-stock--bigger {
    color: #bf0411; }

.ekanban-circuit__stock {
  font-size: 2rem; }

.ekanban-circuit__box-icon {
  width: 30%; }

.ekanban-circuit__label-creator {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0 2rem; }
  .ekanban-circuit__label-creator .form__element:last-of-type {
    grid-column: span 2;
    margin: 0 20%; }

.ekanban-circuit__label-create-button {
  grid-column: span 2;
  margin: 0 30%;
  border-radius: 20px; }

.label-creator__checkbox {
  margin-right: 0.5rem; }

.label-creator__input-label {
  display: flex;
  font-weight: bold; }

.label-creator__input {
  border-radius: 20px; }

.label-creator__tooltip-container {
  position: relative;
  margin-left: 0.5rem; }

.label-creator__tooltip {
  position: absolute;
  top: 0;
  left: 40px;
  width: 250px;
  padding: 1rem; }
  .label-creator__tooltip.theme-light {
    background-color: #000; }
  .theme-light .label-creator__tooltip {
    background-color: #000; }
  .label-creator__tooltip.theme-dark {
    background-color: #fff; }
  .theme-dark .label-creator__tooltip {
    background-color: #fff; }
  .label-creator__tooltip.theme-light {
    color: #fff; }
  .theme-light .label-creator__tooltip {
    color: #fff; }
  .label-creator__tooltip.theme-dark {
    color: #fff; }
  .theme-dark .label-creator__tooltip {
    color: #fff; }

.ekanban-circuit__actions {
  position: relative;
  padding: 0.5rem 2.5rem; }

.ekanban-circuit__actions-tooltip {
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: 100%;
  opacity: 0.9; }
  .ekanban-circuit__actions-tooltip.theme-light {
    background-color: #bf0411; }
  .theme-light .ekanban-circuit__actions-tooltip {
    background-color: #bf0411; }
  .ekanban-circuit__actions-tooltip.theme-dark {
    background-color: #bf0411; }
  .theme-dark .ekanban-circuit__actions-tooltip {
    background-color: #bf0411; }
  .ekanban-circuit__actions-tooltip.theme-light {
    border-color: #bf0411; }
  .theme-light .ekanban-circuit__actions-tooltip {
    border-color: #bf0411; }
  .ekanban-circuit__actions-tooltip.theme-dark {
    border-color: #bf0411; }
  .theme-dark .ekanban-circuit__actions-tooltip {
    border-color: #bf0411; }
  .ekanban-circuit__actions-tooltip > * {
    text-decoration: none;
    font-size: 14px;
    padding: 0.5rem 0; }
    .ekanban-circuit__actions-tooltip > *.theme-light {
      color: #fff; }
    .theme-light .ekanban-circuit__actions-tooltip > * {
      color: #fff; }
    .ekanban-circuit__actions-tooltip > *.theme-dark {
      color: #fff; }
    .theme-dark .ekanban-circuit__actions-tooltip > * {
      color: #fff; }

.ekanban-circuit__table-header {
  font-size: 15px;
  margin-right: 1rem; }

.ekanban-circuit__table-row {
  font-size: 14px; }

.ekanban-circuit__new-card-quantity-input {
  max-width: 100px; }

@media (min-width: 1024px) and (max-width: 1440px) {
  .ekanban-circuit__actions {
    padding: .4rem 2rem; }
  .ekanban-circuit__table-header {
    font-size: 12px;
    margin-right: 0; }
  .ekanban-circuit__table-row {
    font-size: 11px; }
  .circuit-details {
    grid-template-columns: minmax(0, 1fr) 4fr; } }

@media (max-width: 1024px) {
  .ekanban-circuit__actions {
    padding: .4rem 2rem; }
  .ekanban-circuit__table-header {
    font-size: 10px;
    margin-right: 0; }
  .ekanban-circuit__table-row {
    font-size: 9px; }
  .circuit-details {
    grid-template-columns: minmax(0, 1fr) 4fr; } }

@media (max-width: 1440px) {
  .circuit-details__info-header > span {
    display: none; }
  .circuit-details__info-status-desc {
    display: none; }
  .ekanban-circuit__table-container {
    grid-template-rows: auto minmax(0, 6.5fr); }
  .ekanban-circuit__card-num {
    font-size: 20px; }
  .ekanban-circuit__table-selector > div span {
    display: none; }
  .ekanban-circuit__table-selector > div img {
    margin: 0; }
  .circuit-details__graph-footer-piece-text {
    display: none; }
  .ekanban-circuit--shortcuts {
    grid-template-columns: 1fr minmax(0, 5fr); }
    .ekanban-circuit--shortcuts .circuit-details {
      grid-column: 1 / 3; } }

.manage-returnables {
  grid-template-rows: auto auto minmax(0, 1fr);
  grid-template-areas: "view-selector" "toolbar" "rest"; }

.manage-returnables--editor {
  grid-template-rows: repeat(4, auto) minmax(0, 1fr) auto; }

.manage-returnable__table {
  min-height: 75%;
  box-shadow: 1px 1px 6px 0 rgba(0, 0, 0, 0.2);
  border-radius: 5px; }
  .manage-returnable__table.theme-light {
    background-color: #fff; }
  .theme-light .manage-returnable__table {
    background-color: #fff; }
  .manage-returnable__table.theme-dark {
    background-color: #000; }
  .theme-dark .manage-returnable__table {
    background-color: #000; }

.manage-returnable__view-selector {
  grid-area: view-selector;
  display: flex; }
  .manage-returnable__view-selector > * {
    margin: 0.5rem; }

.manage-returnable__button {
  border-radius: 2px;
  border: none;
  display: flex;
  justify-content: center;
  box-shadow: 1px 1px 5px 0 #bebebe;
  transition: box-shadow .2s;
  display: flex;
  flex-direction: column;
  justify-content: center; }
  .manage-returnable__button:hover {
    box-shadow: 2px 2px 7px 0 #9c9c9c; }

.manage-returnable__code-parts {
  padding: 2rem 2rem 0.5rem 2rem;
  display: grid;
  grid-template-columns: 6fr 2fr repeat(5, 2.6fr) 1.5fr;
  grid-gap: 0.5rem; }

.manage-returnable__code-inputs {
  display: grid;
  grid-template-columns: repeat(24, 1fr); }

.manage-returnable__input {
  -moz-appearance: textfield; }
  .manage-returnable__input::-webkit-outer-spin-button, .manage-returnable__input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0; }

.manage-returnable__config {
  display: grid;
  grid-auto-rows: 1fr;
  grid-gap: 1rem;
  overflow-y: auto; }

.manage-returnable__opt,
.manage-returnable__reference {
  display: grid;
  grid-template-rows: auto 1fr;
  grid-gap: 1rem;
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.05); }

.manage-returnable__reference-header,
.manage-returnable__opt-header {
  border-bottom: 1px solid;
  text-align: center; }
  .manage-returnable__reference-header.theme-light,
  .manage-returnable__opt-header.theme-light {
    border-color: #000; }
  .theme-light .manage-returnable__reference-header, .theme-light
  .manage-returnable__opt-header {
    border-color: #000; }
  .manage-returnable__reference-header.theme-dark,
  .manage-returnable__opt-header.theme-dark {
    border-color: #fff; }
  .theme-dark .manage-returnable__reference-header, .theme-dark
  .manage-returnable__opt-header {
    border-color: #fff; }

.manage-returnable__reference-header,
.manage-returnable__opt-header {
  padding-bottom: 0.5rem; }

.manage-returnable__opt-row {
  margin: 0.5rem 0; }

.manage-returnable__opt-header,
.manage-returnable__opt-row,
.manage-returnable__reference-header,
.manage-returnable__reference-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, 150px);
  grid-gap: 0.5rem;
  align-items: center; }

.manage-returnable__code-selector > * {
  margin: 0 0.5rem; }

.manage-returnable__select {
  border: 1px solid #ccc;
  padding: 0.5rem; }

.manage-returnable__code-viewer-input,
.manage-returnable__row-input,
.manage-returnable__header-input,
.manage-returnable__header-input--opt {
  width: 25px;
  height: 40px;
  border-radius: 5px;
  border: 1px solid;
  text-align: center;
  margin: 0 auto; }

.manage-returnable__name-input,
.manage-returnable__row-input {
  border: 1px solid;
  text-align: center;
  height: 40px;
  border-radius: 5px; }
  .manage-returnable__name-input.theme-light,
  .manage-returnable__row-input.theme-light {
    background-color: #e9e9e9; }
  .theme-light .manage-returnable__name-input, .theme-light
  .manage-returnable__row-input {
    background-color: #e9e9e9; }
  .manage-returnable__name-input.theme-light,
  .manage-returnable__row-input.theme-light {
    border-color: #dadada; }
  .theme-light .manage-returnable__name-input, .theme-light
  .manage-returnable__row-input {
    border-color: #dadada; }

.manage-returnable__header-input {
  border-color: rgba(0, 0, 0, 0.6);
  background-color: rgba(0, 0, 0, 0.2); }

.manage-returnable__header-input--opt {
  border-color: rgba(191, 4, 17, 0.5);
  background-color: rgba(191, 4, 17, 0.15); }
  .manage-returnable__header-input--opt.theme-light {
    color: #bf0411; }
  .theme-light .manage-returnable__header-input--opt {
    color: #bf0411; }
  .manage-returnable__header-input--opt.theme-dark {
    color: #bf0411; }
  .theme-dark .manage-returnable__header-input--opt {
    color: #bf0411; }

.manage-returnable__opt-title-input {
  width: 100%;
  padding: 8px 12px;
  border-radius: 5px;
  border-color: rgba(191, 4, 17, 0.5);
  background-color: rgba(191, 4, 17, 0.15);
  text-align: center; }

.manage-returnable__row-number {
  text-align: center;
  color: rgba(0, 0, 0, 0.5); }

.manage-returnable__code-piece-separators,
.manage-returnable__code-viewer {
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  padding: 0.5rem 2rem; }

.manage-returnable__textarea {
  border-radius: 5px;
  border: 1px solid; }
  .manage-returnable__textarea.theme-light {
    border-color: #dadada; }
  .theme-light .manage-returnable__textarea {
    border-color: #dadada; }
  .manage-returnable__textarea.theme-light {
    background-color: #e9e9e9; }
  .theme-light .manage-returnable__textarea {
    background-color: #e9e9e9; }

.manage-returnable__code-title--opt.theme-light {
  color: #bf0411; }

.theme-light .manage-returnable__code-title--opt {
  color: #bf0411; }

.manage-returnable__code-title--opt.theme-dark {
  color: #bf0411; }

.theme-dark .manage-returnable__code-title--opt {
  color: #bf0411; }

.manage-returnable__add-more-container {
  max-width: 150px;
  text-align: center; }

.manage-returnable__add-more {
  border-radius: 50%;
  width: 25px; }
  .manage-returnable__add-more.theme-light {
    background-color: #bf0411; }
  .theme-light .manage-returnable__add-more {
    background-color: #bf0411; }
  .manage-returnable__add-more.theme-dark {
    background-color: #bf0411; }
  .theme-dark .manage-returnable__add-more {
    background-color: #bf0411; }

.manage-returnable__code-viewer-input {
  border: 1px solid;
  border-radius: 5px;
  margin: 0 auto; }
  .manage-returnable__code-viewer-input.theme-light {
    border-color: #dadada; }
  .theme-light .manage-returnable__code-viewer-input {
    border-color: #dadada; }
  .manage-returnable__code-viewer-input.theme-light {
    background-color: #e9e9e9; }
  .theme-light .manage-returnable__code-viewer-input {
    background-color: #e9e9e9; }

.manage-returnable__save-config {
  justify-self: right;
  margin: 0.5rem; }

.manage-returnable__code-piece-separator {
  margin: 0 0.5rem;
  border-bottom: 1px solid black;
  grid-row: 1; }

.manage-returnable__continue-button-container {
  display: flex;
  align-items: center;
  justify-content: center; }

.manage-returnable__lost-containers {
  position: relative; }

.returnable-containers {
  height: 100%;
  display: flex;
  flex-direction: column; }

.returnable-containers__button {
  border-radius: 20px;
  border: 1.5px solid;
  box-shadow: none;
  margin: 0 1rem; }
  .returnable-containers__button.theme-light {
    background-color: transparent; }
  .theme-light .returnable-containers__button {
    background-color: transparent; }
  .returnable-containers__button.theme-dark {
    background-color: transparent; }
  .theme-dark .returnable-containers__button {
    background-color: transparent; }
  .returnable-containers__button.theme-light {
    color: #bf0411; }
  .theme-light .returnable-containers__button {
    color: #bf0411; }
  .returnable-containers__button.theme-dark {
    color: #bf0411; }
  .theme-dark .returnable-containers__button {
    color: #bf0411; }
  .returnable-containers__button.theme-light {
    border-color: #bf0411; }
  .theme-light .returnable-containers__button {
    border-color: #bf0411; }
  .returnable-containers__button.theme-dark {
    border-color: #bf0411; }
  .theme-dark .returnable-containers__button {
    border-color: #bf0411; }

.returnable-containers__button--active.theme-light {
  color: #fff; }

.theme-light .returnable-containers__button--active {
  color: #fff; }

.returnable-containers__button--active.theme-dark {
  color: #fff; }

.theme-dark .returnable-containers__button--active {
  color: #fff; }

.returnable-containers__button--active.theme-light {
  background-color: #bf0411; }

.theme-light .returnable-containers__button--active {
  background-color: #bf0411; }

.returnable-containers__button--active.theme-dark {
  background-color: #bf0411; }

.theme-dark .returnable-containers__button--active {
  background-color: #bf0411; }

.returnable-summary {
  font-family: Arial;
  min-height: 0;
  display: flex;
  flex-direction: column; }

.returnable-summary__visualization {
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0.5rem 2rem; }

.returnable-summary__header,
.returnable-summary__body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  grid-template-rows: 1fr;
  grid-gap: 1rem; }

.returnable-summary__header {
  margin-right: 5px; }

.returnable-summary__body {
  overflow-y: scroll;
  scrollbar-width: thin; }

.summary-card {
  display: grid;
  grid-template-columns: 10px 1fr auto;
  grid-gap: 0.5rem;
  border-radius: 5px;
  box-shadow: 1px 1px 6px 0 rgba(0, 0, 0, 0.1); }
  .summary-card.theme-light {
    background-color: #fff; }
  .theme-light .summary-card {
    background-color: #fff; }
  .summary-card.theme-dark {
    background-color: #000; }
  .theme-dark .summary-card {
    background-color: #000; }

.summary-card__color-bar {
  border-radius: 5px 0 0 5px; }

.summary-card__total-container,
.summary-card__status-container {
  display: flex;
  flex-direction: column;
  padding: 0.5rem; }

.summary-card__total-container {
  justify-content: flex-end; }

.summary-card__total {
  font-size: 35px;
  font-weight: bold; }

.summary-card__title {
  font-size: 14px; }
  .summary-card__title.theme-light {
    color: #bebebe; }
  .theme-light .summary-card__title {
    color: #bebebe; }
  .summary-card__title.theme-dark {
    color: #bebebe; }
  .theme-dark .summary-card__title {
    color: #bebebe; }

.summary-card__container-status {
  display: flex;
  align-items: center; }

.summary-card__amount {
  font-weight: bold; }

.summary-card__container-status-text {
  margin: 0.5rem; }
  .summary-card__container-status-text > * {
    display: block;
    font-size: 14px; }
    .summary-card__container-status-text > *.theme-light {
      color: #bebebe; }
    .theme-light .summary-card__container-status-text > * {
      color: #bebebe; }
    .summary-card__container-status-text > *.theme-dark {
      color: #bebebe; }
    .theme-dark .summary-card__container-status-text > * {
      color: #bebebe; }

.summary-graph {
  box-shadow: 1px 1px 6px 0 rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  padding: 1rem; }
  .summary-graph.theme-light {
    background-color: #fff; }
  .theme-light .summary-graph {
    background-color: #fff; }
  .summary-graph.theme-dark {
    background-color: #000; }
  .theme-dark .summary-graph {
    background-color: #000; }

.summary-graph__element {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr;
  grid-auto-rows: 35px; }
  .summary-graph__element > * {
    display: flex;
    align-items: center;
    justify-content: center; }

.summary-graph__total,
.summary-graph__empty,
.summary-graph__full,
.summary-graph__transit {
  font-weight: bold; }

.summary-graph__label.theme-light,
.summary-graph__empty.theme-light,
.summary-graph__full.theme-light,
.summary-graph__transit.theme-light {
  color: #bebebe; }

.theme-light .summary-graph__label, .theme-light
.summary-graph__empty, .theme-light
.summary-graph__full, .theme-light
.summary-graph__transit {
  color: #bebebe; }

.summary-graph__label.theme-dark,
.summary-graph__empty.theme-dark,
.summary-graph__full.theme-dark,
.summary-graph__transit.theme-dark {
  color: #bebebe; }

.theme-dark .summary-graph__label, .theme-dark
.summary-graph__empty, .theme-dark
.summary-graph__full, .theme-dark
.summary-graph__transit {
  color: #bebebe; }

.summary-graph__empty,
.summary-graph__full,
.summary-graph__transit {
  border-top: 1px solid; }
  .summary-graph__empty.theme-light,
  .summary-graph__full.theme-light,
  .summary-graph__transit.theme-light {
    border-color: #bebebe; }
  .theme-light .summary-graph__empty, .theme-light
  .summary-graph__full, .theme-light
  .summary-graph__transit {
    border-color: #bebebe; }
  .summary-graph__empty.theme-dark,
  .summary-graph__full.theme-dark,
  .summary-graph__transit.theme-dark {
    border-color: #bebebe; }
  .theme-dark .summary-graph__empty, .theme-dark
  .summary-graph__full, .theme-dark
  .summary-graph__transit {
    border-color: #bebebe; }

.summary-graph__label {
  width: 100%;
  grid-column: 1 / 6;
  justify-content: start;
  margin-left: 0.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3); }

.summary-graph__total {
  justify-content: flex-end;
  font-size: 35px;
  grid-column: 1;
  grid-row: 2 / 4;
  margin-right: 0.5rem; }

.summary-graph__empty {
  grid-column: 2 / 3; }

.returnable-summary__toolbar {
  display: flex;
  flex-direction: column;
  padding: 0 2rem; }

.returnable-summary__toolbar-selectors {
  display: flex; }

.returnable-summary__selected-filters {
  display: flex;
  gap: 0.5rem;
  margin: 0 0.5rem; }
  .returnable-summary__selected-filters > * {
    padding: 3px 5px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center; }
    .returnable-summary__selected-filters > *.theme-light {
      color: #fff; }
    .theme-light .returnable-summary__selected-filters > * {
      color: #fff; }
    .returnable-summary__selected-filters > *.theme-dark {
      color: #fff; }
    .theme-dark .returnable-summary__selected-filters > * {
      color: #fff; }
    .returnable-summary__selected-filters > *.theme-light {
      background-color: #bf0411; }
    .theme-light .returnable-summary__selected-filters > * {
      background-color: #bf0411; }
    .returnable-summary__selected-filters > *.theme-dark {
      background-color: #bf0411; }
    .theme-dark .returnable-summary__selected-filters > * {
      background-color: #bf0411; }

.returnable-summary__remove-filter-icon {
  height: 20px;
  width: 20px;
  cursor: pointer; }

.returnable-summary__option-filter,
.returnable-summary__client-filter {
  position: relative;
  padding: 0.5rem; }

.returnable-summary__label {
  display: block;
  font-weight: bold;
  margin-bottom: 0.5rem;
  font-size: 14px; }

.returnable-summary__selector {
  border: 1px solid #ccc;
  padding: 0.5rem;
  border: 1px solid;
  background-color: rgba(191, 4, 17, 0.15);
  font-weight: bold;
  margin: 0 3px;
  max-width: 130px; }
  .returnable-summary__selector.theme-light {
    border-color: #bf0411; }
  .theme-light .returnable-summary__selector {
    border-color: #bf0411; }
  .returnable-summary__selector.theme-dark {
    border-color: #bf0411; }
  .theme-dark .returnable-summary__selector {
    border-color: #bf0411; }
  .returnable-summary__selector.theme-light {
    color: #bf0411; }
  .theme-light .returnable-summary__selector {
    color: #bf0411; }
  .returnable-summary__selector.theme-dark {
    color: #bf0411; }
  .theme-dark .returnable-summary__selector {
    color: #bf0411; }

.returnable-summary__option-filter {
  display: flex;
  flex-direction: column; }

.returnable-summary__options {
  display: flex;
  border-radius: 5px;
  background-color: #e9e9e9;
  color: rgba(0, 0, 0, 0.5); }

.returnable-summary__option {
  padding: 0.5rem;
  height: 35px;
  cursor: pointer;
  border: 1px solid;
  border-color: #dadada; }

.returnable-summary__option--active {
  background-color: rgba(191, 4, 17, 0.15); }
  .returnable-summary__option--active.theme-light {
    border-color: #bf0411; }
  .theme-light .returnable-summary__option--active {
    border-color: #bf0411; }
  .returnable-summary__option--active.theme-dark {
    border-color: #bf0411; }
  .theme-dark .returnable-summary__option--active {
    border-color: #bf0411; }
  .returnable-summary__option--active.theme-light {
    color: #bf0411; }
  .theme-light .returnable-summary__option--active {
    color: #bf0411; }
  .returnable-summary__option--active.theme-dark {
    color: #bf0411; }
  .theme-dark .returnable-summary__option--active {
    color: #bf0411; }

.returnable-summary__filter-tooltip {
  position: absolute;
  display: flex;
  flex-direction: column;
  left: 0;
  right: 0; }
  .returnable-summary__filter-tooltip.theme-light {
    background-color: #fff; }
  .theme-light .returnable-summary__filter-tooltip {
    background-color: #fff; }
  .returnable-summary__filter-tooltip.theme-dark {
    background-color: #fff; }
  .theme-dark .returnable-summary__filter-tooltip {
    background-color: #fff; }

.returnable-summary__filter-option {
  display: flex;
  flex-direction: column; }

.returnable-summary__by-client-filter-container {
  position: relative;
  width: 150px;
  font-weight: bold;
  margin-left: 2rem; }

.returnable-summary__by-client-filter {
  cursor: pointer;
  width: 150px; }

.returnable-summary__filter-option-title {
  margin: 0.5rem 0.5rem 0 0.5rem; }
  .returnable-summary__filter-option-title.theme-light {
    color: #bf0411; }
  .theme-light .returnable-summary__filter-option-title {
    color: #bf0411; }
  .returnable-summary__filter-option-title.theme-dark {
    color: #bf0411; }
  .theme-dark .returnable-summary__filter-option-title {
    color: #bf0411; }

.returnable-summary__filter-option {
  padding: 0.5rem;
  outline: none;
  border: none;
  background: transparent;
  font-weight: bold;
  cursor: pointer; }
  .returnable-summary__filter-option:hover {
    background-color: rgba(191, 4, 17, 0.15); }
    .returnable-summary__filter-option:hover.theme-light {
      color: #bf0411; }
    .theme-light .returnable-summary__filter-option:hover {
      color: #bf0411; }
    .returnable-summary__filter-option:hover.theme-dark {
      color: #bf0411; }
    .theme-dark .returnable-summary__filter-option:hover {
      color: #bf0411; }

.returnable-summary__date-picker {
  border: 1px solid;
  background-color: rgba(191, 4, 17, 0.15); }
  .returnable-summary__date-picker.theme-light {
    color: #bf0411; }
  .theme-light .returnable-summary__date-picker {
    color: #bf0411; }
  .returnable-summary__date-picker.theme-dark {
    color: #bf0411; }
  .theme-dark .returnable-summary__date-picker {
    color: #bf0411; }
  .returnable-summary__date-picker.theme-light {
    border-color: #bf0411; }
  .theme-light .returnable-summary__date-picker {
    border-color: #bf0411; }
  .returnable-summary__date-picker.theme-dark {
    border-color: #bf0411; }
  .theme-dark .returnable-summary__date-picker {
    border-color: #bf0411; }

@media (max-width: 1440px) {
  .returnable-summary__visualization {
    display: grid;
    grid-template-columns: 0.5fr 1.5fr;
    height: 100%;
    gap: 0.5rem; }
  .returnable-summary__body {
    overflow: hidden; }
  .returnable-summary__body, .returnable-summary__header {
    grid-template-columns: 1fr;
    grid-template-rows: 80px 130px 130px 80px 80px;
    grid-gap: 0.5rem; }
  .summary-card__total {
    font-size: 30px; }
  .summary-card__total-container {
    justify-content: flex-start; }
  .summary-card__container-status-text {
    margin: 0.2rem; }
  .summary-graph {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr)); }
  .summary-graph__element {
    grid-auto-rows: auto; }
  .summary-graph__total {
    justify-content: center;
    font-size: 30px; }
  .returnable-summary__option-filter, .returnable-summary__client-filter {
    padding: 0.2rem; } }

.returnable-list {
  height: 100%;
  margin: 2rem;
  overflow-y: auto; }

.returnable-list__filter-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0.5rem; }

.returnable-list__filter-icon {
  cursor: pointer;
  width: 30px;
  height: 30px; }

.returnable-list__report-tooltip-container {
  position: relative; }

.returnable-list__report-tooltip {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  z-index: 2; }
  .returnable-list__report-tooltip.theme-light {
    color: #fff; }
  .theme-light .returnable-list__report-tooltip {
    color: #fff; }
  .returnable-list__report-tooltip.theme-dark {
    color: #fff; }
  .theme-dark .returnable-list__report-tooltip {
    color: #fff; }
  .returnable-list__report-tooltip.theme-light {
    background-color: #bf0411; }
  .theme-light .returnable-list__report-tooltip {
    background-color: #bf0411; }
  .returnable-list__report-tooltip.theme-dark {
    background-color: #bf0411; }
  .theme-dark .returnable-list__report-tooltip {
    background-color: #bf0411; }

.returnable-list__filter-table {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  margin: 0.5rem 0;
  display: flex;
  flex-direction: column;
  padding: 2rem; }

.returnable-table__header,
.returnable-table__row {
  display: grid;
  align-items: start;
  grid-template-columns: 1.5fr 1fr 3fr 4.5fr 1.5fr 30px;
  padding: 0.5rem 0; }
  .returnable-table__header span,
  .returnable-table__row span {
    margin-left: 0.5rem; }

.returnable-table__subtable {
  display: grid;
  grid-auto-columns: minmax(120px, 1fr);
  font-weight: normal;
  grid-auto-flow: column; }

.returnable-table__multiple-header {
  display: flex;
  flex-direction: column; }

.returnable__state {
  position: relative;
  padding-left: 20px; }
  .returnable__state.theme-light {
    color: #bebebe; }
  .theme-light .returnable__state {
    color: #bebebe; }
  .returnable__state.theme-dark {
    color: #bebebe; }
  .theme-dark .returnable__state {
    color: #bebebe; }
  .returnable__state::before {
    content: '';
    position: absolute;
    top: calc(50% - 4px);
    left: 0;
    width: 8px;
    height: 8px;
    margin-right: 0.5rem;
    border-radius: 20px;
    background-color: #bebebe; }

.returnable__state--active.theme-light {
  color: #bf0411; }

.theme-light .returnable__state--active {
  color: #bf0411; }

.returnable__state--active.theme-dark {
  color: #bf0411; }

.theme-dark .returnable__state--active {
  color: #bf0411; }

.returnable__state--active::before {
  background-color: #bf0411;
  box-shadow: 0 0 7px 2px rgba(191, 4, 17, 0.5); }

.returnable-list__checkbox {
  display: flex;
  align-items: center; }

.returnable-table__input {
  border-radius: 20px; }

.returnable-table__select {
  height: 2.5rem; }

.returnable-list__apply-button {
  align-self: flex-end; }

.returnable-list__page-selector {
  text-align: center;
  padding: 1rem;
  font-weight: bold; }
  .returnable-list__page-selector.theme-light {
    color: #bf0411; }
  .theme-light .returnable-list__page-selector {
    color: #bf0411; }
  .returnable-list__page-selector.theme-dark {
    color: #bf0411; }
  .theme-dark .returnable-list__page-selector {
    color: #bf0411; }

.returnable-list__page-selector-button {
  margin: 0 1rem;
  background: transparent;
  font-weight: bold;
  border: none;
  padding: 0.5rem;
  outline: none; }
  .returnable-list__page-selector-button.theme-light {
    color: #bebebe; }
  .theme-light .returnable-list__page-selector-button {
    color: #bebebe; }
  .returnable-list__page-selector-button.theme-dark {
    color: #bebebe; }
  .theme-dark .returnable-list__page-selector-button {
    color: #bebebe; }

.returnable-list__page-selector-button--active {
  cursor: pointer; }
  .returnable-list__page-selector-button--active.theme-light {
    color: #000; }
  .theme-light .returnable-list__page-selector-button--active {
    color: #000; }
  .returnable-list__page-selector-button--active.theme-dark {
    color: #fff; }
  .theme-dark .returnable-list__page-selector-button--active {
    color: #fff; }

.icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: 25px; }

.icon__image,
.icon__image-hover {
  position: absolute; }

.icon__image-hover {
  opacity: 0;
  transition: opacity .2s; }
  .icon__image-hover:hover {
    opacity: 1; }

.breadcrumbs {
  display: flex;
  top: 0; }

.breadcrumb {
  color: inherit;
  text-decoration: none; }

.breadcrumb:not(:last-child)::after {
  margin: 0 0.5rem;
  content: '>'; }

.browser-not-supported {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); }
  .browser-not-supported > * {
    display: block; }

.browser-not-supported__warning-icon {
  height: 80px;
  width: 80px; }

.browser-not-supported__alternatives {
  padding: 1rem 0; }

.browser-not-supported__download {
  display: inline-block;
  cursor: pointer;
  color: #fff;
  border: none;
  outline: none;
  border-radius: 5px;
  margin: 0.5rem;
  padding: 1rem;
  text-decoration: none; }
  .browser-not-supported__download > * {
    vertical-align: middle;
    margin: auto 0.5rem;
    font-size: 18px; }

.browser-not-supported__download--safari {
  background: #42a1ec; }

.browser-not-supported__download--chrome {
  background: #1a73e8; }

.browser-not-supported__download--firefox {
  background: #000; }

.browser-not-supported__logo {
  height: 30px;
  max-width: 100px; }

.device-not-supported {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  height: 100%; }

.device-not-supported__warning-icon {
  height: 80px;
  width: 80px; }

.container-loc-actions {
  padding: 1rem;
  overflow-y: auto; }
  .container-loc-actions.theme-light {
    background-color: #f3f3f3; }
  .theme-light .container-loc-actions {
    background-color: #f3f3f3; }
  .container-loc-actions.theme-dark {
    background-color: #1b1b1b; }
  .theme-dark .container-loc-actions {
    background-color: #1b1b1b; }

.container-loc-actions__header {
  display: grid;
  grid-template-columns: 20% 20% 20% 20% 1fr;
  border-bottom: 2px solid black;
  font-weight: bold;
  margin-bottom: 1rem; }

.container-loc-actions__state {
  display: flex;
  display: grid;
  grid-template-columns: 20% 60% 1fr;
  margin: 1rem 0; }
  .container-loc-actions__state.theme-light {
    color: #4e4e4e; }
  .theme-light .container-loc-actions__state {
    color: #4e4e4e; }
  .container-loc-actions__state.theme-dark {
    color: #f3f3f3; }
  .theme-dark .container-loc-actions__state {
    color: #f3f3f3; }

.container-loc-actions__selectors {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: auto; }

.container-loc-actions__selector {
  border: none;
  padding: 0.5rem;
  margin: 2px;
  min-width: 100px;
  border: 1.5px solid;
  border-radius: 10px;
  width: 80%; }
  .container-loc-actions__selector.theme-light {
    border-color: #4e4e4e; }
  .theme-light .container-loc-actions__selector {
    border-color: #4e4e4e; }
  .container-loc-actions__selector.theme-dark {
    border-color: #f3f3f3; }
  .theme-dark .container-loc-actions__selector {
    border-color: #f3f3f3; }

.container-loc-actions__save {
  margin: 1rem 0; }

.container-loc-actions__partial-inventory {
  display: flex;
  justify-content: flex-start;
  align-items: center; }

.lost-containers {
  position: absolute;
  box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.1);
  border-radius: 5px; }
  .lost-containers.theme-light {
    background-color: #fff; }
  .theme-light .lost-containers {
    background-color: #fff; }
  .lost-containers.theme-dark {
    background-color: #fff; }
  .theme-dark .lost-containers {
    background-color: #fff; }

.lost-containers__option {
  text-decoration: none;
  border: none;
  font-weight: bold;
  width: 100%;
  padding: 0.5rem;
  cursor: pointer; }
  .lost-containers__option.theme-light {
    background-color: #fff; }
  .theme-light .lost-containers__option {
    background-color: #fff; }
  .lost-containers__option.theme-dark {
    background-color: #fff; }
  .theme-dark .lost-containers__option {
    background-color: #fff; }
  .lost-containers__option:hover {
    background-color: rgba(191, 4, 17, 0.15); }

.lost-containers__popup {
  display: flex;
  flex-direction: column;
  border-radius: 5px; }

.lost-containers__deactivation-popup {
  justify-content: center;
  align-items: center; }

.lost-containers__deactivation-filters-popup {
  justify-content: center;
  padding: 0.5rem 1rem;
  min-width: 400px; }

.lost-containers__popup-title {
  margin: 1rem;
  align-self: center; }

.lost-containers__confirmation-buttons {
  align-self: flex-end;
  margin-top: 1rem; }
  .lost-containers__confirmation-buttons > * {
    margin: 0 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px; }

.rfid {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  gap: 2rem; }
  .rfid__save-btn {
    align-self: flex-end; }

.rfid-display {
  margin-top: 2rem;
  display: grid;
  gap: 1rem; }
  .rfid-display__code-block {
    position: relative;
    display: flex;
    border-top: 1px solid black;
    padding-top: 0.5rem;
    gap: 0.5rem;
    justify-content: space-around; }
    .rfid-display__code-block--filling {
      border: none; }
    .rfid-display__code-block--required.theme-light {
      border-color: rgba(0, 0, 0, 0.6); }
    .theme-light .rfid-display__code-block--required {
      border-color: rgba(0, 0, 0, 0.6); }
    .rfid-display__code-block--required .rfid-display__code-input.theme-light {
      background-color: rgba(0, 0, 0, 0.2); }
    .theme-light .rfid-display__code-block--required .rfid-display__code-input {
      background-color: rgba(0, 0, 0, 0.2); }
    .rfid-display__code-block--required .rfid-display__code-input.theme-light {
      border-color: rgba(0, 0, 0, 0.6); }
    .theme-light .rfid-display__code-block--required .rfid-display__code-input {
      border-color: rgba(0, 0, 0, 0.6); }
    .rfid-display__code-block--optional.theme-light {
      color: #bf0411; }
    .theme-light .rfid-display__code-block--optional {
      color: #bf0411; }
    .rfid-display__code-block--optional.theme-light {
      border-color: rgba(191, 4, 17, 0.5); }
    .theme-light .rfid-display__code-block--optional {
      border-color: rgba(191, 4, 17, 0.5); }
    .rfid-display__code-block--optional .rfid-display__code-input.theme-light {
      color: #bf0411; }
    .theme-light .rfid-display__code-block--optional .rfid-display__code-input {
      color: #bf0411; }
    .rfid-display__code-block--optional .rfid-display__code-input.theme-light {
      background-color: rgba(191, 4, 17, 0.15); }
    .theme-light .rfid-display__code-block--optional .rfid-display__code-input {
      background-color: rgba(191, 4, 17, 0.15); }
    .rfid-display__code-block--optional .rfid-display__code-input.theme-light {
      border-color: rgba(191, 4, 17, 0.5); }
    .theme-light .rfid-display__code-block--optional .rfid-display__code-input {
      border-color: rgba(191, 4, 17, 0.5); }
    .rfid-display__code-block:hover .rfid-display__block-name {
      max-width: none;
      text-overflow: initial;
      padding-right: 0.5rem;
      z-index: 1; }
      .rfid-display__code-block:hover .rfid-display__block-name.theme-light {
        background-color: #fff; }
      .theme-light .rfid-display__code-block:hover .rfid-display__block-name {
        background-color: #fff; }
      .rfid-display__code-block:hover .rfid-display__block-name.theme-dark {
        background-color: #fff; }
      .theme-dark .rfid-display__code-block:hover .rfid-display__block-name {
        background-color: #fff; }
  .rfid-display__block-name {
    position: absolute;
    top: -27px;
    left: 0;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 100%; }
  .rfid-display__code-input {
    border-radius: 5px;
    width: 25px;
    height: 40px;
    text-align: center;
    border: 1px solid;
    margin: 0 auto; }
    .rfid-display__code-input.theme-light {
      background-color: #e9e9e9; }
    .theme-light .rfid-display__code-input {
      background-color: #e9e9e9; }
    .rfid-display__code-input.theme-light {
      border-color: #dadada; }
    .theme-light .rfid-display__code-input {
      border-color: #dadada; }

.rfid-configurator {
  max-width: 1000px;
  padding: 1rem; }
  .rfid-configurator.theme-light {
    background-color: #f3f3f3; }
  .theme-light .rfid-configurator {
    background-color: #f3f3f3; }
  .rfid-configurator.theme-dark {
    background-color: #1b1b1b; }
  .theme-dark .rfid-configurator {
    background-color: #1b1b1b; }
  .rfid-configurator__header, .rfid-configurator__fields {
    display: grid;
    grid-template-columns: 0.5fr repeat(3, minmax(0, 1fr));
    grid-gap: 1rem 2rem; }
  .rfid-configurator__fields {
    padding: 1rem 0; }
  .rfid-configurator__header {
    border-bottom: 1px solid;
    font-weight: bold;
    text-align: center; }
  .rfid-configurator__fixed-value, .rfid-configurator__field-idx {
    text-align: center;
    opacity: 0.5;
    display: flex;
    align-items: center;
    justify-content: center; }
  .rfid-configurator__text-input, .rfid-configurator__selector {
    border-radius: 5px;
    border: 1px solid;
    padding: 0.5rem;
    margin: auto 0; }
    .rfid-configurator__text-input.theme-light, .rfid-configurator__selector.theme-light {
      background-color: #e9e9e9; }
    .theme-light .rfid-configurator__text-input, .theme-light .rfid-configurator__selector {
      background-color: #e9e9e9; }
    .rfid-configurator__text-input.theme-light, .rfid-configurator__selector.theme-light {
      border-color: #dadada; }
    .theme-light .rfid-configurator__text-input, .theme-light .rfid-configurator__selector {
      border-color: #dadada; }
  .rfid-configurator__value-container, .rfid-configurator__title-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem; }

.rfid-opt-editor {
  display: flex;
  flex-direction: column;
  gap: 2rem; }
  .rfid-opt-editor__block {
    border-radius: 5px;
    padding: 1rem; }
    .rfid-opt-editor__block.theme-light {
      background-color: #f3f3f3; }
    .theme-light .rfid-opt-editor__block {
      background-color: #f3f3f3; }
    .rfid-opt-editor__block.theme-dark {
      background-color: #1b1b1b; }
    .theme-dark .rfid-opt-editor__block {
      background-color: #1b1b1b; }
  .rfid-opt-editor__opts {
    display: flex;
    flex-direction: column; }
  .rfid-opt-editor__opt, .rfid-opt-editor__header {
    display: grid;
    grid-template-columns: repeat(3, 150px) repeat(auto-fill, 75px);
    grid-gap: 0.5rem;
    align-items: center;
    padding: 0.5rem; }
  .rfid-opt-editor__header {
    font-weight: bold;
    border-bottom: 1px solid;
    text-align: center; }
  .rfid-opt-editor__add-more-btn {
    height: 25px;
    width: 25px;
    border-radius: 50%;
    padding: 0;
    margin-top: 0.5rem;
    margin-left: 63px; }
  .rfid-opt-editor__opt-idx {
    text-align: center;
    opacity: 0.5; }
  .rfid-opt-editor__text-area, .rfid-opt-editor__text-input {
    border: 1px solid;
    padding: 0.5rem;
    border-radius: 5px; }
    .rfid-opt-editor__text-area.theme-light, .rfid-opt-editor__text-input.theme-light {
      border-color: #dadada; }
    .theme-light .rfid-opt-editor__text-area, .theme-light .rfid-opt-editor__text-input {
      border-color: #dadada; }
    .rfid-opt-editor__text-area.theme-light, .rfid-opt-editor__text-input.theme-light {
      background-color: #e9e9e9; }
    .theme-light .rfid-opt-editor__text-area, .theme-light .rfid-opt-editor__text-input {
      background-color: #e9e9e9; }
  .rfid-opt-editor__text-input {
    text-align: center; }
  .rfid-opt-editor__selector {
    border-radius: 5px;
    border: 1px solid;
    padding: 0.5rem;
    margin: auto 0; }
    .rfid-opt-editor__selector.theme-light {
      background-color: #e9e9e9; }
    .theme-light .rfid-opt-editor__selector {
      background-color: #e9e9e9; }
    .rfid-opt-editor__selector.theme-light {
      border-color: #dadada; }
    .theme-light .rfid-opt-editor__selector {
      border-color: #dadada; }

* {
  box-sizing: border-box; }

html, body, #app, .app-container {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0; }

html {
  font-family: 'Poppins', sans-serif; }

a, input {
  outline: 0; }

h1, h2, h3, h4 {
  margin: 0;
  padding: 0; }

.app-container {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: 100vh;
  grid-template-areas: "side-bar main"; }
  .app-container.theme-light {
    color: #000; }
  .theme-light .app-container {
    color: #000; }
  .app-container.theme-dark {
    color: #fff; }
  .theme-dark .app-container {
    color: #fff; }

.app-container__main {
  grid-area: main; }
  .app-container__main.theme-light {
    background-color: #f3f3f3; }
  .theme-light .app-container__main {
    background-color: #f3f3f3; }
  .app-container__main.theme-dark {
    background-color: #1b1b1b; }
  .theme-dark .app-container__main {
    background-color: #1b1b1b; }

.content {
  grid-area: content; }

input[type=range]::-moz-focus-outer {
  border: 0; }
