@charset "UTF-8";
body {
  font-family: "Open Sans", sans-serif;
  background-color: #F0F0F0;
}

.popup {
  background-color: #F0F0F0;
  border-radius: 3px;
  padding: 2rem 3rem;
}

.noise {
  background: #F0F0F0 url("../images/noise.png") repeat left top;
}

h1 {
  font-size: 2rem;
  margin: 1rem;
}

h2 {
  font-size: 1.5rem;
}

a {
  color: #202020;
}

a:hover, a:focus {
  color: #000000;
}

/*
input, textarea, select {
    background-color: $white;
    color: $black;
    font-size: 1rem;
    border: 0;
    padding: 0.5rem 1rem;
    box-shadow: none;
    border: 1px solid $black;
    height: auto;
}
input:hover, textarea:hover {
    border: 1px solid $white;
}
input:focus, textarea:focus {
    border: 1px solid $white;
    box-shadow: none;

}
input[type="submit"] {
    transition: all 0.25s;
    border: 1px solid $black;
    cursor: pointer;
}
input[type="submit"]:hover {
    border: 1px solid $ultraWhite;
}
input.error, select.error, textarea.error {
    border: 1px solid $red;
}
select {
    background-position: right 0 center;
}
label {
    color: $black;
    font-size: 1rem;
}
.label {
    color: $black;
    font-size: 1rem;
    line-height: 1.8;
    padding: 0.1rem;
    background: $white;
}
*/
.value {
  color: #202020;
  font-size: 1.5rem;
}

@keyframes error {
  0% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.back {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  display: block;
}

.back:hover {
  text-decoration: underline;
}

.colorBlue {
  color: #4066BF;
}

.colorGreen {
  color: #66A036;
}

table {
  margin-top: 2rem;
  border: 1px solid #F0F0F0;
  font-size: 14px;
}
table thead {
  background-color: #FFFFFF;
  color: #202020;
}
table tbody {
  background-color: #F0F0F0;
  color: #202020;
}
table tbody tr {
  border-bottom: 1px solid #F0F0F0;
  transition: background-color 0.2s linear;
}
table tbody tr td {
  padding: 0.25rem;
}
table tbody tr td a.link {
  font-weight: bold;
  color: #163C41;
}
table tbody tr td a.link:hover {
  text-decoration: underline;
}
table tbody tr td .button {
  padding: 0.5rem;
  margin: 0;
}
table tbody tr td .green {
  color: #66A036;
  font-weight: bold;
}
table tbody tr td .red {
  color: #DD3333;
  font-weight: bold;
}
table tbody tr .fotka img {
  max-width: 200px;
  max-height: 200px;
}
table tbody tr .fotka-pdf a {
  font-size: 24px;
  color: #163C41;
  text-decoration: underline;
}
table tbody tr .fotka-pdf a:hover {
  color: #000000;
}
table tbody tr:nth-child(2n) {
  background-color: #E7E7E7;
}
table tbody tr:nth-child(2n).done, table tbody tr:nth-child(2n).zaplatena {
  background-color: #A5F3A5;
}
table tbody tr:nth-child(2n).almostdone {
  background-color: #F3F3A5;
}
table tbody tr:nth-child(2n).notdone, table tbody tr:nth-child(2n).nezaplatena {
  background-color: #F3A5A5;
}
table tbody tr:hover {
  background-color: #FCFCE9 !important;
}
table tbody tr.row-produkt {
  background-color: #404040;
  border: 3px solid #404040;
  color: #FFFFFF;
}
table tbody tr.row-produkt .link {
  color: #FFFFFF;
}
table tbody tr.row-produkt:hover {
  border: 3px solid #F09942;
  background-color: #404040 !important;
  /*
  color: $black;
  .link {
      color: $black;
  }
  */
}
table tbody tr.row-tlac {
  background-color: #C6E7EC;
  font-size: 16px;
}
table tbody tr.row-vyroba {
  background-color: #FBE5D0;
  font-size: 16px;
}
table tbody tr.urgent td {
  background-color: #FBE5D0;
}
table tbody .polozka-zrus .icon {
  color: #DD3333;
}
table tbody .miesto-dodania-select {
  margin-top: 8px;
  margin-bottom: 16px;
}
table tbody .miesto-dodania .label {
  display: inline-block;
  width: 150px;
}
table tbody .miesto-dodania .input {
  display: inline-block;
  width: calc(100% - 155px);
}
table .td05 {
  width: 5%;
}
table .td10 {
  width: 10%;
}
table .td25 {
  width: 25%;
}
table .td30 {
  width: 30%;
}
table .td40 {
  width: 40%;
}

.login-page {
  background-color: #1A1A18;
}

.logo-bg {
  background-color: #1A1A18;
  padding: 16px;
  max-width: 250px;
}

.login-card-body {
  background-color: #454545;
}

#login-web {
  width: 100%;
  padding: 1rem;
}
#login-web a {
  display: block;
  width: 100%;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}

