.react-autosuggest__container {
  position: relative;
}

.react-autosuggest__input {
  width: 240px;
  height: 30px;
  padding: 10px 20px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-size: 14px;
  border: 1px solid #aaa;
  border-radius: 4px;
}

.react-autosuggest__input:focus {
  outline: none;
}

.react-autosuggest__container--open .react-autosuggest__input {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.react-autosuggest__suggestions-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.react-autosuggest__suggestions-container {
  position: absolute;
  display: none;
  top: 32px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style-type: none;
  border: 1px solid #aaa;
  background-color: #fff;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-size: 14px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  z-index: 222;
  text-align: left;
}

.react-autosuggest__suggestions-container--open {
  display: block;
}

.react-autosuggest__suggestion {
  cursor: pointer;
  padding: 5px 5px;

  border-bottom: 1px solid #f2f2f2;
}

.react-autosuggest__suggestion--highlighted {
  background-color: #ddd;
}

/* ============================================================
   LightingStatus.css — self-contained, scoped under .lhs
   All tokens are local CSS vars; nothing leaks to the host app.
   Font: inherits from host (uses system / app font by default).
   ============================================================ */

.lhs {
  /* status palette — override per app theme if needed */
  --lhs-on: #2f9e44;
  --lhs-on-bg: #e9f6ec;
  --lhs-on-ink: #1d6a2c;
  --lhs-off: #6b7280;
  --lhs-off-bg: #eef0f2;
  --lhs-off-ink: #4b5563;
  --lhs-warn: #e0820a;
  --lhs-warn-bg: #fdf1dd;
  --lhs-warn-ink: #9a5a00;

  --lhs-ink: #34302e;
  --lhs-ink-soft: #6f6a65;
  --lhs-ink-faint: #9b958f;
  --lhs-line: #dcd7d2;
  --lhs-line-strong: #c7c1bb;
  --lhs-surface: #ffffff;
  --lhs-radius: 7px;
  --lhs-shadow: 0 1px 2px rgba(40, 30, 28, .08);

  --lhs-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  box-sizing: border-box;
  color: var(--lhs-ink);
  font-family: inherit;
}

.lhs *, .lhs *::before, .lhs *::after { box-sizing: border-box; }

.lhs-tnum { font-feature-settings: "tnum"; font-variant-numeric: tabular-nums; }

/* shared status dot */

.lhs-dot {
  width: 8px; height: 8px; border-radius: 50%;
  flex: none; display: inline-block;
  background: var(--lhs-off);
}

.lhs-dot--on  { background: var(--lhs-on);  box-shadow: 0 0 0 2px rgba(47, 158, 68, .16); }

.lhs-dot--off { background: var(--lhs-off); box-shadow: 0 0 0 2px rgba(107, 114, 128, .14); }

.lhs-dot--warn{ background: var(--lhs-warn); box-shadow: 0 0 0 2px rgba(224, 130, 10, .18); }

@-webkit-keyframes lhs-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(224, 130, 10, .55); }
  70%  { box-shadow: 0 0 0 8px rgba(224, 130, 10, 0); }
  100% { box-shadow: 0 0 0 0 rgba(224, 130, 10, 0); }
}

@keyframes lhs-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(224, 130, 10, .55); }
  70%  { box-shadow: 0 0 0 8px rgba(224, 130, 10, 0); }
  100% { box-shadow: 0 0 0 0 rgba(224, 130, 10, 0); }
}

@-webkit-keyframes lhs-blink { 50% { opacity: .35; } }

@keyframes lhs-blink { 50% { opacity: .35; } }

.lhs__arrow { color: var(--lhs-ink-faint); }

.lhs__arrow-faint { color: var(--lhs-ink-faint); margin-right: 6px; }

@media (prefers-reduced-motion: no-preference) {
  .lhs-dot--pulse { -webkit-animation: lhs-pulse 1.4s ease-out infinite; animation: lhs-pulse 1.4s ease-out infinite; }
  .lhs-blink { -webkit-animation: lhs-blink 1.1s step-start infinite; animation: lhs-blink 1.1s step-start infinite; }
}

