:root {
  --table-height-svg: 16px;
  --table-padding-td: 2px 2px;
  --border-radius: 1.2rem;
  --main-color: rgba(103, 121, 154, 0.9);
  --main-color-light: #a1b6ce;
  --main-color-extra-light: rgba(80, 101, 168, 0.15);
  --color-menu-li-border: rgba(103, 121, 154, 0.9);
  --color-module-title-background: rgba(103, 121, 154, 0.9);
  --color-tree-item-hover-background: rgba(103, 121, 154, 0.9);
  --login-background-color: #e0e0e0;
  --main-login-button-background: rgba(103, 121, 154, 0.9);
  --main-login-button-text: white;
  --popup-save-button: rgba(103, 121, 154, 0.9);
  --detail-table-title-height: 3.5em;
  --right-panel-min-width: 320px;
}
select {
  padding: 4px 30px 4px 16px;
  box-sizing: border-box;
  border: 1px solid var(--main-color-extra-light);
  border-radius: var(--border-radius);
  font-size: 13px;
  outline: none;
  transition: border-color 0.12s ease;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("../imgs/arrow-down.svg");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 14px;
}
select:focus {
  border-color: var(--main-color);
}
input[type="date"],
input[type="datetime-local"],
input[data-type="month-year"] {
  padding: 4px 16px;
  width: auto;
  box-sizing: border-box;
  border: 1px solid var(--main-color-extra-light);
  border-radius: var(--border-radius);
  font-size: 13px;
  outline: none;
  transition: border-color 0.12s ease;
}
input[type="date"]:focus,
input[type="datetime-local"]:focus,
input[data-type="month-year"]:focus {
  border-color: var(--main-color);
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9em;
  overflow: hidden;
  height: 100vh;
  width: 100vw;
}
@media only screen and (max-width: 991.9px) {
  body {
    overflow: auto;
  }
}
body.isOffline {
  border: 2px solid red;
}
a {
  text-decoration: none;
}
li {
  list-style: none;
}
ol {
  margin: 0;
  padding: 0;
}
h5 {
  font-size: 1rem;
  font-weight: 400;
}
input.required {
  border: 1px solid red;
}
.error {
  background-color: coral;
}
@media only screen and (max-width: 991px) {
  input,
  textarea,
  select,
  .dk-select2 {
    font-size: 16px !important;
  }
}
.mn_pageTitle {
  margin-top: 0;
  /* border-bottom: 2px solid #0077cc; */
  /* background-color: #afdeff38; */
  padding-left: 1rem;
  color: white;
  line-height: 3rem;
  background: linear-gradient(90deg, #0077cc, transparent);
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}
.blink {
  animation: blink 1s step-start 0s infinite;
}
div.app {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  width: 100%;
  height: 100%;
}
div.app.offline {
  border: 2px solid red;
  box-sizing: border-box;
}
div.app div.glbLeftPanel.dasboard-presentation {
  width: 0;
  padding: 0;
}
div.app div.glbLeftPanel {
  width: 220px;
  padding: 10px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 20;
  background-color: #303030;
  display: flex;
  flex-direction: column;
  transition: all 1s;
  box-shadow: 0px 5px 15px 5px #5b5b5b;
  height: calc(100vh - 20px);
}
div.app div.glbLeftPanel.hideMenu {
  position: absolute;
  left: calc(-220px - 2*10px - 20px);
}
div.app div.glbLeftPanel a {
  color: white;
  width: 100%;
  height: 100%;
  display: block;
}
div.app div.glbLeftPanel nav {
  margin-top: 30px;
  overflow: auto;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
div.app div.glbLeftPanel nav::-webkit-scrollbar {
  display: none;
}
div.app div.glbLeftPanel nav li.submenu input + ul {
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.5s;
}
div.app div.glbLeftPanel nav li.submenu input:checked + ul {
  max-height: 1000px;
  overflow: hidden;
  transition: max-height 0.5s;
}
div.app div.glbLeftPanel .mn_menuActive {
  background-color: #fafafb;
  color: #535a60;
  font-weight: 700;
  border-right: 3px solid #0077cc;
}
div.app div.glbLeftPanel #leftPanelClose {
  display: none;
}
@media only screen and (max-width: 991.9px) {
  div.app div.glbLeftPanel {
    position: absolute;
    left: -400px;
    top: 0;
    bottom: 0;
    transition: all 0.5s;
    z-index: 20;
    box-shadow: 0px -5px 5px 5px #5b5b5b;
  }
}
div.app div.glbLeftPanel .submenu {
  color: #848d95;
  padding: 0px;
}
div.app div.glbLeftPanel .submenu label div {
  padding: 10px;
  color: #b3c1ce;
  cursor: pointer;
}
div.app div.glbLeftPanel li {
  padding: 10px 0 10px 10px;
  margin: 5px 0px;
}
div.app div.glbLeftPanel li:hover:not(.submenu) {
  background-color: rgba(255, 255, 255, 0.3);
  border-right: 3px solid var(--color-menu-li-border);
  cursor: pointer;
}
div.app div.glbRightPanel {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  max-width: calc(100% - 220px - 2*10px);
}
div.app div.glbRightPanel.hideMenu,
div.app div.glbRightPanel.dasboard-presentation {
  max-width: calc(100%);
}
@media only screen and (max-width: 991.9px) {
  div.app div.glbRightPanel {
    max-width: 100%;
    min-width: var(--right-panel-min-width);
  }
}
div.app div.glbRightPanel div.upperPanel {
  width: 100%;
  height: 35px;
  background-color: #fafafb;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  line-height: 35px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-top: 3px solid #0077cc;
}
div.app div.glbRightPanel div.upperPanel > :first-child {
  margin: 0 10px;
  cursor: pointer;
  align-self: center;
}
@media only screen and (min-width: 992px) {
  div.app div.glbRightPanel div.upperPanel > :first-child {
    /*
					display: none;
					*/
  }
}
div.app div.glbRightPanel div.upperPanel > :first-child > div {
  width: 35px;
  height: 3px;
  background-color: black;
  margin: 5px 0;
}
div.app div.glbRightPanel div.upperPanel #upperMenu {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
}
div.app div.glbRightPanel div.upperPanel #upperMenu * {
  margin: 0 10px;
}
@media only screen and (max-width: 991.9px) {
  div.app div.glbRightPanel div.upperPanel #upperMenu div {
    margin: 0;
  }
}
div.app div.glbRightPanel div.upperPanel #upperMenu #settings,
div.app div.glbRightPanel div.upperPanel #upperMenu #logout {
  display: flex;
  align-items: center;
}
div.app div.glbRightPanel div.upperPanel #upperMenu *:hover {
  text-decoration: underline solid #0077cc;
  cursor: pointer;
}
div.app div.glbRightPanel .container {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  height: calc(100vh - 35px - 3px);
  margin: 0;
  max-width: none;
  position: static;
}
div.app div.glbRightPanel .container div.hide {
  display: none;
}
div.app div.glbRightPanel .container div.mn_page {
  height: calc(100vh - 35px - 3px);
  width: 100%;
  display: flex;
  flex-direction: column;
}
div.app div.glbRightPanel .container div.mn_page.hide {
  display: none;
}
div.app div.glbRightPanel .container div.mn_page div.modulTitle {
  background-color: var(--color-module-title-background);
  color: black;
  font-size: 1em;
  font-weight: bold;
  height: 16.5px;
  padding: 5px;
  align-content: center;
}
div.app div.glbRightPanel .container div.mn_page div.filter {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  color: white;
  background-color: #3d3d3d;
  padding: 5px;
  font-weight: bold;
  font-size: 0.95em;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
div.app div.glbRightPanel .container div.mn_page div.filter * {
  margin: 0 5px;
}
div.app div.glbRightPanel .container div.mn_page div.filter {
  row-gap: 4px;
}
div.app div.glbRightPanel .container div.mn_page div.filter * {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}
div.app div.glbRightPanel .container div.mn_page div.filter .search-container {
  position: relative;
  display: block;
  width: 100%;
  max-width: 250px;
}
div.app div.glbRightPanel .container div.mn_page div.filter .search-container input.search-input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--main-color-extra-light);
  border-radius: var(--border-radius);
  font-size: 13px;
  outline: none;
  transition: border-color 0.12s ease;
  padding: 4px 30px 4px 32px;
  /* padding prepisujeme kvoli ikone lupiny vlavo */
}
div.app div.glbRightPanel .container div.mn_page div.filter .search-container input.search-input:focus {
  border-color: var(--main-color);
}
div.app div.glbRightPanel .container div.mn_page div.filter .search-container .search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-color: var(--main-color);
  opacity: 0.6;
  pointer-events: none;
  -webkit-mask: url("../imgs/search.svg") no-repeat center / contain;
  mask: url("../imgs/search.svg") no-repeat center / contain;
}
div.app div.glbRightPanel .container div.mn_page div.filter .search-container .search-clear {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  opacity: 0.4;
}
div.app div.glbRightPanel .container div.mn_page div.filter .search-container .search-clear:hover {
  opacity: 0.7;
}
div.app div.glbRightPanel .container div.mn_page div.filter div.filterButton {
  margin-left: auto;
}
div.app div.glbRightPanel .container div.mn_page div.filter div.filterButton,
div.app div.glbRightPanel .container div.mn_page div.filter div.legendButton,
div.app div.glbRightPanel .container div.mn_page div.filter div.backButton {
  display: flex;
  align-items: center;
  cursor: pointer;
  opacity: 0.8;
}
div.app div.glbRightPanel .container div.mn_page div.filter div.filterButton:hover,
div.app div.glbRightPanel .container div.mn_page div.filter div.legendButton:hover,
div.app div.glbRightPanel .container div.mn_page div.filter div.backButton:hover {
  opacity: 1;
}
div.app div.glbRightPanel .container div.mn_page div.filter div.filterPopup,
div.app div.glbRightPanel .container div.mn_page div.filter div.legendPopup {
  position: absolute;
  top: 12px;
  left: calc(50% - 160px - 1.1em);
  padding: 1.2rem 1.1rem 1rem;
  margin: 0 !important;
  max-width: 320px;
  max-height: 92%;
  z-index: 600;
  display: flex;
  flex-direction: column;
  transition: all 0.5s;
  background-color: rgba(248, 248, 250, 0.72);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  backdrop-filter: blur(30px) saturate(180%);
  border-radius: var(--border-radius);
  border: 0.5px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.22);
  animation: dk_sheetUp 0.25s ease-out;
  color: #3d3d3d;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
}
div.app div.glbRightPanel .container div.mn_page div.filter div.filterPopup.hide,
div.app div.glbRightPanel .container div.mn_page div.filter div.legendPopup.hide {
  display: flex;
  top: -100%;
  clip: rect(0px 0px 0px 0px);
}
div.app div.glbRightPanel .container div.mn_page div.filter div.filterPopup *,
div.app div.glbRightPanel .container div.mn_page div.filter div.legendPopup * {
  margin: 0 !important;
}
div.app div.glbRightPanel .container div.mn_page div.filter div.filterPopup > div:not(.controls),
div.app div.glbRightPanel .container div.mn_page div.filter div.legendPopup > div:not(.controls) {
  display: flex;
  flex-direction: column;
  width: 300px;
  padding: 0.5em;
  margin: 5px 0 !important;
}
div.app div.glbRightPanel .container div.mn_page div.filter div.filterPopup > div:not(.controls) span,
div.app div.glbRightPanel .container div.mn_page div.filter div.legendPopup > div:not(.controls) span {
  margin-bottom: 5px !important;
}
div.app div.glbRightPanel .container div.mn_page div.filter div.filterPopup > div.controls,
div.app div.glbRightPanel .container div.mn_page div.filter div.legendPopup > div.controls {
  background-color: whitesmoke;
  position: sticky;
  bottom: -1rem;
  /* kompenzuje spodný padding rodiča */
  margin: 0 -1.1rem -1rem !important;
  /* natiahne cez bočný/spodný padding popupu */
  padding: 12px 1.1rem 1rem;
  display: flex;
  width: auto;
  justify-content: space-between;
  gap: 10px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
div.app div.glbRightPanel .container div.mn_page div.filter div.filterPopup > div.controls div,
div.app div.glbRightPanel .container div.mn_page div.filter div.legendPopup > div.controls div {
  flex: 1;
  text-align: center;
  cursor: pointer;
  padding-top: 0;
}
div.app div.glbRightPanel .container div.mn_page div.filter div.filterPopup > div.controls div.btnSubmit,
div.app div.glbRightPanel .container div.mn_page div.filter div.legendPopup > div.controls div.btnSubmit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  font-size: 17px;
  font-weight: 500;
  background: var(--popup-save-button, rgba(103, 121, 154, 0.9));
  color: var(--main-login-button-text, white);
  border: none;
  border-radius: var(--border-radius);
  transition: background 0.15s, transform 0.1s;
  width: 45%;
  box-shadow: 0 4px 12px rgba(103, 121, 154, 0.4);
}
div.app div.glbRightPanel .container div.mn_page div.filter div.filterPopup > div.controls div.btnSubmit:hover,
div.app div.glbRightPanel .container div.mn_page div.filter div.legendPopup > div.controls div.btnSubmit:hover {
  background: #576a89;
}
div.app div.glbRightPanel .container div.mn_page div.filter div.filterPopup > div.controls div.btnSubmit:active,
div.app div.glbRightPanel .container div.mn_page div.filter div.legendPopup > div.controls div.btnSubmit:active {
  transform: scale(0.96);
}
div.app div.glbRightPanel .container div.mn_page div.filter div.filterPopup > div.controls div.btnCancel,
div.app div.glbRightPanel .container div.mn_page div.filter div.legendPopup > div.controls div.btnCancel {
  width: 45%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  font-size: 15px;
  font-weight: 600;
  background: rgba(103, 121, 154, 0.12);
  color: var(--main-color, rgba(103, 121, 154, 0.9));
  border: none;
  border-radius: var(--border-radius);
  transition: background 0.15s, transform 0.1s;
  box-shadow: none;
}
div.app div.glbRightPanel .container div.mn_page div.filter div.filterPopup > div.controls div.btnCancel:hover,
div.app div.glbRightPanel .container div.mn_page div.filter div.legendPopup > div.controls div.btnCancel:hover {
  background-color: rgba(103, 121, 154, 0.2);
}
div.app div.glbRightPanel .container div.mn_page div.filter div.filterPopup > div.controls div.btnCancel:active,
div.app div.glbRightPanel .container div.mn_page div.filter div.legendPopup > div.controls div.btnCancel:active {
  transform: scale(0.96);
}
div.app div.glbRightPanel .container div.mn_page div.moduleContainer {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow-x: auto;
  flex-grow: 1;
}
div.app div.glbRightPanel .container div.mn_page div.moduleContainer div.main {
  display: flex;
  flex: 1;
  min-height: 60%;
  margin-bottom: 0;
  overflow: auto;
}
@media only screen and (max-width: 991.9px) {
  div.app div.glbRightPanel .container div.mn_page div.moduleContainer div.main {
    margin-bottom: calc(10px);
  }
}
div.app div.glbRightPanel .container div.mn_page div.moduleContainer table {
  flex-grow: 1;
}
@media only screen and (max-width: 991.9px) {
  div.app div.glbRightPanel .container div.mn_page div.moduleContainer div.main-with-detail {
    margin-bottom: calc(var(--detail-table-title-height));
    max-height: none !important;
  }
}
div.app div.glbRightPanel .container div.mn_page div.moduleContainer div.desc {
  max-height: calc(40% - 1px);
  border-top: 1px solid black;
  box-shadow: 0px 0px 10px black;
  background-color: #FFF;
  z-index: 12;
}
div.app div.glbRightPanel .container div.mn_page div.moduleContainer div.desc div.title {
  display: none;
}
div.app div.glbRightPanel .container div.mn_page div.moduleContainer div.desc div.content {
  min-height: 50px;
  display: flex;
  overflow: auto;
  gap: 0.5em;
  height: 100%;
}
div.app div.glbRightPanel .container div.mn_page div.moduleContainer div.desc div.content div {
  flex: 1;
}
div.app div.glbRightPanel .container div.mn_page div.moduleContainer div.desc div.content div.pomockyTable {
  flex: 2;
}
div.app div.glbRightPanel .container div.mn_page div.moduleContainer div.desc div.content div.pomockyTable table {
  min-width: 400px;
}
div.app div.glbRightPanel .container div.mn_page div.moduleContainer div.desc div.content div table {
  min-width: 250px;
  width: 100%;
  margin-bottom: 0;
}
@media only screen and (max-width: 991.9px) {
  div.app div.glbRightPanel .container div.mn_page div.moduleContainer div.desc {
    position: absolute;
    top: 0;
    width: 100%;
    min-width: var(--right-panel-min-width);
    /*
        height: 100%;
        max-height: 100%;
        */
    height: 100vh;
    max-height: none !important;
    z-index: 12;
    overflow: auto;
    background-color: #FFF;
    transition: all 1s;
    border-top: none;
    box-shadow: none;
  }
  div.app div.glbRightPanel .container div.mn_page div.moduleContainer div.desc div[data-form-detail] {
    min-width: unset !important;
    width: 100% !important;
  }
  div.app div.glbRightPanel .container div.mn_page div.moduleContainer div.desc div[data-form-detail]:not(.form-detail-active) {
    display: none;
  }
  div.app div.glbRightPanel .container div.mn_page div.moduleContainer div.desc div.title:after {
    position: absolute;
    right: 1em;
    content: '\2913';
    font-size: large;
  }
  div.app div.glbRightPanel .container div.mn_page div.moduleContainer div.desc.mobile_hide {
    overflow: hidden;
    top: calc(100vh - var(--detail-table-title-height));
    height: var(--detail-table-title-height);
  }
  div.app div.glbRightPanel .container div.mn_page div.moduleContainer div.desc.mobile_hide div.title:after {
    content: '\2912';
  }
  div.app div.glbRightPanel .container div.mn_page div.moduleContainer div.desc div.title {
    display: block;
    height: var(--detail-table-title-height);
    line-height: var(--detail-table-title-height);
    background-color: #3d3d3d;
    color: white;
    text-align: center;
    font-weight: bold;
    top: 0;
    position: sticky;
    margin-bottom: 0.5em;
    touch-action: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  div.app div.glbRightPanel .container div.mn_page div.moduleContainer div.desc div.title:before {
    content: "";
    display: block;
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
  }
  div.app div.glbRightPanel .container div.mn_page div.moduleContainer div.desc div.content {
    /* height: auto; */
    height: calc(100vh - var(--detail-table-title-height) - 0.5em);
  }
  div.app div.glbRightPanel .container div.mn_page div.moduleContainer div.desc table {
    flex: none;
  }
  div.app div.glbRightPanel .container div.mn_page div.moduleContainer div.desc table.pomockyTable table {
    flex: none;
  }
}
div.login_form {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(3px);
  z-index: 200;
  display: flex;
  justify-content: center;
  align-items: center;
}
div.login_form.hide {
  display: none;
}
div.login_form div.login_container {
  display: flex;
  flex-direction: column;
  min-width: min(350px,  100% - 8px - 20px );
  max-width: calc(100% - 8px - 20px);
  align-items: center;
  background-color: var(--login-background-color);
  border-radius: var(--border-radius);
  max-height: calc(100% - 20px - 16px);
  overflow-y: auto;
  overflow-x: hidden;
}
div.login_form div.login_container.created {
  box-shadow: 3px 3px 3px 3px black;
  padding: 10px;
}
div.login_form div.login_container * {
  width: 98%;
  height: 2em;
  margin-top: 2em;
  outline: none;
}
div.login_form div.login_container h3 {
  text-align: center;
  margin-bottom: 0;
  margin-top: 1em;
  font-size: 2em;
}
div.login_form div.login_container button {
  margin-bottom: 1em;
  width: 100%;
  height: 32px;
  border-radius: var(--border-radius);
  background-color: var(--main-login-button-background);
  color: var(--main-login-button-text);
}
div.login_form div.login_container input {
  text-align: center;
  border-radius: var(--border-radius);
}
.text-in-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  font-size: 10px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  /*background-color: #f0f0f0;*/
}
.text-in-circle:after {
  content: '\00A0';
}
/* li ... dk-select2 */
/* pozor! nemoze to byt na .disabled, lebo okrem dk-select2 sa to pouziva specialne aj inde a ma to byt klikatelne (sklady) */
.cell-disabled {
  pointer-events: none;
  opacity: 0.5;
  cursor: default;
}
*:has(> .cell-disabled) {
  cursor: default;
}
.text-in-circle.nova-zostava {
  border: 2px solid green;
  color: green;
}
.text-in-circle.nova-zostava:after {
  content: 'Z';
}
@media only screen and (min-width: 601px) {
  .iziToast-buttons.buttons-bottom {
    float: unset !important;
  }
}
dk-select2 .select2-container--default .select2-selection--single {
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  height: 30px;
  display: flex;
  align-items: center;
  transition: border-color 0.15s ease;
}
dk-select2 .select2-container--default .select2-selection--single .select2-selection__rendered {
  font-size: 13px;
  color: #2d3436;
  padding-left: 10px;
  line-height: 28px;
}
dk-select2 .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 28px;
}
table *,
div.tabulator {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  --table-thead-background-color: #bdbdbd;
  --table-thead-font-color: rgba(0, 0, 0, 0.8);
  --table-border-color: rgba(0, 0, 0, 0.2);
  --table-tr-odd-color: rgba(0, 119, 204, 0.1);
  --table-tr-hover-color: rgba(0, 119, 204, 0.2);
  --table-tr-active-background-color: rgba(255, 0, 0, 0.2);
  --table-tr-active-border-color: red;
  --table-td-editable-background-color: red;
  --table-actionMenu-background-color: #0077cc;
  --table-actionMenu-shadow-color: rgba(0, 0, 0, 0.3);
}
table {
  width: 100%;
  font-size: 12px;
  margin-bottom: 10px;
  border-collapse: collapse;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
table.table-text-searched {
  border: 2px solid red;
}
table thead {
  font-weight: 600;
  color: rgba(0, 0, 0, 0.8);
}
table thead th {
  position: sticky;
  top: 0;
  background-color: var(--table-thead-background-color);
  z-index: 2;
  text-align: left;
  height: 20px;
  padding-left: 5px;
  padding-right: 5px;
}
table thead th span.hide_columns_onClick {
  float: right;
  cursor: pointer;
}
table thead th:has(span:hover) {
  background-color: rgba(0, 0, 0, 0.3);
}
table thead th:first-child {
  padding-left: 5px;
}
table thead th:last-child {
  padding-right: 5px;
}
table thead th.clicked {
  font-size: 20px;
  cursor: pointer;
}
table thead th[action="export"] img {
  float: right;
}
table tr .hide_column {
  display: none;
}
table tbody {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
table tbody tr {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  height: 20px;
}
table tbody tr.hide {
  display: none;
}
table tbody tr.row-empty {
  pointer-events: none;
  background-color: #ffffff !important;
  color: #ffffff !important;
  border-bottom: none;
  border-top: none;
  height: 21.6px;
}
table tbody tr.row-empty * {
  pointer-events: none;
  background-color: #ffffff !important;
  color: #ffffff !important;
}
table tbody tr:nth-child(odd) {
  background-color: rgba(0, 119, 204, 0.1);
}
table tbody tr:hover {
  background-color: rgba(0, 119, 204, 0.2);
  cursor: pointer;
}
table tbody tr.active {
  border-left: 5px solid red;
  background-color: rgba(255, 0, 0, 0.2);
}
table tbody tr.highlight {
  background-color: var(--main-color-light);
}
table tbody tr.row-sklad-vydajka {
  background-color: rgba(255, 0, 0, 0.05);
}
table tbody tr.row-sklad-prijemka {
  background-color: rgba(0, 255, 0, 0.05);
}
table tbody tr.row-sklad-prevodka {
  background-color: rgba(255, 255, 0, 0.15);
}
table tbody tr.row-sklad-prevodka-inventura {
  background-color: rgba(0, 0, 0, 0.15);
}
table tbody tr.row-sklad-zostava {
  background-color: rgba(0, 119, 204, 0.4);
}
table tbody tr td {
  padding: var(--table-padding-td);
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}
table tbody tr td.code-fmt-error {
  background-color: #ffc458;
}
table tbody tr td svg {
  /*
					max-height: 16px;
					height: 100%;
					*/
  height: var(--table-height-svg);
  vertical-align: middle;
  align-content: center;
  display: block;
  margin: auto;
}
table tbody tr td[name='hlu_priorita'] {
  text-align: center;
  color: #000;
}
table tbody tr td[name='hlu_priorita'][data-value='3'] {
  background-color: #ff5b5b;
}
table tbody tr td[name='hlu_priorita'][data-value='2'] {
  background-color: #ffc458;
}
table tbody tr td[name='hlu_priorita'][data-value='1'] {
  background-color: #a4ffa4;
}
table tbody tr td.editable {
  text-align: center;
}
table tbody tr td.editable:hover {
  background-color: red;
}
table tbody tr td.editable:after {
  content: '\270E';
  font-size: 1rem;
  margin-left: 10px;
  margin-right: 2px;
}
table tbody tr td.td_actions {
  position: relative;
  text-align: center;
}
table tbody tr td.td_actions > button {
  width: 30px;
}
table tbody tr td.td_actions:hover div.actionsMenu {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
table tbody tr td.td_actions div.actionsMenu {
  display: none;
  position: absolute;
  background-color: #0077cc;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.3);
  z-index: 1;
  right: 0;
  top: 0;
}
table tbody tr td.td_actions div.actionsMenu button {
  margin: 2px 2px;
}
table tfoot tr th {
  position: sticky;
  bottom: 0;
  background-color: var(--table-thead-background-color);
  z-index: 2;
  text-align: left;
  height: 20px;
}
table tfoot tr th > div > div {
  display: flex;
  gap: 2em;
  height: 20px;
}
table tfoot tr th select {
  height: 20px;
}
table tfoot tr th .hide {
  display: none !important;
}
table img {
  width: 20px;
}
@media only screen and (max-width: 991.9px) {
  table th.mobile-hide,
  table td.mobile-hide {
    display: none;
  }
}
div.mobile-card-list {
  margin: 3% 3% calc(10% + var(--detail-table-title-height) + 0.5em);
}
div.mobile-card-list.master {
  margin: 0 !important;
  max-height: calc(100% - var(--detail-table-title-height)) !important;
  overflow-y: auto !important;
}
div.mobile-card-list.master:after {
  content: "";
  display: block;
  height: 10%;
  width: 100%;
}
div.tabulator.with-mobile-card div.tabulator-tableholder div.tabulator-placeholder {
  width: 100% !important;
}
div.tabulator-table.with-mobile-card {
  width: 100%;
}
div.tabulator-table.with-mobile-card div.tabulator-row:first-of-type {
  margin-top: 1rem;
}
div.tabulator-table.with-mobile-card div.tabulator-row {
  padding-right: 6px !important;
  padding-left: 6px !important;
}
div.tabulator-table.with-mobile-card div.tabulator-row.tabulator-selected {
  background-color: unset !important;
}
div.tabulator-table.with-mobile-card div.tabulator-row.tabulator-selected div.mobile-card {
  background-color: var(--tabulator-active-row-bg-color);
}
.with-mobile-card.one-row.tabulator-header {
  overflow-x: auto !important;
  display: flex;
}
.with-mobile-card.one-row.tabulator-header .tabulator-header-contents {
  overflow-x: visible !important;
  width: max-content !important;
}
.with-mobile-card.one-row.tabulator-header .tabulator-headers {
  flex-wrap: nowrap !important;
  width: max-content !important;
}
.with-mobile-card.one-row.tabulator-header .tabulator-col {
  flex: 0 0 auto !important;
}
.with-mobile-card.one-row.tabulator-header.hide-actions .tabulator-col.actions-column {
  display: none;
}
.with-mobile-card.tabulator-header {
  height: auto !important;
  padding: 0 !important;
}
.with-mobile-card.tabulator-header .tabulator-header-contents {
  height: auto !important;
}
.with-mobile-card.tabulator-header .tabulator-header-contents > br {
  display: none !important;
}
.with-mobile-card.tabulator-header .tabulator-headers {
  flex-wrap: wrap !important;
  height: auto !important;
  align-items: stretch !important;
}
.with-mobile-card.tabulator-header .tabulator-col {
  flex: 1 1 auto !important;
  width: auto !important;
  margin: 2px !important;
  border: 1px solid #ddd !important;
}
.with-mobile-card.tabulator-header .tabulator-col.actions-column {
  flex: 0 0 auto !important;
}
.with-mobile-card.tabulator-header .tabulator-col.actions-column .tabulator-col-content .tabulator-col-title > div {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 100% !important;
}
.with-mobile-card.tabulator-header .tabulator-col.dummy-column {
  display: none !important;
}
.with-mobile-card.tabulator-header .tabulator-col .tabulator-col-content {
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 5px 4px !important;
  box-sizing: border-box !important;
}
.with-mobile-card.tabulator-header .tabulator-col .tabulator-col-content .tabulator-header-filter {
  margin-left: 0.5em;
  margin-top: 0;
}
.with-mobile-card.tabulator-header .tabulator-col-title {
  white-space: normal !important;
}
.with-mobile-card.tabulator-header .tabulator-arrow {
  margin-left: 5px !important;
}
.with-mobile-card.tabulator-header .tabulator-col-resize-handle,
.with-mobile-card.tabulator-header .tabulator-frozen-rows-holder {
  display: none !important;
}
div.mobile-card-list div.mobile-card,
div.tabulator-row div.mobile-card {
  border: 1px solid #e0e0e0;
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  padding: 8px;
  background: white;
  color: #404040;
}
div.mobile-card-list div.mobile-card.highlight,
div.tabulator-row div.mobile-card.highlight {
  background-color: rgba(80, 101, 168, 0.05);
}
div.mobile-card-list div.mobile-card div.mobile-card-header,
div.tabulator-row div.mobile-card div.mobile-card-header {
  color: #404040;
  font-size: 24px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  padding-left: 6px;
  gap: 8px;
}
div.mobile-card-list div.mobile-card div.mobile-card-header div.mobile-card-title,
div.tabulator-row div.mobile-card div.mobile-card-header div.mobile-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #2d3436;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: normal;
}
div.mobile-card-list div.mobile-card div.mobile-card-header div.mobile-card-actions,
div.tabulator-row div.mobile-card div.mobile-card-header div.mobile-card-actions {
  max-width: max-content;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  position: relative;
}
div.mobile-card-list div.mobile-card div.mobile-card-header div.mobile-card-actions button,
div.tabulator-row div.mobile-card div.mobile-card-header div.mobile-card-actions button,
div.mobile-card-list div.mobile-card div.mobile-card-header div.mobile-card-actions svg,
div.tabulator-row div.mobile-card div.mobile-card-header div.mobile-card-actions svg {
  cursor: pointer;
  width: 24px;
  height: 24px;
  border: none;
}
div.mobile-card-list div.mobile-card div.mobile-card-header div.mobile-card-actions button.btn-actions-menu,
div.tabulator-row div.mobile-card div.mobile-card-header div.mobile-card-actions button.btn-actions-menu {
  position: relative;
  background: none;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
div.mobile-card-list div.mobile-card div.mobile-card-header div.mobile-card-actions button.btn-actions-menu:hover,
div.tabulator-row div.mobile-card div.mobile-card-header div.mobile-card-actions button.btn-actions-menu:hover,
div.mobile-card-list div.mobile-card div.mobile-card-header div.mobile-card-actions button.btn-actions-menu.open,
div.tabulator-row div.mobile-card div.mobile-card-header div.mobile-card-actions button.btn-actions-menu.open {
  background-color: rgba(0, 0, 0, 0.06);
}
div.mobile-card-list div.mobile-card div.mobile-card-header div.mobile-card-actions button.btn-actions-menu::before,
div.tabulator-row div.mobile-card div.mobile-card-header div.mobile-card-actions button.btn-actions-menu::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #666;
  box-shadow: 0 -7px 0 0 #666, 0 7px 0 0 #666;
}
div.mobile-card-list div.mobile-card div.mobile-card-header div.mobile-card-actions div.mobile-card-menu,
div.tabulator-row div.mobile-card div.mobile-card-header div.mobile-card-actions div.mobile-card-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 20;
  display: flex;
  flex-direction: column;
  min-width: 180px;
  padding: 6px;
  gap: 2px;
  border-radius: var(--border-radius);
  border: 0.5px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
  background-color: rgba(248, 248, 250, 0.86);
  backdrop-filter: blur(22px) saturate(140%);
}
div.mobile-card-list div.mobile-card div.mobile-card-header div.mobile-card-actions div.mobile-card-menu button.mobile-card-menu-item,
div.tabulator-row div.mobile-card div.mobile-card-header div.mobile-card-actions div.mobile-card-menu button.mobile-card-menu-item {
  width: 100% !important;
  height: auto !important;
  min-height: 36px;
}
div.mobile-card-list div.mobile-card div.mobile-card-header div.mobile-card-actions div.mobile-card-menu .mobile-card-menu-item,
div.tabulator-row div.mobile-card div.mobile-card-header div.mobile-card-actions div.mobile-card-menu .mobile-card-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border: none;
  border-radius: calc(var(--border-radius) - 4px);
  background: none;
  cursor: pointer;
  text-align: left;
  white-space: nowrap;
}
div.mobile-card-list div.mobile-card div.mobile-card-header div.mobile-card-actions div.mobile-card-menu .mobile-card-menu-item:hover,
div.tabulator-row div.mobile-card div.mobile-card-header div.mobile-card-actions div.mobile-card-menu .mobile-card-menu-item:hover {
  background-color: rgba(0, 0, 0, 0.06);
}
div.mobile-card-list div.mobile-card div.mobile-card-header div.mobile-card-actions div.mobile-card-menu .mobile-card-menu-item[disabled],
div.tabulator-row div.mobile-card div.mobile-card-header div.mobile-card-actions div.mobile-card-menu .mobile-card-menu-item[disabled] {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}
div.mobile-card-list div.mobile-card div.mobile-card-header div.mobile-card-actions div.mobile-card-menu .mobile-card-menu-item span.mobile-card-menu-item-icon,
div.tabulator-row div.mobile-card div.mobile-card-header div.mobile-card-actions div.mobile-card-menu .mobile-card-menu-item span.mobile-card-menu-item-icon,
div.mobile-card-list div.mobile-card div.mobile-card-header div.mobile-card-actions div.mobile-card-menu .mobile-card-menu-item svg,
div.tabulator-row div.mobile-card div.mobile-card-header div.mobile-card-actions div.mobile-card-menu .mobile-card-menu-item svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  display: inline-block;
}
div.mobile-card-list div.mobile-card div.mobile-card-header div.mobile-card-actions div.mobile-card-menu .mobile-card-menu-item span.mobile-card-menu-item-label,
div.tabulator-row div.mobile-card div.mobile-card-header div.mobile-card-actions div.mobile-card-menu .mobile-card-menu-item span.mobile-card-menu-item-label {
  flex: 1 1 auto;
  color: #2d3436;
  font-size: 15px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
}
div.mobile-card-list div.mobile-card div.mobile-card-header div.mobile-card-actions div.mobile-card-menu .mobile-card-menu-item span.mobile-card-menu-item-icon.btn-edit,
div.tabulator-row div.mobile-card div.mobile-card-header div.mobile-card-actions div.mobile-card-menu .mobile-card-menu-item span.mobile-card-menu-item-icon.btn-edit {
  background-color: #0077cc;
  -webkit-mask: url('../imgs/editIconMobile.svg') no-repeat center 1px / 18px;
  mask: url('../imgs/editIconMobile.svg') no-repeat center 1px / 18px;
}
div.mobile-card-list div.mobile-card div.mobile-card-header div.mobile-card-actions div.mobile-card-menu .mobile-card-menu-item span.mobile-card-menu-item-icon.btn-delete,
div.tabulator-row div.mobile-card div.mobile-card-header div.mobile-card-actions div.mobile-card-menu .mobile-card-menu-item span.mobile-card-menu-item-icon.btn-delete {
  background-color: #d9534f;
  -webkit-mask: url('../imgs/deleteIconMobile.svg') no-repeat center 0.5px / 18px;
  mask: url('../imgs/deleteIconMobile.svg') no-repeat center 0.5px / 18px;
}
div.mobile-card-list div.mobile-card div.mobile-card-header div.mobile-card-actions div.mobile-card-menu .mobile-card-menu-item span.mobile-card-menu-item-icon.btn-schedule,
div.tabulator-row div.mobile-card div.mobile-card-header div.mobile-card-actions div.mobile-card-menu .mobile-card-menu-item span.mobile-card-menu-item-icon.btn-schedule {
  background-color: #008000;
  -webkit-mask: url('../imgs/schedulingIconMobile.svg') no-repeat center 0.5px / 18px;
  mask: url('../imgs/schedulingIconMobile.svg') no-repeat center 0.5px / 18px;
}
div.mobile-card-list div.mobile-card div.mobile-card-header div.mobile-card-actions div.mobile-card-menu .mobile-card-menu-item span.mobile-card-menu-item-icon.btn-detail,
div.tabulator-row div.mobile-card div.mobile-card-header div.mobile-card-actions div.mobile-card-menu .mobile-card-menu-item span.mobile-card-menu-item-icon.btn-detail {
  background-color: #008000;
  -webkit-mask: url('../imgs/detailIconMobile.svg') no-repeat center 0.5px / 18px;
  mask: url('../imgs/detailIconMobile.svg') no-repeat center 0.5px / 18px;
}
div.mobile-card-list div.mobile-card div.mobile-card-header div.mobile-card-actions div.mobile-card-menu .mobile-card-menu-item span.mobile-card-menu-item-icon.btn-start,
div.tabulator-row div.mobile-card div.mobile-card-header div.mobile-card-actions div.mobile-card-menu .mobile-card-menu-item span.mobile-card-menu-item-icon.btn-start {
  background-color: #28a745;
  -webkit-mask: url('../imgs/play.svg') no-repeat center / 16px;
  mask: url('../imgs/play.svg') no-repeat center / 16px;
}
div.mobile-card-list div.mobile-card div.mobile-card-header div.mobile-card-actions div.mobile-card-menu .mobile-card-menu-item span.mobile-card-menu-item-icon.btn-close,
div.tabulator-row div.mobile-card div.mobile-card-header div.mobile-card-actions div.mobile-card-menu .mobile-card-menu-item span.mobile-card-menu-item-icon.btn-close {
  background-color: #6c757d;
  -webkit-mask: url('../imgs/done.svg') no-repeat center / 16px;
  mask: url('../imgs/done.svg') no-repeat center / 16px;
}
div.mobile-card-list div.mobile-card div.mobile-card-header div.mobile-card-actions div.mobile-card-menu .mobile-card-menu-item span.mobile-card-menu-item-icon.btn-reopen,
div.tabulator-row div.mobile-card div.mobile-card-header div.mobile-card-actions div.mobile-card-menu .mobile-card-menu-item span.mobile-card-menu-item-icon.btn-reopen {
  background-color: #ffc107;
  -webkit-mask: url('../imgs/unlock.svg') no-repeat center / 16px;
  mask: url('../imgs/unlock.svg') no-repeat center / 16px;
}
div.mobile-card-list div.mobile-card div.mobile-card-header div.mobile-card-actions div.mobile-card-menu .mobile-card-menu-item span.mobile-card-menu-item-icon.btn-comment,
div.tabulator-row div.mobile-card div.mobile-card-header div.mobile-card-actions div.mobile-card-menu .mobile-card-menu-item span.mobile-card-menu-item-icon.btn-comment {
  background-color: var(--main-color);
  -webkit-mask: url('../imgs/message.svg') no-repeat center / 16px;
  mask: url('../imgs/message.svg') no-repeat center / 16px;
}
div.mobile-card-list div.mobile-card div.mobile-card-header div.mobile-card-actions div.mobile-card-menu .mobile-card-menu-item[disabled] span.mobile-card-menu-item-icon,
div.tabulator-row div.mobile-card div.mobile-card-header div.mobile-card-actions div.mobile-card-menu .mobile-card-menu-item[disabled] span.mobile-card-menu-item-icon {
  background-color: #444444 !important;
}
div.mobile-card-list div.mobile-card div.mobile-card-header div.mobile-card-actions > button.btn-edit,
div.tabulator-row div.mobile-card div.mobile-card-header div.mobile-card-actions > button.btn-edit {
  background-color: #0077cc;
  -webkit-mask: url('../imgs/editIconMobile.svg') no-repeat center 3px / 22px;
  mask: url('../imgs/editIconMobile.svg') no-repeat center 3px / 22px;
}
div.mobile-card-list div.mobile-card div.mobile-card-header div.mobile-card-actions > button.btn-edit[disabled],
div.tabulator-row div.mobile-card div.mobile-card-header div.mobile-card-actions > button.btn-edit[disabled] {
  opacity: 0.6;
  background-color: #444444;
}
div.mobile-card-list div.mobile-card div.mobile-card-header div.mobile-card-actions > button.btn-delete,
div.tabulator-row div.mobile-card div.mobile-card-header div.mobile-card-actions > button.btn-delete {
  background-color: #d9534f;
  -webkit-mask: url('../imgs/deleteIconMobile.svg') no-repeat center 1.5px / 22px;
  mask: url('../imgs/deleteIconMobile.svg') no-repeat center 1.5px / 22px;
}
div.mobile-card-list div.mobile-card div.mobile-card-header div.mobile-card-actions > button.btn-delete[disabled],
div.tabulator-row div.mobile-card div.mobile-card-header div.mobile-card-actions > button.btn-delete[disabled] {
  opacity: 0.6;
  background-color: #444444;
}
div.mobile-card-list div.mobile-card div.mobile-card-header div.mobile-card-actions > button.btn-schedule,
div.tabulator-row div.mobile-card div.mobile-card-header div.mobile-card-actions > button.btn-schedule {
  background-color: #008000;
  -webkit-mask: url('../imgs/schedulingIconMobile.svg') no-repeat center 1.5px / 22px;
  mask: url('../imgs/schedulingIconMobile.svg') no-repeat center 1.5px / 22px;
}
div.mobile-card-list div.mobile-card div.mobile-card-header div.mobile-card-actions > button.btn-detail,
div.tabulator-row div.mobile-card div.mobile-card-header div.mobile-card-actions > button.btn-detail {
  background-color: #008000;
  -webkit-mask: url('../imgs/detailIconMobile.svg') no-repeat center 1.5px / 22px;
  mask: url('../imgs/detailIconMobile.svg') no-repeat center 1.5px / 22px;
}
div.mobile-card-list div.mobile-card div.mobile-card-header div.mobile-card-actions > button.btn-start,
div.tabulator-row div.mobile-card div.mobile-card-header div.mobile-card-actions > button.btn-start {
  background-color: #28a745;
  -webkit-mask: url('../imgs/play.svg') no-repeat center / 20px;
  mask: url('../imgs/play.svg') no-repeat center / 20px;
}
div.mobile-card-list div.mobile-card div.mobile-card-header div.mobile-card-actions > button.btn-close,
div.tabulator-row div.mobile-card div.mobile-card-header div.mobile-card-actions > button.btn-close {
  background-color: #6c757d;
  -webkit-mask: url('../imgs/done.svg') no-repeat center / 20px;
  mask: url('../imgs/done.svg') no-repeat center / 20px;
}
div.mobile-card-list div.mobile-card div.mobile-card-header div.mobile-card-actions > button.btn-reopen,
div.tabulator-row div.mobile-card div.mobile-card-header div.mobile-card-actions > button.btn-reopen {
  background-color: #ffc107;
  -webkit-mask: url('../imgs/unlock.svg') no-repeat center / 20px;
  mask: url('../imgs/unlock.svg') no-repeat center / 20px;
}
div.mobile-card-list div.mobile-card div.mobile-card-header div.mobile-card-actions > button.btn-comment,
div.tabulator-row div.mobile-card div.mobile-card-header div.mobile-card-actions > button.btn-comment {
  background-color: var(--main-color);
  -webkit-mask: url('../imgs/message.svg') no-repeat center / 20px;
  mask: url('../imgs/message.svg') no-repeat center / 20px;
}
div.mobile-card-list div.mobile-card div.mobile-card-description,
div.tabulator-row div.mobile-card div.mobile-card-description {
  white-space-collapse: break-spaces;
  font-size: 16px;
  padding: 0 6px;
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: normal;
}
div.mobile-card-list div.mobile-card div.mobile-card-body,
div.tabulator-row div.mobile-card div.mobile-card-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin-top: 12px;
  font-size: 16px;
  align-items: center;
  white-space: normal;
}
div.mobile-card-list div.mobile-card div.mobile-card-body div.mobile-label,
div.tabulator-row div.mobile-card div.mobile-card-body div.mobile-label {
  font-weight: 500;
  color: #666;
  padding: 0 6px;
}
div.mobile-card-list div.mobile-card div.mobile-card-details,
div.tabulator-row div.mobile-card div.mobile-card-details {
  white-space-collapse: break-spaces;
}
div.mobile-card-list div.mobile-card div.mobile-card-toggle,
div.tabulator-row div.mobile-card div.mobile-card-toggle {
  text-align: center;
  margin-top: 12px;
}
div.mobile-card-list div.mobile-card div.mobile-card-toggle button,
div.tabulator-row div.mobile-card div.mobile-card-toggle button {
  padding: 0;
  background: none;
  border: none;
  color: var(--main-color);
  cursor: pointer;
}
div.mobile-card-list div.mobile-card img,
div.tabulator-row div.mobile-card img {
  padding: 3px;
  max-height: 1200px;
  width: 50%;
  display: flex;
  justify-self: center;
  border-radius: var(--border-radius);
}
div.mobile-card-list div.mobile-card > a,
div.tabulator-row div.mobile-card > a {
  display: block;
  width: 50%;
  margin: 0 auto;
  text-align: center;
}
div.mobile-card-list div.mobile-card > a img,
div.tabulator-row div.mobile-card > a img {
  width: 100%;
}
div.compose-group {
  display: none;
  position: fixed;
  bottom: calc(var(--detail-table-title-height) + 1.7em);
  right: 3.3%;
  z-index: 2;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 0.5px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--border-radius);
  background-color: rgba(248, 248, 250, 0.86);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  backdrop-filter: blur(22px) saturate(140%);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 779.9px) {
  div.compose-group {
    display: inline-flex;
  }
}
div.compose-group button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
  -webkit-tap-highlight-color: transparent;
}
div.compose-group button.btn-add {
  background-color: var(--main-color);
  -webkit-mask: url('../imgs/createIconMobile.svg') no-repeat center / 32px;
  mask: url('../imgs/createIconMobile.svg') no-repeat center / 32px;
}
div.compose-group button.btn-filter {
  background-color: var(--main-color);
  -webkit-mask: url('../imgs/filterIconMobile.svg') no-repeat center / 32px;
  mask: url('../imgs/filterIconMobile.svg') no-repeat center / 32px;
}
div.StromZariadeni div.moduleContainer div.wrapper {
  display: flex;
  height: 100%;
}
@media only screen and (max-width: 779.9px) {
  div.StromZariadeni div.moduleContainer div.wrapper {
    flex-wrap: wrap;
    height: calc(100% - 32px);
  }
}
div.StromZariadeni div.moduleContainer div.wrapper div.tree-view {
  width: 50%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-right: 1px solid grey;
}
@media only screen and (max-width: 779.9px) {
  div.StromZariadeni div.moduleContainer div.wrapper div.tree-view {
    height: 50%;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid grey;
  }
}
div.StromZariadeni div.moduleContainer div.wrapper div.tree-view div.tree-header {
  flex-shrink: 0;
  padding: 1.2rem 1.1rem 0;
}
div.StromZariadeni div.moduleContainer div.wrapper div.tree-view div.tree-header div.tree-title {
  font-size: 19px;
  font-weight: 700;
  color: #2d3436;
  margin-bottom: 12px;
}
div.StromZariadeni div.moduleContainer div.wrapper div.tree-view div.tree-header div.tree-filter {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 779.9px) {
  div.StromZariadeni div.moduleContainer div.wrapper div.tree-view div.tree-header div.tree-filter {
    flex-wrap: wrap;
    gap: 0;
  }
}
div.StromZariadeni div.moduleContainer div.wrapper div.tree-view div.tree-header div.tree-filter div.tree-buttons {
  display: flex;
}
div.StromZariadeni div.moduleContainer div.wrapper div.tree-view div.tree-header div.tree-filter button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--main-color-extra-light);
  background-color: transparent;
  border-radius: var(--border-radius);
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--main-color);
  cursor: pointer;
  transition: background-color 0.12s ease, border-color 0.12s ease;
  max-width: fit-content;
}
div.StromZariadeni div.moduleContainer div.wrapper div.tree-view div.tree-header div.tree-filter button:focus {
  border-color: var(--main-color);
}
div.StromZariadeni div.moduleContainer div.wrapper div.tree-view div.tree-header div.tree-filter button span.icon {
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  background-color: currentColor;
  display: inline-block;
}
div.StromZariadeni div.moduleContainer div.wrapper div.tree-view div.tree-header div.tree-filter button span.icon.maximize {
  -webkit-mask: url("../imgs/maximize.svg") no-repeat center / contain;
  mask: url("../imgs/maximize.svg") no-repeat center / contain;
}
div.StromZariadeni div.moduleContainer div.wrapper div.tree-view div.tree-header div.tree-filter button span.icon.minimize {
  -webkit-mask: url("../imgs/minimize.svg") no-repeat center / contain;
  mask: url("../imgs/minimize.svg") no-repeat center / contain;
}
div.StromZariadeni div.moduleContainer div.wrapper div.tree-view div.tree-header div.tree-filter button:disabled,
div.StromZariadeni div.moduleContainer div.wrapper div.tree-view div.tree-header div.tree-filter button.is-cooldown {
  opacity: 0.5;
  cursor: not-allowed;
}
div.StromZariadeni div.moduleContainer div.wrapper div.tree-view div.tree-header div.tree-search {
  flex: 0 0 calc(50% - 4px);
  margin-bottom: 0;
  padding: 0;
}
div.StromZariadeni div.moduleContainer div.wrapper div.tree-view div.tree-header div.tree-search .search-container {
  position: relative;
  display: block;
  width: 100%;
}
div.StromZariadeni div.moduleContainer div.wrapper div.tree-view div.tree-header div.tree-search .search-container input.search-input {
  width: 100%;
  box-sizing: border-box;
  padding: 7px 30px 7px 32px;
  border: 1px solid var(--main-color-extra-light);
  border-radius: var(--border-radius);
  font-size: 13px;
  outline: none;
  transition: border-color 0.12s ease;
}
div.StromZariadeni div.moduleContainer div.wrapper div.tree-view div.tree-header div.tree-search .search-container input.search-input:focus {
  border-color: var(--main-color);
}
div.StromZariadeni div.moduleContainer div.wrapper div.tree-view div.tree-header div.tree-search .search-container .search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-color: var(--main-color);
  opacity: 0.6;
  pointer-events: none;
  -webkit-mask: url("../imgs/search.svg") no-repeat center / contain;
  mask: url("../imgs/search.svg") no-repeat center / contain;
}
div.StromZariadeni div.moduleContainer div.wrapper div.tree-view div.tree-header div.tree-search .search-container .search-clear {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  opacity: 0.4;
}
div.StromZariadeni div.moduleContainer div.wrapper div.tree-view div.tree-header div.tree-search .search-container .search-clear:hover {
  opacity: 0.7;
}
div.StromZariadeni div.moduleContainer div.wrapper div.tree-view div.tree {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 0 1.1rem 1rem;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
  touch-action: pan-y;
}
div.StromZariadeni div.moduleContainer div.wrapper div.tree-view div.tree div.childrens {
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}
div.StromZariadeni div.moduleContainer div.wrapper div.tree-view div.tree.force-expand-all div.childrens {
  display: block !important;
}
div.StromZariadeni div.moduleContainer div.wrapper div.tree-view div.tree.force-expand-all div.title.hasChildrens div.arrow {
  -webkit-mask: url("../imgs/arrow-down.svg") no-repeat center / contain !important;
  mask: url("../imgs/arrow-down.svg") no-repeat center / contain !important;
}
div.StromZariadeni div.moduleContainer div.wrapper div.tree-view div.tree.force-collapse-all div.childrens {
  display: none !important;
}
div.StromZariadeni div.moduleContainer div.wrapper div.tree-view div.tree.force-collapse-all div.title.hasChildrens div.arrow {
  -webkit-mask: url("../imgs/arrow-right.svg") no-repeat center / contain !important;
  mask: url("../imgs/arrow-right.svg") no-repeat center / contain !important;
}
div.StromZariadeni div.moduleContainer div.wrapper div.tree-view div.tree ul {
  padding-inline-start: 1.3em;
  list-style: none;
  margin: 0;
}
div.StromZariadeni div.moduleContainer div.wrapper div.tree-view div.tree > ul:first-child {
  width: 100%;
  box-sizing: border-box;
  padding-inline-start: 0;
}
div.StromZariadeni div.moduleContainer div.wrapper div.tree-view div.tree div.childrens > ul {
  border-left: 1px solid rgba(0, 0, 0, 0.12);
  margin-left: calc((4px/2) + (14px / 2) + 0.3px);
  padding-left: 0.8em;
}
div.StromZariadeni div.moduleContainer div.wrapper div.tree-view div.tree div.title {
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 3px 4px;
  font-size: 13px;
  transition: background-color 0.12s ease;
}
div.StromZariadeni div.moduleContainer div.wrapper div.tree-view div.tree div.title.highlight {
  color: var(--main-color);
  background-color: var(--main-color-extra-light);
}
div.StromZariadeni div.moduleContainer div.wrapper div.tree-view div.tree div.title.highlight div.controls {
  opacity: 1;
}
div.StromZariadeni div.moduleContainer div.wrapper div.tree-view div.tree div.title:hover {
  background-color: #f5f5f5;
}
div.StromZariadeni div.moduleContainer div.wrapper div.tree-view div.tree div.title:hover div.controls {
  opacity: 1;
}
div.StromZariadeni div.moduleContainer div.wrapper div.tree-view div.tree div.title div.arrow {
  display: inline-block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background-color: currentColor;
  opacity: 0.55;
  -webkit-mask: url("../imgs/arrow-right.svg") no-repeat center / contain;
  mask: url("../imgs/arrow-right.svg") no-repeat center / contain;
}
div.StromZariadeni div.moduleContainer div.wrapper div.tree-view div.tree div.title.hasChildrens:not(.plus) div.arrow {
  -webkit-mask: url("../imgs/arrow-down.svg") no-repeat center / contain;
  mask: url("../imgs/arrow-down.svg") no-repeat center / contain;
}
div.StromZariadeni div.moduleContainer div.wrapper div.tree-view div.tree div.title div.name {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
div.StromZariadeni div.moduleContainer div.wrapper div.tree-view div.tree div.title div.controls {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 8px;
  opacity: 0.35;
  transition: opacity 0.12s ease;
}
div.StromZariadeni div.moduleContainer div.wrapper div.tree-view div.tree div.title div.controls button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: none;
  border-radius: 5px;
  background-color: transparent;
  font-size: 13px;
  padding: 0;
  opacity: 1;
  color: inherit;
  cursor: pointer;
}
div.StromZariadeni div.moduleContainer div.wrapper div.description {
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
  width: 50%;
  min-width: 251px;
  padding: 16px 20px;
  overflow: auto;
}
@media only screen and (max-width: 779.9px) {
  div.StromZariadeni div.moduleContainer div.wrapper div.description {
    height: calc(50% - 1px);
    width: 100%;
    overflow: auto;
  }
}
div.StromZariadeni div.moduleContainer div.wrapper div.description div.description-title {
  margin: 0 0 4px 0;
  font-size: 20px;
  font-weight: 700;
  color: #2d3436;
}
div.StromZariadeni div.moduleContainer div.wrapper div.description div.description-breadcrumb {
  display: flex;
  gap: 2px;
  margin: 0 0 16px 0;
  font-size: 13px;
  color: rgba(45, 52, 54, 0.5);
}
div.StromZariadeni div.moduleContainer div.wrapper div.description div.description-breadcrumb svg {
  width: 15px;
  height: 15px;
  min-width: 15px;
  min-height: 15px;
}
div.StromZariadeni div.moduleContainer div.wrapper div.description div.description-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 8px;
}
div.StromZariadeni div.moduleContainer div.wrapper div.description div.description-body div.description-label,
div.StromZariadeni div.moduleContainer div.wrapper div.description div.description-body div.description-value {
  padding: 7.5px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 15px;
}
div.StromZariadeni div.moduleContainer div.wrapper div.description div.description-body div.description-label {
  color: rgba(45, 52, 54, 0.55);
}
div.StromZariadeni div.moduleContainer div.wrapper div.description div.description-body div.description-value {
  color: #2d3436;
}
div.StromZariadeni div.moduleContainer div.wrapper div.description div.description-body div.description-sortiment {
  grid-column: 1 / -1;
  border-bottom: none;
}
div.StromZariadeni div.moduleContainer div.wrapper div.description div.description-body div.description-sortiment div.sortiment-header {
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}
div.StromZariadeni div.moduleContainer div.wrapper div.description div.description-body div.description-sortiment div.sortiment-header label {
  font-weight: 600;
  color: #2d3436;
  white-space: nowrap;
}
div.StromZariadeni div.moduleContainer div.wrapper div.description div.description-body div.description-sortiment div.sortiment-header button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--main-color-extra-light);
  background-color: transparent;
  border-radius: var(--border-radius);
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--main-color);
  cursor: pointer;
  transition: background-color 0.12s ease, border-color 0.12s ease;
  max-width: fit-content;
}
div.StromZariadeni div.moduleContainer div.wrapper div.description div.description-body div.description-sortiment div.sortiment-header button:focus {
  border-color: var(--main-color);
  background-color: var(--main-color-extra-light);
}
div.StromZariadeni div.moduleContainer div.wrapper div.description div.description-body div.description-sortiment div.sortiment-header button:hover {
  border-color: var(--main-color);
  background-color: var(--main-color-extra-light);
}
div.StromZariadeni div.moduleContainer div.wrapper div.description div.description-body div.description-sortiment div.listSortiment {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 20px;
}
div.StromZariadeni div.moduleContainer div.wrapper div.description div.description-body div.description-sortiment div.listSortiment div.sortiment-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 6px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.3;
  color: #2d3436;
}
div.StromZariadeni div.moduleContainer div.wrapper div.description div.description-body div.description-sortiment div.listSortiment div.sortiment-item svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  cursor: pointer;
}
div.StromZariadeni div.moduleContainer div.wrapper div.description div.description-body div.description-sortiment #linkaSortiment div {
  margin: 0px 0;
}
div.StromZariadeni div.moduleContainer div.wrapper div.description div.description-footer {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-evenly;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  align-items: center;
  gap: 18px;
}
div.StromZariadeni div.moduleContainer div.wrapper div.description div.description-footer a,
div.StromZariadeni div.moduleContainer div.wrapper div.description div.description-footer label {
  display: flex;
  align-items: center;
  gap: 3px;
  text-decoration: none;
  color: var(--main-color);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
div.StromZariadeni div.moduleContainer div.wrapper div.description div.description-footer a span,
div.StromZariadeni div.moduleContainer div.wrapper div.description div.description-footer label span {
  vertical-align: middle;
}
div.StromZariadeni div.moduleContainer div.wrapper div.description div.description-footer a:hover,
div.StromZariadeni div.moduleContainer div.wrapper div.description div.description-footer label:hover {
  opacity: 0.8;
}
div.StromZariadeni div.moduleContainer div.wrapper div.description div.description-footer a svg,
div.StromZariadeni div.moduleContainer div.wrapper div.description div.description-footer label svg {
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
}
div.StromZariadeni div.moduleContainer div.wrapper div.description svg {
  width: 22px;
}
div.HlasenieUdrzby table tbody td[name="hlu_priorita_view"][data_value="4"] {
  background-color: #921926;
  color: white;
}
div.HlasenieUdrzby table tbody td[name="hlu_priorita_view"][data_value="3"] {
  background-color: #dc3547;
}
div.HlasenieUdrzby table tbody td[name="hlu_priorita_view"][data_value="2"] {
  background-color: #F8FC00;
}
div.tabulator div.tabulator-row div.tabulator-cell[tabulator-field="hlu_priorita_view"][data_value="4"] {
  background-color: #921926;
  color: white;
}
div.tabulator div.tabulator-row div.tabulator-cell[tabulator-field="hlu_priorita_view"][data_value="3"] {
  background-color: #dc3547;
  color: white;
}
div.tabulator div.tabulator-row div.tabulator-cell[tabulator-field="hlu_priorita_view"][data_value="2"] {
  color: black;
  background-color: #F8FC00;
}
div.EvidenciaCinnosti div.moduleContainer {
  display: flex;
  flex-direction: column;
}
div.EvidenciaCinnosti div.moduleContainer div.main {
  flex: 1;
  min-height: 60%;
  overflow: auto;
}
div.StavSkladu div.moduleContainer div.desc table.pomockyTable {
  min-width: 400px;
  flex: 2;
}
div.NovyPohyb div.moduleContainer {
  display: flex;
  flex-direction: column;
}
div.NovyPohyb div.moduleContainer div.main {
  flex: 1;
  min-height: 60%;
  overflow: auto;
}
div.NovyPohyb div.moduleContainer div.main table.novyPohybTable tbody tr td[key='fnUpdate'] img {
  display: none;
}
div.NovyPohyb div.moduleContainer div.main table.novyPohybTable tbody tr[attr_delete_visible='false'] td[key='fnDelete'] img {
  display: none;
}
div.NovyPohyb div.moduleContainer div.desc div.content {
  /*
			min-height: 50px;
			margin-top: 10px;
			display: flex;
			flex-wrap: wrap;
			overflow: auto;
			*/
}
div.NovyPohyb div.moduleContainer div.desc div.content table {
  /*
				min-width: 250px;
				flex: 1;
				margin: 5px;
				width: 0px;
                height: 0px;
 */
}
div.NovyPohyb div.moduleContainer div.desc div.content table.zoznamPohybovMaterialTable thead th[action='add'] {
  display: none;
}
div.NovyPohyb div.moduleContainer div.desc div.content table.zoznamPohybovMaterialTable tbody tr td[key='fnUpdate'] {
  display: none;
}
div.NovyPohyb div.moduleContainer div.desc div.content table.zoznamPohybovMaterialTable tbody tr td[key='fnDelete'] img {
  display: none;
}
div.ZoznamPohybov div.moduleContainer {
  display: flex;
  flex-direction: column;
}
div.ZoznamPohybov div.moduleContainer div.main {
  flex: 1;
  min-height: 60%;
  overflow: auto;
}
div.ZoznamPohybov div.moduleContainer div.main table.zoznamPohybovTable.readonly thead th[action="add"] {
  display: none;
}
div.ZoznamPohybov div.moduleContainer div.main table.zoznamPohybovTable.readonly tbody tr td[key="fnUpdate"] {
  display: none;
}
div.ZoznamPohybov div.moduleContainer div.main table.zoznamPohybovTable.readonly tbody tr td[key="fnDelete"] img,
div.ZoznamPohybov div.moduleContainer div.main table.zoznamPohybovTable.readonly tbody tr td[key="fnDelete"] svg {
  display: none;
}
div.ZoznamPohybov div.moduleContainer div.desc div.content {
  /*
			min-height: 50px;
			margin-top: 10px;
			display: flex;
			flex-wrap: wrap;
			overflow: auto;
            */
}
div.ZoznamPohybov div.moduleContainer div.desc div.content table {
  /*
				min-width: 250px;
				flex: 1;
				margin: 5px;
                width: 0px;
                height: 0px;
 */
}
div.ZoznamPohybov div.moduleContainer div.desc div.content table.zoznamPohybovMaterialTable.readonly thead th[action="add"] {
  display: none;
}
div.ZoznamPohybov div.moduleContainer div.desc div.content table.zoznamPohybovMaterialTable.readonly tbody tr td[key="fnUpdate"] {
  display: none;
}
div.ZoznamPohybov div.moduleContainer div.desc div.content table.zoznamPohybovMaterialTable.readonly tbody tr td[key="fnDelete"] img,
div.ZoznamPohybov div.moduleContainer div.desc div.content table.zoznamPohybovMaterialTable.readonly tbody tr td[key="fnDelete"] svg {
  display: none;
}
div.PricinyPoruchy {
  display: flex;
  flex-direction: column;
  height: 100%;
}
div.PricinyPoruchy .moduleContainer {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
.group_side_charts {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  width: 100%;
  flex: 1;
  min-height: 0;
  align-items: stretch;
}
.side_charts_item {
  display: flex;
  flex-direction: column;
  text-align: -webkit-center;
  flex: 1;
  min-width: 350px;
  min-height: 0;
}
@media only screen and (min-width: 780px) {
  .side_charts_item {
    min-width: 450px;
  }
}
div#chartCount,
div#chartTime {
  flex: 1;
  min-height: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
div.PricinyPoruchy #chartCount .apexcharts-legend,
div.PricinyPoruchy #chartTime .apexcharts-legend {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-content: center;
  gap: 5px 20px;
  padding: 10px !important;
}
div.PricinyPoruchy #chartCount .apexcharts-legend-series,
div.PricinyPoruchy #chartTime .apexcharts-legend-series {
  width: auto !important;
  flex: 0 0 auto;
  margin: 2px 5px !important;
  display: flex !important;
  align-items: center;
}
div.PricinyPoruchy #chartCount .apexcharts-legend-series .apexcharts-legend-text,
div.PricinyPoruchy #chartTime .apexcharts-legend-series .apexcharts-legend-text {
  color: #3d3d3d !important;
  font-weight: 500;
  text-wrap-style: balance;
}
div.chart_title {
  text-align: center;
  margin: 13px 0 13px 0;
  font-size: 18px;
  font-weight: 700;
  color: #2d3436;
}
div.chart_title br {
  content: "";
  display: block;
  margin-bottom: 2px;
}
div.chart_title br + *,
div.chart_title br ~ text {
  font-size: 12.5px;
  font-weight: 500;
  color: #7a7a7a;
}
div.OEE div.moduleContainer div#oee_ranks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 18%));
  justify-content: space-evenly;
}
div.OEE div.moduleContainer div#oee_ranks div.oee_rank:last-of-type {
  margin-bottom: 2rem;
}
div.OEE div.moduleContainer div#oee_ranks div.oee_rank {
  min-width: 220px;
  cursor: pointer;
  opacity: 0.8;
}
div.OEE div.moduleContainer div#oee_ranks div.oee_rank:hover {
  opacity: 1;
}
div.OEE div.moduleContainer div#oee_detail_svg {
  flex: 1;
  min-width: 300px;
  padding: 0px 25px 15px 25px;
}
div.OEE div.moduleContainer div#oee_detail_svg div#label_title,
div.OEE div.moduleContainer table.tableOEE div#label_title,
div.OEE div.moduleContainer div#oee_detail_svg div#label_length,
div.OEE div.moduleContainer table.tableOEE div#label_length {
  font-size: 18px;
  font-weight: bold;
}
div.OEE div.moduleContainer div#oee_detail_svg svg .st2,
div.OEE div.moduleContainer table.tableOEE svg .st2 {
  font-size: 5px;
}
div.OEE div.moduleContainer div#oee_detail_svg svg .st22,
div.OEE div.moduleContainer table.tableOEE svg .st22 {
  font-size: 7px;
}
div.OEE div.moduleContainer div#chartTime svg div[seriesName="Sortiment"] {
  display: none;
}
div.OEE div.moduleContainer div#chartTime svg g[seriesName="Sortiment"] path {
  opacity: 0;
}
div.ZadavanieVyroby div.moduleContainer {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
  /* css pre header je pouzite len v zadanie_vyroby.html */
}
div.ZadavanieVyroby div.moduleContainer div.header {
  background-color: #303030;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
div.ZadavanieVyroby div.moduleContainer div.header > img {
  height: 80px;
}
div.ZadavanieVyroby div.moduleContainer div.header > * {
  margin: 10px;
}
div.ZadavanieVyroby div.moduleContainer div.header > h1 {
  flex: 2;
  text-align: center;
}
div.ZadavanieVyroby div.moduleContainer div.title {
  width: 100%;
  display: flex;
  flex-direction: row;
  user-select: none;
  font-weight: bold;
  margin-bottom: 40px;
}
div.ZadavanieVyroby div.moduleContainer div.title > div {
  flex: 1;
  padding: 10px;
  background-color: #00000030;
  border-right: 1px solid black;
}
div.ZadavanieVyroby div.moduleContainer div.title > div:last-child {
  border-right: none;
}
div.ZadavanieVyroby div.moduleContainer div.title > div.set {
  background-color: #ff0b8d;
  cursor: pointer;
  color: #fff;
}
div.ZadavanieVyroby div.moduleContainer div.title > div:before {
  content: attr(active);
  margin-right: 10px;
}
div.ZadavanieVyroby div.moduleContainer div.title > div.set:before {
  content: attr(set);
  margin-right: 10px;
}
div.ZadavanieVyroby div.moduleContainer div.title > div.active {
  background-color: #e50079;
  color: #fff;
}
div.ZadavanieVyroby div.moduleContainer div.title > div.set:hover {
  background-color: #e74fa0;
}
div.ZadavanieVyroby div.moduleContainer div.content {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}
div.ZadavanieVyroby div.moduleContainer div.hala,
div.ZadavanieVyroby div.moduleContainer div.type,
div.ZadavanieVyroby div.moduleContainer div.linka,
div.ZadavanieVyroby div.moduleContainer div.sortiment {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  width: 90%;
  flex-wrap: wrap;
  gap: 20px;
}
div.ZadavanieVyroby div.moduleContainer div.hala > div,
div.ZadavanieVyroby div.moduleContainer div.type > div,
div.ZadavanieVyroby div.moduleContainer div.linka > div,
div.ZadavanieVyroby div.moduleContainer div.sortiment > div {
  padding: 10px;
  border: 1px solid grey;
  /* flex: 1; */
  text-align: center;
  width: calc(80% / 6);
  min-width: 150px;
  /* margin: 20px calc((100% - 900px) / 14); */
  cursor: pointer;
  user-select: none;
}
div.ZadavanieVyroby div.moduleContainer div.sortiment {
  flex-direction: column;
}
div.ZadavanieVyroby div.moduleContainer div.sortiment > div {
  width: unset;
}
div.ZadavanieVyroby div.moduleContainer div.hala > div:hover,
div.ZadavanieVyroby div.moduleContainer div.type > div:hover,
div.ZadavanieVyroby div.moduleContainer div.linka > div:hover,
div.ZadavanieVyroby div.moduleContainer div.sortiment > div:hover {
  background-color: #ff0b8d;
  /* font-weight: bold; */
  color: #fff;
}
div.ZadavanieVyroby div.moduleContainer div.sum {
  margin: 30px 20px;
  gap: 20px;
  display: flex;
  flex-direction: column;
  font-size: 1.2em;
}
div.ZadavanieVyroby div.moduleContainer button {
  font-size: 1.2em;
  padding: 10px;
}
div.ZadavanieVyroby div.moduleContainer div.sum input {
  font-size: 1.1em;
}
div.ZadavanieVyroby div.moduleContainer div.save {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #857fff;
  display: none;
  z-index: 200;
  padding-top: 20px;
  padding-bottom: 20px;
}
div.ZadavanieVyroby div.moduleContainer div.save.show {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
div.ZadavanieVyroby div.moduleContainer div.save.ok {
  background-color: #7fffd4;
}
div.ZadavanieVyroby div.moduleContainer div.save.nok {
  background-color: #ff7f7f;
}
div.ZadavanieVyroby div.moduleContainer div.save > div.state {
  font-size: 1.5em;
  font-weight: bold;
  max-height: 50vh;
  overflow: auto;
}
div.ZadavanieVyroby div.moduleContainer div.save > div.control > button {
  visibility: hidden;
  width: 150px;
}
div.ZadavanieVyroby div.moduleContainer div.save.ok > div.control > button[name="next"] {
  visibility: unset;
}
div.ZadavanieVyroby div.moduleContainer div.save.nok > div.control > button[name="repeat"],
div.ZadavanieVyroby div.moduleContainer div.save.nok > div.control > button[name="cancel"] {
  visibility: unset;
}
div.ZadavanieVyroby div.moduleContainer div.dummy {
  visibility: hidden;
}