form .errors {
  min-height: 1.75rem;
  list-style: none;
  margin-left: 0;
  margin-bottom: 0.5rem;
}
form .errors li {
  color: #DD3333;
  font-size: 1rem;
  animation-name: error;
  animation-duration: 5s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

.login-errors {
  min-height: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.login-errors li {
  color: #DD3333;
  font-size: 1rem;
  text-align: center;
  animation-name: error;
  animation-duration: 5s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

/*
.button, .button2 {
    background-color: $white;
    border: 1px solid $black;
    color: $black;
    padding: 0.5rem 1rem;
    margin: 0 0 0.5rem 0;
    cursor: pointer;
}
.button.green {
    background-color: $lightGreen;
}
.button.blue {
    background-color: $lightBlue;
}
.button.orange {
    background-color: $lightOrange;
}
.button.gray {
    background-color: $gray;
    color: $white;
}
.button.red {
    background-color: $lightRed;
}
.button.active, .button2.active  {
    background-color: $lightGreen;
}
.button.disabled, .button.disabled:focus, .button.disabled:hover, .button[disabled], .button[disabled]:focus, .button[disabled]:hover {
    background-color: $lightGray;
    color: $black;
}
.button:hover, .button:focus {
    background-color: $ultraWhite;
    color: $black;
}
*/
.pagination {
  color: #202020;
}
.pagination .current {
  background-color: #FBE5D0;
  color: #202020;
}

.highlight {
  background-color: #FCFCE9 !important;
}

.group {
  border: 1px solid #a0a0a0;
  padding: 1rem;
  margin-bottom: 3rem;
}

.content {
  padding: 1rem;
}

.produkt-fotka {
  max-height: 200px;
}

#dialog {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
#dialog .dialog-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2rem;
  background-color: #F0F0F0;
  max-width: 25%;
}
#dialog .dialog-content .message {
  padding: 2rem;
}
#dialog .dialog-content .buttons {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

#dialog.alert .dialog-content .buttons {
  justify-content: center;
}

#dialog.form .dialog-content {
  width: 50%;
}

#login {
  min-width: 25%;
  position: fixed;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 5px 5px 5px 0px rgba(34, 34, 34, 0.75);
}

#main-menu {
  width: 100%;
  background-color: #F0F0F0;
  box-shadow: 0px 3px 3px 0px rgba(34, 34, 34, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
}
#main-menu ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
}
#main-menu ul li {
  display: block;
}
#main-menu ul li a {
  display: block;
  padding: 0.5rem 1rem;
  color: #404040;
  font-size: 0.9rem;
  font-weight: bold;
  line-height: 1.5;
  text-transform: uppercase;
}
#main-menu ul li a:hover {
  color: #202020;
  background-color: #FFFFFF;
}
#main-menu ul li:hover {
  background-color: #FFFFFF;
}
#main-menu ul li.active {
  background-color: #79BF40;
}

.submenu {
  display: flex;
  list-style: none;
}
.submenu li {
  padding: 0rem 0.5rem 0 0;
}

#content {
  margin-top: 60px;
  padding: 1rem;
}

#polozky-container .polozka {
  border: 1px solid #404040;
  border-bottom: 0;
  padding: 1rem;
}
#polozky-container .polozka:last-of-type {
  border-bottom: 1px solid #404040;
}

.crow {
  display: flex;
  justify-content: center;
  align-items: center;
}
.crow .ccell {
  padding: 0 0.5rem;
}

.done, .zaplatena {
  background-color: #D2F9D2;
}

.almostdone {
  background-color: #F9F9D2;
}

.notdone, .nezaplatena {
  background-color: #F9D2D2;
}

.flash {
  display: block;
  margin-left: 1rem;
  color: #DD3333;
  font-weight: bold;
}

.row-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 2rem;
}
.row-flex input {
  display: block;
  margin-bottom: 0;
  width: 150px;
}
.row-flex select {
  display: block;
  margin-bottom: 0;
  min-width: 165px;
  background-color: #FFFFFF;
}
.row-flex.between {
  justify-content: space-between;
}

.column-flex {
  padding: 0.5rem;
}

#objednavky .submenu, #dodacie-listy .submenu {
  position: relative;
  cursor: pointer;
}
#objednavky .submenu .submenu-content, #dodacie-listy .submenu .submenu-content {
  background-color: #FFFFFF;
  border: 1px solid #a0a0a0;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  padding: 16px;
  transform: translate(calc(-100% - 8px), -50%);
  width: -moz-max-content;
  width: max-content;
  z-index: 100;
}
#objednavky .submenu .submenu-content .content-row, #dodacie-listy .submenu .submenu-content .content-row {
  padding: 4px;
}