/* ================= variant: widget ================= */

.lhs--widget {
  display: inline-flex;
  align-items: stretch;
  height: 40px;
  border: 1px solid var(--lhs-line-strong);
  border-radius: var(--lhs-radius);
  background: var(--lhs-surface);
  box-shadow: var(--lhs-shadow);
  overflow: hidden;
}

.lhs--widget .lhs__seg {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 12px;
  border-right: 1px solid var(--lhs-line);
  grid-gap: 1px;
  gap: 1px;
}

.lhs--widget .lhs__seg:last-child { border-right: 0; }

.lhs__time { font-weight: 700; font-size: 17px; line-height: 1; }

.lhs__date { font-size: 9px; line-height: 1; color: var(--lhs-ink-faint); }

.lhs__status { flex-direction: row; align-items: center; grid-gap: 6px; gap: 6px; }

.lhs__status-lbl { font-weight: 700; font-size: 12px; line-height: 1; white-space: nowrap; }

.lhs--on  .lhs__status-lbl { color: var(--lhs-on-ink); }

.lhs--off .lhs__status-lbl { color: var(--lhs-off-ink); }

.lhs__next { align-items: flex-start; }

.lhs__next-e { display: flex; align-items: center; grid-gap: 6px; gap: 6px; font-weight: 700; font-size: 11px; line-height: 1; white-space: nowrap; }

.lhs__time { font-weight: 700; font-size: 17px; line-height: 1; white-space: nowrap; }

.lhs__next-cd { font-size: 9px; line-height: 1; color: var(--lhs-ink-soft); margin-top: 2px; }

/* widget — soon */

.lhs--widget.lhs--soon {
  border-color: var(--lhs-warn);
  background: var(--lhs-warn-bg);
  box-shadow: 0 0 0 3px rgba(224, 130, 10, .12), var(--lhs-shadow);
}

.lhs--widget.lhs--soon .lhs__seg { border-right-color: rgba(224, 130, 10, .25); }

.lhs__alert { flex-direction: row; align-items: center; grid-gap: 9px; gap: 9px; padding: 0 16px; }

.lhs__alert-txt { display: flex; flex-direction: column; grid-gap: 2px; gap: 2px; }

.lhs__alert-head { font-weight: 700; font-size: 8px; line-height: 1; color: var(--lhs-warn-ink); }

.lhs__alert-big { font-weight: 700; font-size: 10px; line-height: 1; color: var(--lhs-warn-ink); white-space: nowrap; }

/* ================= variant: card ================= */

.lhs--card {
  display: block;
  width: 320px;
  background: var(--lhs-surface);
  border: 1px solid var(--lhs-line-strong);
  border-radius: 11px;
  box-shadow: 0 6px 20px rgba(40, 30, 28, .13);
  overflow: hidden;
}

.lhs__top { display: flex; align-items: baseline; justify-content: space-between; padding: 14px 16px 10px; }

.lhs__time-lg { font-weight: 700; font-size: 32px; line-height: 1; }

.lhs__sec { font-size: 17px; color: var(--lhs-ink-faint); margin-left: 2px; }

.lhs__date-lg { font-size: 13px; line-height: 1.3; color: var(--lhs-ink-soft); text-align: right; }

.lhs__statusbar { display: flex; align-items: center; grid-gap: 9px; gap: 9px; padding: 10px 16px; font-weight: 700; font-size: 16px; }

.lhs--card.lhs--on  .lhs__statusbar { background: var(--lhs-on-bg);  color: var(--lhs-on-ink); }

.lhs--card.lhs--off .lhs__statusbar { background: var(--lhs-off-bg); color: var(--lhs-off-ink); }

.lhs--card.lhs--soon .lhs__statusbar { background: var(--lhs-warn-bg); color: var(--lhs-warn-ink); }

.lhs__body { padding: 13px 16px 15px; }

.lhs__nextrow { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }

