.sl-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.content-row {
  display: grid;
  grid-template-columns: 1fr 2fr 2fr;
  width: 100%;
  flex: 1;
  min-height: 0;
}

.content-row > div {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 1.5rem;
  box-sizing: border-box;
  text-align: left;
}

.panel {
  position: relative;
  overflow: hidden;
}

.panel-left {
  background: #ffffff;
  color: #0d2e5a;
  border-right: 1px solid #12a6e4;
}

.panel-right {
  background: #ffffff;
  color: #0d2e5a;
}

.panel-right.panel-gate-alt {
  background: #ffffff;
  color: #0d2e5a;
}

.panel-right + .panel-right {
  border-left: 1px solid #12a6e4;
}

.panel-content {
  position: relative;
  z-index: 1;
  width: 100%;
}
.panel-content .panel-header {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  align-items: center;
}
.panel-content .panel-header .gate-way {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: right;
  display: flex;
  margin-left: auto;
}
.panel-content .panel-header .gate-way .export,
.panel-content .panel-header .gate-way .import {
  margin-top: -24px;
}
.panel-content .panel-header .gate-way input {
  display: none;
}
.panel-content .panel-header .gate-way input:checked ~ label {
  background-color: #2b9949;
  color: white;
}
.panel-content .panel-header .gate-way label {
  font-size: 20px;
  text-transform: uppercase;
  padding: 8px 24px;
  font-weight: 700;
}
.panel-content .panel-header .gate-way .export label {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.panel-content .panel-header .gate-way .import label {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.panel-content .current-header {
  margin-top: 20px;
  margin-bottom: 30px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.panel-content .current-header .progress {
  font-weight: 700;
  font-size: 48px;
}
.panel-content .current-cargo .title {
  font-size: 24px;
}
.panel-content .current-cargo .cargo-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 1rem;
}
.panel-content .current-cargo .cargo-grid .pallet-item {
  background-color: #e8e8e8;
  padding: 10px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
}
.panel-content .current-cargo .cargo-grid .pallet-item.done {
  color: white;
  background-color: #2b9949;
}
.panel-content .current-cargo .cargo-grid .pallet-item.error {
  color: white;
  background-color: #ff4545;
}

.panel-content h2 {
  margin: 0 0 0.75rem;
  font-size: 2rem;
  border-bottom: 3px solid currentColor;
  display: inline-block;
  padding-bottom: 0.38rem;
}

.panel-content .separator {
  height: 2px;
  background-color: #114062;
}

.aplicator-statuses {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  margin-top: 24px;
  margin-bottom: 24px;
}
.aplicator-statuses .aplicator-status {
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 60px;
  padding: 12px;
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  border-radius: 10px;
}

.logs {
  margin-top: 50px;
}
.logs .log-item {
  display: grid;
  grid-template-columns: 45px 10px 1fr;
  gap: 8px;
}
.logs .logs-expander {
  display: none;
}

.panel.success {
  position: relative;
}
.panel.success:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  background-color: rgba(43, 153, 73, 0.6);
  top: 0;
  left: 0;
  z-index: 1;
}
.panel.success .panel-modal .modal-icon svg {
  width: 50%;
}
.panel.success .panel-modal .modal-icon svg path {
  fill: #2b9949;
}
.panel.error {
  position: relative;
}
.panel.error:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  background-color: rgba(184, 0, 0, 0.6);
  top: 0;
  left: 0;
  z-index: 1;
}
.panel.error .panel-modal .modal-icon svg {
  width: 50%;
}
.panel.error .panel-modal .modal-icon svg path {
  fill: #ff4545;
}
.panel.waiting {
  position: relative;
}
.panel.waiting:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  background-color: rgba(100, 100, 100, 0.6);
  top: 0;
  left: 0;
  z-index: 1;
}
.panel.waiting .panel-modal .modal-icon svg {
  width: 50%;
  max-width: 160px;
}
.panel .panel-modal {
  display: flex;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100px;
  z-index: 3;
}
.panel .panel-modal .modal-wrapper {
  max-width: 95%;
  max-height: 95%;
  background-color: #f8f9ff;
  padding: 2rem;
  border: 5px solid #edeff7;
  border-radius: 20px;
  color: #114062;
}
.panel .panel-modal .modal-icon {
  text-align: center;
}
.panel .panel-modal .modal-icon svg path {
  fill: currentColor;
}
.panel .panel-modal .modal-content {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  line-height: 42px;
  text-transform: uppercase;
}
.panel .panel-modal .modal-content .small {
  font-size: 50px;
}
.panel .panel-modal .modal-content input {
  margin-top: 40px;
  width: 55%;
  height: 100px;
  border: 3px solid #114062;
  border-radius: 10px;
  font-size: 50px;
  text-align: center;
  letter-spacing: 20px;
  font-weight: 700;
  color: #114062;
}
.panel .panel-modal .modal-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 50px auto 0 auto;
}
.panel .panel-modal .modal-buttons button,
.panel .panel-modal .modal-buttons a {
  font-size: 2.5rem;
  font-family: "Nunito";
  padding: 1rem;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 10px;
  border: 2px solid #114062;
  min-width: 300px;
}
.panel .panel-modal .modal-buttons button.dark,
.panel .panel-modal .modal-buttons a.dark {
  background-color: #114062;
  color: #ffffff;
}