#prehlad {
  text-align: right;
}
#prehlad th {
  text-align: right;
}
#prehlad a {
  color: #163C41;
  font-weight: bold;
}
#prehlad a:hover {
  text-decoration: underline;
}

#prehlad-celkova-suma-hore {
  margin-top: 1rem;
}

.vyber-pracovnika-container {
  text-align: right;
  position: sticky;
  top: 0;
}
.vyber-pracovnika-container .bkg {
  background-color: #F0F0F0;
  width: 25%;
  min-width: 320px;
  margin-left: auto;
  padding: 4px;
}
#vyroba .print-pracovnik {
  display: none;
}
#vyroba .subli-pracovnik {
  display: none;
}
#vyroba .vyroba-pracovnik {
  display: none;
}
#vyroba .print-pracovnik.show {
  display: block;
}
#vyroba .subli-pracovnik.show {
  display: block;
}
#vyroba .vyroba-pracovnik.show {
  display: block;
}

#vyrobne-procesy .vyrobny-proces-pracovnik {
  display: none;
}
#vyrobne-procesy .vyrobny-proces-pracovnik.show {
  display: block;
}

#vyroba-potlace .potlac-pracovnik {
  display: none;
}
#vyroba-potlace .potlac-pracovnik.show {
  display: block;
}

#vyroba-vysivky .vysivka-pracovnik {
  display: none;
}
#vyroba-vysivky .vysivka-pracovnik.show {
  display: block;
}

#mobile-menu {
  font-size: 24px;
  font-weight: bold;
  display: none;
}
#mobile-menu .click {
  padding: 8px;
  display: block;
}
#mobile-menu .menu-img {
  width: 24px;
  margin-right: 8px;
  cursor: pointer;
}
#mobile-menu .nazov {
  padding: 8px;
  padding-left: 16px;
  display: block;
}

.mobil-nazov {
  display: none;
}

.show-history-status {
  cursor: pointer;
  position: relative;
}
.show-history-status .history-log {
  position: absolute;
  top: 0;
  right: -80px;
  z-index: 10;
  border: 2px solid #202020;
}
.show-history-status .history-log thead tr {
  border-bottom: 1px solid #202020;
}
.show-history-status .history-log tbody {
  background-color: #F0F0F0;
}
.show-history-status .history-log tbody tr:nth-child(2n) {
  background-color: #fff;
}
.show-history-status .history-log tbody tr {
  border-bottom: 1px solid #202020;
  background-color: #fff;
}
.show-history-status .history-log tbody tr .datum {
  white-space: nowrap;
}
.show-history-status .history-log tbody tr .akcia {
  white-space: nowrap;
}
.show-history-status .history-log tbody tr .text {
  min-width: 250px;
}
.show-history-status .history-log tbody tr .pracovnik {
  white-space: nowrap;
}
.show-history-status .history-log tbody tr td {
  vertical-align: top;
}

/* pagination from foundation */
.pagination {
  color: #202020;
  margin-left: 0;
  margin-bottom: 1rem;
}
.pagination li {
  display: inline-block;
  margin-right: 0.0625rem;
  border-radius: 3px;
  font-size: 0.875rem;
}
.pagination li:first-child, .pagination li:last-child {
  display: inline-block;
}
.pagination a, .pagination button {
  display: block;
  padding: 0.1875rem 0.625rem;
  border-radius: 3px;
  color: #0a0a0a;
}
.pagination a:hover, .pagination button:hover {
  background: #e6e6e6;
}

.pagination::after, .pagination::before {
  display: table;
  content: " ";
  flex-basis: 0;
  order: 1;
}

.pagination-previous a::before, .pagination-previous.disabled::before {
  display: inline-block;
  margin-right: 0.5rem;
  content: "«";
}

.pagination-next a::after, .pagination-next.disabled::after {
  display: inline-block;
  margin-left: 0.5rem;
  content: "»";
}

.text-center {
  text-align: center;
}