.lhs__nextlbl { font-size: 13px; color: var(--lhs-ink-soft); }

.lhs__nextval { font-weight: 700; font-size: 15px; display: flex; align-items: center; }

.lhs__cd-lg { font-weight: 700; font-size: 23px; line-height: 1.1; margin-top: 8px; }

.lhs--card.lhs--soon .lhs__cd-lg { color: var(--lhs-warn-ink); }

.lhs__cd-lg small { font-weight: 400; font-size: 13px; color: var(--lhs-ink-faint); }

.lhs__tl { margin-top: 16px; }

.lhs__tl-bar { position: relative; height: 4px; border-radius: 2px; margin: 22px 0 6px; }

.lhs__tl-node { position: absolute; top: 50%; width: 7px; height: 7px; border-radius: 50%; transform: translate(-50%, -50%); }

.lhs__tl-mark { position: absolute; top: 50%; width: 11px; height: 11px; border-radius: 50%; background: #fff; border: 3px solid var(--lhs-ink); transform: translate(-50%, -50%); }

.lhs__tl-labels { display: flex; justify-content: space-between; }

.lhs__tl-labels span { font-family: var(--lhs-mono); font-size: 10px; line-height: 1.3; color: var(--lhs-ink-faint); text-align: center; }

/* ================= variant: display (LCD) ================= */

.lhs--display {
  display: inline-flex;
  align-items: center;
  height: 46px;
  background: #221d1c;
  border: 1px solid #4a3f3b;
  border-radius: var(--lhs-radius);
  padding: 0 4px;
  font-family: var(--lhs-mono);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
}

.lhs--display .lhs__seg {
  display: flex; align-items: center; grid-gap: 7px; gap: 7px;
  padding: 0 13px; height: 100%;
  border-right: 1px solid rgba(255, 255, 255, .07);
}

.lhs--display .lhs__seg:last-child { border-right: 0; }

.lhs__time-lcd { font-weight: 600; font-size: 19px; line-height: 1; color: #f4efe9; letter-spacing: .03em; }

.lhs__sec-lcd { color: #8d837d; font-size: 13px; }

.lhs-led { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }

.lhs-led--on  { background: #36d35a; box-shadow: 0 0 7px #36d35a; }

.lhs-led--off { background: #6b7280; }

.lhs-led--warn{ background: #ffb020; box-shadow: 0 0 8px #ffb020; }

.lhs__lcd-lbl { font-weight: 600; font-size: 13px; line-height: 1; letter-spacing: .04em; }

.lhs--display.lhs--on  .lhs__lcd-lbl { color: #6fe08c; }

.lhs--display.lhs--off .lhs__lcd-lbl { color: #9aa1ac; }

.lhs--display.lhs--soon .lhs__lcd-lbl,
.lhs--display.lhs--soon .lhs__lcd-cd { color: #ffc24d; }

.lhs__lcd-next { font-weight: 600; font-size: 13px; color: #d9d2cc; }

.lhs__lcd-ar { color: #8d837d; margin-right: 5px; }

.lhs__lcd-cd { font-weight: 600; font-size: 17px; color: #f4efe9; }

.lhs--display.lhs--soon {
  border-color: #b5710a;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05), 0 0 0 2px rgba(255, 176, 32, .22);
}

/* right panel. */
#right-panel {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 904;
  padding-top: 49px;

  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;

  -webkit-overflow-scrolling: none;

  transition: 250ms cubic-bezier(0.1, 0.57, 0.1, 1);
}
#right-panel {
  width: 10px;
  overflow: hidden;
}
#right-panel>* {}
#right-panel:hover {
  width: 220px;
}
#right-panel:hover>* {
  opacity: 1;
}
/**/
.logo__container {
  padding: 3px 10px;
}
.logo__container .img {
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.project-context {
  position: relative !important;
  display: inline-block !important;
}
.project-context .dropdown-menu {
  left: 0 !important;
  right: auto !important;
}
.project-selector:hover .fa-star-o {
  color: #222222 !important;
}
.margin-right-60 {
  margin-right: -60px !important;
}
.favorite-star-icon {
  font-weight: bold !important;
  font-size: 20px !important;
  margin-top: 9px !important;
  color: #6d6a69 !important;
}
body.desktop-detected .lighting-status-widget {
  margin-top: 5px !important;
}
body.mobile-detected .lighting-status-widget {
  margin-top: 9px !important;
  padding-left: 5px !important;
}
body.mobile-detected .favorite-list-margin {
  margin-right: -60px !important;
}
/**/
.notification-global--panel__container {
  position: fixed;
  top: -1px;
  width: 100%;
  z-index: 9999;
  height: 0;
}
.notification-global--panel {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border-top: none;
  padding: 5px 10px;
  /* box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3); */
  transition: 0.25s all ease-in-out;
}
.notification-global--panel.open { 
  transform: translateY(0); 
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3); 
}
.notification-global--panel .notification-global--panel__tongue {
  position: absolute;
  bottom: -25px;
  width: auto;
  padding: 3px 10px;
  text-align: center;
  left: calc(50% - 160px / 2);
  margin: 0 auto;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
  background: white;
  cursor: pointer;
}
.notification-global--panel__tongue.alerts {
  -webkit-animation: pulsar 2s infinite ease-in-out;
          animation: pulsar 2s infinite ease-in-out;
}
@-webkit-keyframes pulsar {
  0% {
    background-color: inherit;
  }
  50% {
    background-color: rgba(255, 0, 0, 0.8);
    color: whitesmoke;
  }
  100% {
    background-color: inherit;
  }
}
@keyframes pulsar {
  0% {
    background-color: inherit;
  }
  50% {
    background-color: rgba(255, 0, 0, 0.8);
    color: whitesmoke;
  }
  100% {
    background-color: inherit;
  }
}
.notification-global--panel__list {
  max-height: inherit;
  overflow: auto;
}
.notification-global--panel__table th {
  padding: 5px !important;
  font-size: 95%;
}
.notification-global--panel__table td {
  padding: 5px !important;
  font-size: 85%;
}
.notification-global--panel__table span  {
  font-size: 85%;
  font-weight: normal;
}
.notification-global--panel__table select  {
  font-size: 100%;
}
.scrolled-table-200 {
  table-layout:fixed;
  margin:auto;
}
.scrolled-table-200 thead {
  display:table;
  width:100%;
}
.scrolled-table-200 thead tr th {
  width: 33% !important;
  text-align: center;
  padding: 10px;
}
.scrolled-table-200 td {
  vertical-align: middle !important; 
}
.scrolled-table-200 thead tr th.scrolled-visible:nth-last-child(2) {
  border-right: 0px !important;
}
.scrolled-table-200 thead tr th.scrolled-hidden {
  padding-left: 7px !important;
}
.scrolled-table-200 tbody {
  height: 180px;
  width: 100%;
  max-height:250px;
  overflow:auto;
  overflow-x:hidden;
  display:block;
}
.scrolled-table-200 tbody tr {
  display:table;
  width:100%;
  table-layout:fixed;
  border-bottom: 1px solid #ffffff !important;
}
table td small {
  font-size: 12px;
  color: #a2a2a2;
}

.table__td__actions > div {
  opacity: 0.2;
}

.table__td__actions:hover > div {
  opacity: 1;
}

._15Xd3uc6yoiZ2gv6Zlopy {
}

._15Xd3uc6yoiZ2gv6Zlopy li {
  transition: all 0.5s;

  min-height: 50px;
  max-height: 50px;
  overflow: hidden;
}

._15Xd3uc6yoiZ2gv6Zlopy li ._container {
  transition: all 0.5s;
  opacity: 0;
}

._15Xd3uc6yoiZ2gv6Zlopy li._1D9U9m-OXf3pGIXdYKyLFx {
  max-height: 500px;
}

._15Xd3uc6yoiZ2gv6Zlopy li._1D9U9m-OXf3pGIXdYKyLFx .smart-timeline-icon {
  background: #40c951;
}

._15Xd3uc6yoiZ2gv6Zlopy li.shOUCce1h3uxHdwKVwLzm .smart-timeline-icon {
  background: red;
}

._15Xd3uc6yoiZ2gv6Zlopy li.shOUCce1h3uxHdwKVwLzm .smart-timeline-icon {
  background: #c26565;
}

._15Xd3uc6yoiZ2gv6Zlopy li._1D9U9m-OXf3pGIXdYKyLFx ._container {
  opacity: 1;
}

._3jsG_2sRtFo5_dyQ4hK3X0 .modal-dialog {
  width: 900px;
}

._3jsG_2sRtFo5_dyQ4hK3X0 .modal-header {
  cursor: move;
}

#react-autowhatever-certified_insurers {
  width: 200%;
}

/**/

._2YhbAm3YF2qmPMqa25BPFj .price-container > span {
  font-weight: 400;
}

._2YhbAm3YF2qmPMqa25BPFj .price-container > small {
  display: block;
}

.bi9ht0smYzhzZUy1gxpoL {
  padding: 5px 10px;
}

.bi9ht0smYzhzZUy1gxpoL .price-container > span {
  font-weight: 200 !important;
  font-size: 20px;
}

._1pIgukZw5rCW6sop1VT1oe {
  width: 310px;
  /*position: absolute;*/

  float: left;
}

._234pSw-qXaAuq784EMvFat {
  text-align: center;
  position: relative;
  padding-top: 15px;
}

._2SZDWbXhgcgdvEEVeUZK73 {
  padding: 0 15px 15px;
  float: right;
  width: 100%;
}

._2SZDWbXhgcgdvEEVeUZK73 hr {
  margin: 5px 0;
}

._2SZDWbXhgcgdvEEVeUZK73 h2 {
  margin-top: 10px;
  margin-bottom: 10px;

  font-weight: 500;
}

._2SZDWbXhgcgdvEEVeUZK73 h2 small {
  display: block;
}

.PbQ3MFoD7zD31cK1QJKgx {
}

.PbQ3MFoD7zD31cK1QJKgx .profile_info_row .label {
  width: 165px;
  font-size: 100%;
  font-weight: 400;
  line-height: 26px;
  color: #999;
  padding: 0;
  text-align: left;
}

.PbQ3MFoD7zD31cK1QJKgx .clear_fix {
  clear: both;
}

.PbQ3MFoD7zD31cK1QJKgx .profile_info_block {
  border-top: 1px solid #e7e8ec;
  margin-top: 9px;
}

.PbQ3MFoD7zD31cK1QJKgx .fl_l {
  float: left;
}

.PbQ3MFoD7zD31cK1QJKgx .labeled {
  /*font-weight: 400;*/
  /*font-size: 16px;*/
  overflow: hidden;
  line-height: 26px;
}

.PbQ3MFoD7zD31cK1QJKgx .labeled.large {
  font-weight: 600;
  font-size: 16px;
  color: black;
}

.PbQ3MFoD7zD31cK1QJKgx .profile_info_header_wrap {
  border-bottom: none;
  position: relative;
  margin: -11px 0 4px;
}

.PbQ3MFoD7zD31cK1QJKgx .profile_info_header {
  padding-bottom: 4px;
  padding-right: 7px;
  background-color: #fff;
}

._1a9ke9cYhBqW7xLcG6fjdJ .modal-dialog {
  width: 90%;
}

#create_reception_modal .modal-dialog {
  width: 90%;
}

#sell_goods .modal-dialog {
  width: 800px;
}

#create_reception_modal .modal-body {
}

._3e47XfsYpx-lhwt4_jv8jc .btn {
  display: none;
}

._1gUNUim2dkVUQVEVlL9n2E .btn {
  display: none;
}

._1gUNUim2dkVUQVEVlL9n2E:hover .btn {
  display: inline;
  display: initial;
}

._1o6ba18e4Md6c1QZOyrQDB > * {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.XMyD5aYlD_oqtLxjtWgxX td {
  padding-top: 2px !important;
  padding-bottom: 2px !important;
}

#react-autowhatever-autosuggest_patient_create_address {
  width: 500px;
}

#react-autowhatever-autosuggest_patient_create_address .react-autosuggest__suggestion {
  font-size: 13px;
}

._2vr8eVD1MPn-AW_OH-U-av {
  width: 100%;
}

._2vr8eVD1MPn-AW_OH-U-av._2SEujlGLDaPcGS-JsSnotG input {
  border-color: red !important;
}

._2vr8eVD1MPn-AW_OH-U-av button {
  display: none;
}

._8TOnFKBRK8WdG1LC0wwE0 {
  width: 153px;
}

._8TOnFKBRK8WdG1LC0wwE0._2SEujlGLDaPcGS-JsSnotG input {
  border-color: red !important;
}

._8TOnFKBRK8WdG1LC0wwE0 button {
  display: none;
}

.price_input {
  text-align: right;
}

.price_input:focus {
  text-align: left;
}

._2SEujlGLDaPcGS-JsSnotG {
  border-color: red !important;
}

._3Z7f8-D3juR2nGYCbArTmH {
  background: #fff;
  cursor: pointer;
  padding: 5px 10px;
  border: 1px solid #ccc;
  height: 32px;
  width: 100%;
}

._3fWsS2hZBxoL3Y1h0EjHA1 {
  width: 100%;
}

._3fWsS2hZBxoL3Y1h0EjHA1 > tbody > tr > td {
  padding: 10px;
  vertical-align: top;
}

._33igpX1LiKy0shdrlzuf-- .ui-widget-content {
  border: none !important;
}

input[type='number'].price_input::-webkit-inner-spin-button,
input[type='number'].price_input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.loading-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  align-items: center;
  display: none;
  justify-content: center;
  overflow: hidden;
  z-index: 3;
}

.loading-overlay.is-active {
  display: flex;
}

.loading-overlay.is-full-page {
  z-index: 999;
  position: fixed;
}

.loading-overlay.is-full-page .loading-icon:after {
  top: calc(50% - 2.5em);
  left: calc(50% - 2.5em);
  width: 5em;
  height: 5em;
}

.loading-overlay .loading-background {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  background: #7f7f7f;
  background: hsla(0, 0%, 100%, 0.5);
}

.loading-overlay .loading-icon {
  position: relative;
}

.loading-overlay .loading-icon:after {
  -webkit-animation: spinAround 0.5s infinite linear;
          animation: spinAround 0.5s infinite linear;
  border-radius: 290486px;
  content: '';
  display: block;
  position: absolute;
  top: calc(50% - 1em);
  left: calc(50% - 1em);
  width: 2em;
  height: 2em;
  border: 0.25em solid transparent;
  border-bottom-color: #dbdbdb;
  border-left-color: #dbdbdb;
}

.menu .menu-list li > a.is-disabled {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.5;
}

.message .media,
.notification .media {
  padding-top: 0;
  border: 0;
}

@-webkit-keyframes spinAround {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

@keyframes spinAround {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

.report_files {
}

.report_files .report_files_item {
  display: inline-block;
  width: 320px;
  line-height: 25px;
}

.report_files_item__icon {
  opacity: 0.15;
}

.report_files_item:hover .report_files_item__icon {
  opacity: 1;
}

.qTQ62ZFOvYsPQr0_PgIDJ {
}

.qTQ62ZFOvYsPQr0_PgIDJ li {
  transition: all 0.5s;

  min-height: 50px;
  max-height: 50px;
  overflow: hidden;
}

.qTQ62ZFOvYsPQr0_PgIDJ li ._container {
  transition: all 0.5s;
  opacity: 0;
}

.qTQ62ZFOvYsPQr0_PgIDJ li.gW6BgM-RCYHwKcd55Yg8V {
  max-height: 500px;
}

.qTQ62ZFOvYsPQr0_PgIDJ li.gW6BgM-RCYHwKcd55Yg8V .smart-timeline-icon {
  background: #40c951;
}

.qTQ62ZFOvYsPQr0_PgIDJ li._35Z2bH3datG5J2Q9bnYD8d .smart-timeline-icon {
  background: red;
}

.qTQ62ZFOvYsPQr0_PgIDJ li._35Z2bH3datG5J2Q9bnYD8d .smart-timeline-icon {
  background: #c26565;
}

.qTQ62ZFOvYsPQr0_PgIDJ li.gW6BgM-RCYHwKcd55Yg8V ._container {
  opacity: 1;
}

.led-block {
  display: inline-block;
  margin: 0 auto;
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

.led-block-small {
  display: inline-block;
  margin: 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.led-block__green {
  background-color: #abff00;
  box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #304701 0 -1px 9px, #89ff00 0 2px 12px;
}

.led-block__grey {
  background-color: #333;
  /*box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #304701 0 -1px 9px, #89FF00 0 2px 12px;*/
}

.led-block__yellow {
  background-color: #ff0;
  box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #808002 0 -1px 9px, #ff0 0 2px 12px;
}

.led-block__red {
  background-color: #f00;
  box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #441313 0 -1px 9px,
    rgba(255, 0, 0, 0.5) 0 2px 12px;
}

.led-block__orange {
  background-color: rgb(255, 165, 0);
  box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset orangered 0 -1px 9px,
    rgba(255, 165, 0, 0.5) 0 2px 12px;
}

/**/

.badge__green {
  background-color: green;
}

.badge__grey {
  background-color: grey;
}

.badge__red {
  background-color: red;
}

.icon-status-cabinet {
  padding-left: 0;
  list-style: none;

  justify-content: left !important;

  height: 39px !important;
}

.icon-status-cabinet > li {
  vertical-align: middle;
  height: 24px;
}

.icon-status-cabinet li {
  display: inline-block;
  text-align: center;
  /* width: 35px; */
}

.icon-status-cabinet li.status-text {
  width: auto;
  text-align: left;
  margin: 6px 4px 0px;
}

.icon-status-cabinet li .glyphicon,
.icon-status-cabinet li .fa {
  font-size: 20px;
  margin-top: 3px;
  margin-left: 2px;
  margin-right: 2px;
}

.popup_cabinet_list__container ul {
  overflow-y: auto;
  overflow-x: hidden;
}

.matrix_container {
  width: 60px;
  height: 80px;
  cursor: pointer;
  margin: 10px 10px 0;
  display: inline-block;
}

.matrix_container .img {
  display: block;
  height: 100%;
  width: 100%;

  background-repeat: no-repeat;
  background-size: cover;
}

.matrix_container__label {
  position: absolute;
  width: 60px;
  word-break: break-all;
}

.matrix_container_flex {
  display: inline-block;
  line-height: 0;
  margin:4px;
  vertical-align:top;
}

.matrix_container_available {
  cursor: pointer;
}

td.-empty {
  background-color: transparent;
  background-image: linear-gradient(
      45deg,
      #f0f0f0 25%,
      transparent 25%,
      transparent 75%,
      #f5f5f5 75%
    ),
    linear-gradient(45deg, #f5f5f5 25%, transparent 25%, transparent 75%, #f5f5f5 75%);
  background-size: 10px 10px;
  background-position: 0 0, 5px 5px;

  /*background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAANklEQVQoU2NkIAIwEqHmPyFF/4GGMBJSBLYIlyKwCTCnYFOEogCfSSj+QTYJwwR063AqACkEAGnjBgmVg/+rAAAAAElFTkSuQmCC) repeat;*/
  /*opacity: 0.2;*/
}

.treeview__button-action {
  opacity: 0.1;
  padding: 3px 5px;
  margin-left: 5px;
  border: 0;
  background: transparent;
  color: #333;
  /**/
  transition: opacity 0.2s;
}

.treeview_folder_title:hover .treeview__button-action,
.treeview__report:hover .treeview__button-action {
  opacity: 1;
}

.treeview_folder_title {
}

