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: 991px) {
  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;
}
.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 {
  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: 5;
  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: 991px) {
  div.app div.glbLeftPanel {
    position: absolute;
    left: -400px;
    top: 0;
    bottom: 0;
    transition: all 0.5s;
    z-index: 5;
    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 rgba(103, 121, 154, 0.9);
  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 {
  max-width: calc(100%);
}
@media only screen and (max-width: 991px) {
  div.app div.glbRightPanel {
    max-width: 100%;
    min-width: 300px;
  }
}
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: 991px) {
  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 - 8px);
  margin: 0;
}
div.app div.glbRightPanel .container div.hide {
  display: none;
}
div.app div.glbRightPanel .container div.mn_page {
  height: calc(100vh - 38px);
  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: rgba(103, 121, 154, 0.9);
  color: black;
  font-size: 1em;
  font-weight: bold;
  padding: 5px;
}
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 input[type="date"],
div.app div.glbRightPanel .container div.mn_page div.filter input[type="datetime-local"] {
  width: auto;
}
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 {
  margin: 0 !important;
  position: absolute;
  top: 0;
  left: calc(50% - 150px - 0.5em);
  background-color: #303030;
  z-index: 600;
  display: flex;
  flex-direction: column;
  transition: all 0.5s;
  box-shadow: 0px 4px 20px 5px #474747;
}
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).last,
div.app div.glbRightPanel .container div.mn_page div.filter div.legendPopup > div:not(.controls).last {
  margin-bottom: 4em !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 {
  position: absolute;
  display: flex;
  bottom: 0;
  width: 100%;
  -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 {
  height: 3em;
  line-height: 3em;
  flex: 1;
  text-align: center;
  cursor: pointer;
}
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 {
  background-color: #623085;
}
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 {
  background-color: black;
}
div.app div.glbRightPanel .container div.mn_page div.moduleContainer {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow-x: auto;
  height: calc(100vh - 35px - 1em - 20px);
}
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: 991px) {
  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: 991px) {
  div.app div.glbRightPanel .container div.mn_page div.moduleContainer div.main-with-detail {
    margin-bottom: calc(3em + 10px);
  }
}
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: 2;
}
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;
  flex-wrap: wrap;
  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: 991px) {
  div.app div.glbRightPanel .container div.mn_page div.moduleContainer div.desc {
    position: absolute;
    top: 0;
    width: 100%;
    /*
        height: 100%;
        max-height: 100%;
        */
    height: calc(100% + 3em + 10px);
    max-height: calc(100% + 3em + 10px);
    z-index: 2;
    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.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 - 3em);
    height: 3em;
    transition: all 1s;
  }
  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: 3em;
    line-height: 3em;
    background-color: #3d3d3d;
    color: white;
    text-align: center;
    font-weight: bold;
    top: 0;
    position: sticky;
    margin-bottom: 0.5em;
    z-index: 3;
  }
  div.app div.glbRightPanel .container div.mn_page div.moduleContainer div.desc div.content {
    height: auto;
  }
  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: #e0e0e0;
  border-radius: 15px;
  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: 15px;
  background-color: rgba(103, 121, 154, 0.9);
  color: white;
}
div.login_form div.login_container input {
  text-align: center;
  border-radius: 15px;
}
.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;
  }
}
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 * {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}
table thead {
  font-weight: 600;
  color: rgba(0, 0, 0, 0.8);
}
table thead th {
  position: sticky;
  top: 0;
  background-color: #bdbdbd;
  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: #a1b6ce;
}
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: 2px 2px;
  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: 16px;
  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: #bdbdbd;
  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;
}
table img {
  width: 20px;
}
@media only screen and (max-width: 991px) {
  table th.mobile-hide,
  table td.mobile-hide {
    display: none;
  }
}
div.StromZariadeni div.moduleContainer div.wrapper {
  display: flex;
  height: 100%;
}
@media only screen and (max-width: 991px) {
  div.StromZariadeni div.moduleContainer div.wrapper {
    flex-wrap: wrap;
  }
}
div.StromZariadeni div.moduleContainer div.wrapper div.tree {
  width: 50%;
  height: 100%;
  overflow: auto;
  border-right: 1px solid grey;
}
@media only screen and (max-width: 991px) {
  div.StromZariadeni div.moduleContainer div.wrapper div.tree {
    height: 50%;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid grey;
  }
}
div.StromZariadeni div.moduleContainer div.wrapper div.tree > ul:first-child {
  width: 100%;
  min-width: 500px;
  padding-left: 5px;
  box-sizing: border-box;
}
div.StromZariadeni div.moduleContainer div.wrapper div.tree li:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
div.StromZariadeni div.moduleContainer div.wrapper div.tree div.title {
  display: flex;
  cursor: pointer;
  align-items: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
div.StromZariadeni div.moduleContainer div.wrapper div.tree div.title.highlight {
  background-color: #a1b6ce;
}
div.StromZariadeni div.moduleContainer div.wrapper div.tree div.title.hasChildrens:not(.plus):before {
  content: '-';
  display: block;
  width: 10px;
  margin-right: 10px;
}
div.StromZariadeni div.moduleContainer div.wrapper div.tree div.title.hasChildrens.plus:before {
  content: '+';
  display: block;
  width: 10px;
  margin-right: 10px;
}
div.StromZariadeni div.moduleContainer div.wrapper div.tree div.title:hover {
  background-color: rgba(103, 121, 154, 0.9);
}
div.StromZariadeni div.moduleContainer div.wrapper div.tree div.title:hover div.controls {
  background-color: #a1b6ce;
}
div.StromZariadeni div.moduleContainer div.wrapper div.tree div.title div.name {
  flex: 1;
}
div.StromZariadeni div.moduleContainer div.wrapper div.tree div.title div.controls {
  margin-left: 10px;
}
div.StromZariadeni div.moduleContainer div.wrapper div.tree div.title div.controls button {
  border: none;
  text-decoration: none;
  background-color: transparent;
  opacity: 0.7;
}
div.StromZariadeni div.moduleContainer div.wrapper div.tree div.title div.controls button:hover {
  opacity: 1;
}
div.StromZariadeni div.moduleContainer div.wrapper div.description {
  width: 50%;
  min-width: 251px;
  padding: 0 10px;
  height: 100%;
  overflow: auto;
}
@media only screen and (max-width: 991px) {
  div.StromZariadeni div.moduleContainer div.wrapper div.description {
    height: calc(50% - 1px);
    width: 100%;
    overflow: auto;
  }
}
div.StromZariadeni div.moduleContainer div.wrapper div.description svg {
  width: 22px;
}
div.StromZariadeni div.moduleContainer div.wrapper div.description div {
  margin: 10px 0;
}
div.StromZariadeni div.moduleContainer div.wrapper div.description div:before {
  content: attr(name);
  display: block;
  font-size: 1em;
  font-weight: bold;
}
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.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.chart_title {
  text-align: center;
  margin: 13px 0 13px 0;
}
.group_side_charts {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  width: 100%;
}
.side_charts_item {
  display: flex;
  text-align: -webkit-center;
  flex: 1;
  min-width: 400px;
}
div#chartCount,
div#chartTime {
  text-align: -webkit-left;
}
div.PricinyPoruchy #chartCount,
div.PricinyPoruchy #chartTime {
  text-align: -webkit-left;
}
div.PricinyPoruchy div#chartTime div.apexcharts-legend-series,
div.PricinyPoruchy div#chartCount div.apexcharts-legend-series {
  width: 40%;
  /* prednost ma css element-u a, vytvori sa v apexchart.js pomocou legend.itemMargin, nasledujuci styl sa neuplatni,
     iba ak po nastaveni dat v grafe zrusime programovo style.margin
  */
  margin-left: 80px;
}
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;
}