/* /pagination from foundation */
@media all and (max-width: 1600px) {
  #main-menu ul {
    flex-wrap: wrap;
  }
  #main-menu ul li {
    padding-left: 4px;
    padding-right: 4px;
  }
  #main-menu ul li a {
    padding: 4px 4px;
    font-size: 0.9rem;
  }
}
@media all and (max-width: 800px) {
  #mobile-menu {
    display: flex;
  }
  #main-menu {
    position: relative;
  }
  #main-menu ul {
    position: absolute;
    top: 52px;
    left: -100%;
    display: block;
    background-color: #F0F0F0;
    transition: all 0.3s;
    padding-top: 16px;
    padding-bottom: 32px;
  }
  #main-menu ul li {
    padding-left: 48px;
    padding-right: 48px;
  }
  #main-menu ul li a {
    padding: 6px 16px;
  }
  #main-menu ul.active {
    left: 0;
  }
  #content {
    margin-top: 0px;
    padding: 0;
  }
  table {
    font-size: 14px;
  }
  table thead tr {
    flex-wrap: wrap;
  }
  table thead th {
    padding: 0.25rem;
  }
  table tbody tr {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  table td {
    padding: 0.25rem;
    line-height: 1;
  }
  table td [type=color], table td [type=date], table td [type=datetime-local], table td [type=datetime], table td [type=email], table td [type=month], table td [type=number], table td [type=password], table td [type=search], table td [type=tel], table td [type=text], table td [type=time], table td [type=url], table td [type=week] {
    display: inline-block;
    margin-bottom: 0;
  }
  table .text-center {
    text-align: left;
  }
  table.mobile-block {
    display: block;
  }
  table.mobile-block thead {
    display: block;
  }
  table.mobile-block thead tr {
    display: flex;
    flex-wrap: wrap;
  }
  table.mobile-block thead th {
    display: block;
  }
  table.mobile-block tbody {
    display: block;
  }
  table.mobile-block tbody tr {
    display: block;
    border: 3px solid #404040;
  }
  table.mobile-block td {
    display: block;
  }
  .small-hide {
    display: none;
  }
  .mobil-nazov {
    display: inline;
    padding-right: 0.5rem;
  }
  .mobil-skupina {
    margin-bottom: 0.5rem;
  }
  .button {
    padding: 6px 12px;
  }
  #dialog.form .dialog-content {
    width: 100%;
    max-width: 100%;
  }
}
/* select2 bugfixing */
.select2-container .select2-selection--single {
  height: 38px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 36px;
}

.select2-selection__choice, .select2-selection__choice__remove, .select2-selection__choice__display {
  background-color: #007bff !important;
}

.select2-selection__choice__remove span {
  color: #ffffff;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 10px;
  padding-right: 7px;
}

/* admin lte bugfixing */
.form-control {
  min-width: 65px;
}

table.table-bordered th, table.table-bordered td {
  padding: 0.5rem;
  font-size: 16px;
}

#objednavky-filter, #dodacie-listy-filter {
  display: flex;
  flex-wrap: wrap;
}
#objednavky-filter .form-control, #objednavky-filter .select2, #dodacie-listy-filter .form-control, #dodacie-listy-filter .select2 {
  margin-right: 8px;
  margin-bottom: 8px;
  width: auto;
}
#objednavky-filter .form-control:last-child, #dodacie-listy-filter .form-control:last-child {
  margin-right: 0;
}
#objednavky-filter #zakaznik-filter, #dodacie-listy-filter #zakaznik-filter {
  max-width: 240px;
}
#objednavky-filter #nazov-filter, #dodacie-listy-filter #nazov-filter {
  min-width: 250px;
}
#objednavky-filter #meno-filter, #dodacie-listy-filter #meno-filter {
  min-width: 230px;
}
#objednavky-filter #vytvoril-filter, #dodacie-listy-filter #vytvoril-filter {
  min-width: 210px;
}
#objednavky-filter #uhrada-filter, #dodacie-listy-filter #uhrada-filter {
  min-width: 150px;
}
#objednavky-filter #expedicia-filter, #dodacie-listy-filter #expedicia-filter {
  min-width: 170px;
}
#objednavky-table, #dodacie-listy-table {
  margin-top: 1rem;
}
#objednavky-table .actions, #dodacie-listy-table .actions {
  min-width: 50px;
}
#objednavky-table .submenu, #dodacie-listy-table .submenu {
  position: relative;
  cursor: pointer;
}
#objednavky-table .submenu .submenu-content, #dodacie-listy-table .submenu .submenu-content {
  background-color: #FFFFFF;
  border: 1px solid #a0a0a0;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  padding: 16px;
  transform: translate(calc(-100% - 8px), -50%);
  width: -moz-max-content;
  width: max-content;
  z-index: 100;
}
#objednavky-table .submenu .submenu-content .content-row, #dodacie-listy-table .submenu .submenu-content .content-row {
  padding: 4px;
}

#polozky-table .new-polozka-row {
  background-color: #D2F9D2;
}

#expedicia-table .delete-expedicia {
  cursor: pointer;
}

.file-link {
  color: #0d6efd;
  text-decoration: none;
}

.file-link:hover,
.file-link:focus {
  color: #0a58ca;
  text-decoration: underline;
}/*# sourceMappingURL=app.css.map */