@media (max-width: 400px) {
  .page-header {
    padding: 10px !important;
    height: 50px !important;
    min-height: 50px !important;
  }
  .page-header .header-logo {
    display: none !important;
  }
  .page-header .header-title {
    font-size: 20px !important;
  }
}
@media (max-width: 960px) {
  .content-row {
    flex-direction: column;
    min-height: auto;
  }
  .content-row > div {
    min-height: 32vh;
  }
}
@media (max-width: 1200px) {
  .panel-content h2 {
    font-size: 20px;
  }
  .panel-content .panel-header {
    flex-direction: column;
    align-items: start;
    gap: 30px;
  }
  .panel-content .panel-header .gate-way {
    margin-left: unset;
    margin-top: unset;
  }
  .panel-content .panel-header .gate-way label {
    font-size: 12px;
  }
  .panel-content .current-header {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .panel-content .current-header .progress {
    font-size: 24px;
  }
  .logs .log-item {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 20px;
  }
  .logs .log-item .log-separator {
    display: none;
  }
}
@media (max-width: 991px) {
  .content-row {
    grid-template-columns: 1fr;
  }
  .content-row > div {
    padding: 30px 10px;
    border-bottom: 2px solid #114062;
    border-left: none;
    border-right: none;
    min-height: 500px;
  }
  .panel-content .separator {
    display: none;
  }
  .logs {
    position: relative;
  }
  .logs .logs-expander {
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    height: 30px;
    width: 30px;
  }
  .logs-content {
    display: none;
  }
  .logs.mobileShow .logs-content {
    display: grid;
  }
  .logs.mobileShow .logs-expander svg {
    transform: rotate(180deg);
  }
}
.gate-page {
  font-size: 24px;
  text-transform: uppercase;
  display: grid;
  grid-template-rows: 115px 1fr;
  height: 100vh;
  overflow: hidden;
}
.gate-page header {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 3fr 2fr;
  align-items: center;
  padding: 1rem;
  height: 5em;
  background: #f8f9ff;
  border-bottom: 1px solid rgba(13, 46, 90, 0.12);
}
.gate-page header .logo {
  width: 8em;
  height: auto;
}
.gate-page header .header-title {
  font-size: 60px;
  font-weight: 700;
  color: #114062;
  text-align: center;
}
.gate-page header .header-buttons {
  text-align: right;
  display: flex;
  margin-left: auto;
}
.gate-page header .header-buttons input {
  display: none;
}
.gate-page header .header-buttons input:checked ~ label {
  background-color: #2b9949;
  color: white;
}
.gate-page header .header-buttons label {
  font-size: 20px;
  text-transform: uppercase;
  padding: 16px 24px;
  font-weight: 700;
}
.gate-page header .header-buttons .export label {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.gate-page header .header-buttons .import label {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.gate-page .gate-content {
  position: relative;
  flex: 1;
  padding: 2rem;
}
.gate-page .gate-content .current-operation {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 24px;
  border-bottom: 2px solid #12a6e4;
  color: #114062;
  font-weight: 700;
}
.gate-page .gate-content .current-operation-left {
  display: grid;
  grid-template-columns: 350px 1fr;
  align-items: center;
  gap: 40px;
}
.gate-page .gate-content .current-operation-left .current-operation-title {
  font-size: 34px;
  line-height: 38px;
}
.gate-page .gate-content .current-operation-left .current-operation-title .small {
  font-size: 30px;
}
.gate-page .gate-content .current-operation-left .current-operation-number {
  font-size: 64px;
  line-height: 64px;
}
.gate-page .gate-content .current-operation-right {
  text-transform: initial;
  text-align: right;
}
.gate-page .gate-content .current-cargo {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 40px;
}
.gate-page .gate-content .current-cargo .cargo-info {
  color: #114062;
  font-weight: 700;
  font-size: 34px;
  line-height: 38px;
}
.gate-page .gate-content .current-cargo .cargo-info .small {
  font-size: 30px;
}
.gate-page .gate-content .current-cargo .cargo-info .current-operation-status {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5rem;
}
.gate-page .gate-content .current-cargo .cargo-info .circle-progress {
  position: relative;
  width: 300px;
  height: 300px;
}
.gate-page .gate-content .current-cargo .cargo-info .circle-progress svg {
  width: 100%;
  height: 100%;
}
.gate-page .gate-content .current-cargo .cargo-info .circle-progress path {
  fill: none;
  stroke-width: 5;
}
.gate-page .gate-content .current-cargo .cargo-info .circle-progress .bg {
  stroke: #e8e8e8;
}
.gate-page .gate-content .current-cargo .cargo-info .circle-progress .progress {
  stroke: #2b9949;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
}
.gate-page .gate-content .current-cargo .cargo-info .status-content {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 4rem;
  font-weight: 700;
}
.gate-page .gate-content .current-cargo .cargo-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.gate-page .gate-content .current-cargo .cargo-grid .pallet-item {
  background-color: #e8e8e8;
  padding: 12px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.6rem;
  color: #114062;
}
.gate-page .gate-content .current-cargo .cargo-grid .pallet-item.done {
  color: white;
  background-color: #2b9949;
}
.gate-page .gate-content .current-cargo .cargo-grid .pallet-item.error {
  color: white;
  background-color: #ff4545;
}
.gate-page .gate-content .current-cargo .cargo-grid .pallet-item a {
  text-decoration: none;
  color: inherit;
}

.modal.show {
  display: flex;
}
.modal {
  z-index: 100;
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
}
.modal .modal-wrapper {
  max-width: 95%;
  max-height: 95%;
  background-color: #f8f9ff;
  padding: 4rem;
  border: 5px solid #edeff7;
  border-radius: 20px;
  color: #114062;
}
.modal .modal-icon {
  border: 6px solid currentColor;
  border-radius: 50%;
  height: 8rem;
  width: 8rem;
  padding: 1rem;
  margin: 0 auto 3rem auto;
}
.modal .modal-icon svg path {
  fill: currentColor;
}
.modal .modal-content {
  text-align: center;
  font-size: 60px;
  font-weight: 700;
  line-height: 60px;
}
.modal .modal-content .small {
  font-size: 50px;
}
.modal .modal-content input {
  margin-top: 40px;
  width: 55%;
  height: 100px;
  border: 3px solid #114062;
  border-radius: 10px;
  font-size: 50px;
  text-align: center;
  letter-spacing: 20px;
  font-weight: 700;
  color: #114062;
}
.modal .modal-content .modal-keyboard {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 110px 110px 110px;
  gap: 20px;
  justify-content: center;
}
.modal .modal-content .modal-keyboard .key {
  height: 110px;
  width: 110px;
  background-color: white;
  border: 3px solid #114062;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  cursor: pointer;
}
.modal .modal-content .modal-keyboard .key svg {
  height: 80px;
}
.modal .modal-content .modal-keyboard .key.confirm {
  background-color: #2b9949;
  color: white;
  border-color: #2b9949;
}
.modal .modal-content .modal-keyboard .key.cancel {
  background-color: #ff4545;
  border-color: #ff4545;
}
.modal .modal-content .modal-keyboard .key.cancel svg path {
  fill: white;
}
.modal .modal-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 50px auto 0 auto;
}
.modal .modal-buttons button,
.modal .modal-buttons a {
  font-size: 2.5rem;
  font-family: "Nunito";
  padding: 1rem;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 10px;
  border: 2px solid #114062;
  min-width: 300px;
}
.modal .modal-buttons button.dark,
.modal .modal-buttons a.dark {
  background-color: #114062;
  color: #ffffff;
}
.modal.error {
  background-color: rgba(184, 0, 0, 0.6);
}
.modal.error .modal-icon {
  border: none;
  height: 250px;
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0px;
}
.modal.error .modal-icon svg {
  height: 250px;
}
.modal.error .modal-icon svg path {
  fill: #ff4545;
}
.modal.error .big-text {
  font-size: 80px;
}
.modal.success {
  background-color: rgba(43, 153, 73, 0.6);
}
.modal.success .modal-icon {
  border: none;
  height: 250px;
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0px;
}
.modal.success .modal-icon svg {
  height: 250px;
}
.modal.success .modal-icon svg path {
  fill: #2b9949;
}
.modal.success .big-text {
  font-size: 80px;
}
.modal a {
  text-decoration: none;
  color: inherit;
}

@font-face {
  font-family: "Nunito";
  src: url("../font/Nunito-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nunito";
  src: url("../font/Nunito-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nunito";
  src: url("../font/Nunito-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Nunito", sans-serif;
}

.page-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  height: 80px;
  min-height: 72px;
  background: #f8f9ff;
  border-bottom: 1px solid #edeff7;
  box-sizing: border-box;
}
.page-header .header-logo {
  display: block;
  height: 40px;
  width: auto;
}
.page-header .header-title {
  font-size: clamp(1.5rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #114062;
}

.btn {
  background: #e8e8e8;
  color: #a7a7a7;
}
.btn.success {
  background-color: #2b9949;
  color: white;
}
.btn.error {
  background-color: #ff4545;
  color: white;
}
.btn.warning {
  background-color: #f5a638;
  color: white;
}/*# sourceMappingURL=styles.css.map */