@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
* {
  font-family: "Roboto", sans-serif;
}

.main {
  display: flex;
  flex-direction: row;
  height: 100vh;
  max-height: 100vh;
}
@media (max-width: 768px) {
  .main {
    flex-direction: column;
  }
}
.main .navigation {
  flex: 0 0 15%;
  max-width: 15%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  background-color: #201f1f;
}
@media (max-width: 768px) {
  .main .navigation {
    flex: 0 0 100%;
    max-width: 100%;
    height: 55px;
    max-height: 55px;
  }
  .main .navigation.open {
    height: 100%;
    max-height: 100%;
  }
}
.main .navigation nav {
  height: 100%;
}
.main .navigation nav .menu {
  display: flex;
  flex-direction: column;
  position: relative;
}
@media (max-width: 768px) {
  .main .navigation nav .menu {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.main .navigation nav .menu .logo {
  display: flex;
  justify-content: start;
  padding: 5px 10px;
  padding-bottom: 0px;
}
.main .navigation nav .menu .logo img {
  width: 55px;
}
@media (max-width: 768px) {
  .main .navigation nav .menu .logo img {
    width: 45px;
  }
}
.main .navigation nav .menu .menuItems {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px 5px;
}
@media (max-width: 768px) {
  .main .navigation nav .menu .menuItems {
    display: none;
  }
  .main .navigation nav .menu .menuItems.open {
    display: flex;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.main .navigation nav .menu .menuItems .item {
  border-radius: 12px;
  width: 100%;
  box-sizing: border-box;
  transition: all 0.35s;
  background-color: rgb(34, 34, 34);
  margin: 4px 0px;
}
.main .navigation nav .menu .menuItems .item.active {
  font-weight: bolder;
  background-color: rgba(49, 49, 49, 0.6);
  padding-left: 10px;
}
.main .navigation nav .menu .menuItems .item:hover {
  background-color: rgba(49, 49, 49, 0.72);
  transition: all 0.35s;
  padding-left: 15px;
}
.main .navigation nav .menu .menuItems .item a {
  color: #fff;
  padding: 12px 14px;
  display: block;
  font-size: 14px;
}
.main .navigation nav .menu .mobileToggler {
  display: none;
}
@media (max-width: 768px) {
  .main .navigation nav .menu .mobileToggler {
    display: flex;
    justify-content: center;
    align-items: center;
    height: -moz-fit-content;
    height: fit-content;
    padding: 8px 12px;
    font-size: 22px;
  }
}
.main .body {
  flex: 0 0 85%;
  max-width: 85%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
}
@media (max-width: 768px) {
  .main .body {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.default {
  display: flex;
  flex-direction: column;
}
.default .navigation {
  flex: 0 0 55px;
  max-height: 55px;
  width: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  display: flex;
  align-items: start;
}
.default .navigation nav {
  height: 100%;
}
.default .navigation nav .menu {
  display: flex;
  flex-direction: column;
  position: relative;
}
.default .navigation nav .menu .logo {
  display: flex;
  justify-content: start;
  padding: 0px 10px;
  padding-bottom: 0px;
}
.default .navigation nav .menu .logo img {
  width: 55px;
}
@media (max-width: 768px) {
  .default .navigation nav .menu .logo img {
    width: 45px;
  }
}
.default .navigation nav .menu .menuItems {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px 5px;
}
@media (max-width: 768px) {
  .default .navigation nav .menu .menuItems {
    display: none;
  }
  .default .navigation nav .menu .menuItems.open {
    display: flex;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.default .navigation nav .menu .mobileToggler {
  display: none;
}
.default .body {
  flex: 0 0 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
}
@media (max-width: 768px) {
  .default .body {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.f-m {
  font-size: 14px;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 5px !important;
}

.m-2 {
  margin: 10px !important;
}

.m-3 {
  margin: 15px !important;
}

.ms-auto {
  margin-left: auto !important;
}

.me-auto {
  margin-right: auto !important;
}

.mt-auto {
  margin-top: auto !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mt-sm {
  margin-top: 5px !important;
}

.mb-1 {
  margin-bottom: 10px;
}

.mb-2 {
  margin-bottom: 20px;
}

.mb-3 {
  margin-bottom: 30px;
}

.mb-4 {
  margin-bottom: 40px;
}

.p-0 {
  padding: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.sp-1 {
  padding: 3px 3px !important;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: inherit;
  color: inherit;
}

.hashLink {
  font-size: 10px;
}

.row {
  display: flex;
  width: 100%;
  flex-direction: row;
  flex-wrap: wrap;
}

.col {
  padding: 10px;
  box-sizing: border-box;
  flex-direction: column;
  display: flex;
  margin-bottom: 0 !important;
}

.col-25 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-33 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-40 {
  flex: 0 0 40%;
  max-width: 40%;
}

.col-50 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-60 {
  flex: 0 0 60%;
  max-width: 60%;
}

.col-75 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-100 {
  flex: 0 0 100%;
  max-width: 100%;
}

.d-flex {
  display: flex;
}

.justify-content-end {
  justify-content: flex-end;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-start {
  justify-content: flex-start;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-self-end {
  justify-self: end;
}

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

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

.align-end {
  align-items: flex-end;
}

.notfound-container {
  height: 90vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.notfound-container .heading {
  font-size: 32px;
  color: #333;
}
.notfound-container .paragraph {
  font-size: 18px;
  color: #333;
}

.login-container {
  height: 90vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-container .login-inner {
  width: 380px;
  padding: 40px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  border-radius: 8px;
}
.login-container .login-inner .logo {
  width: 180px;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.login-container .login-inner .logo img {
  width: 100%;
}
.login-container .login-inner .login-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.login-container .login-inner .login-form .input-field {
  padding: 4px 6px !important;
}

.sky-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-family: "Roboto", sans-serif;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 0px 0px 4px 4px;
  max-width: 100%;
  overflow-x: auto;
}
.sky-table th,
.sky-table td {
  text-align: left;
  font-size: 12px;
}
.sky-table thead {
  background-color: #fce4d2;
  font-weight: 500;
}
.sky-table thead tr:nth-of-type(1) th:nth-of-type(1) {
  color: #f18c3f;
}
.sky-table thead th {
  font-weight: 600;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  color: #fff;
  padding: 6px 12px;
  background: #201f1f;
  border-radius: 8px;
}
.sky-table thead th:nth-of-type(1) {
  border-radius: 0px 8px 8px 0px !important;
}
.sky-table thead .action-head {
  padding: 5px;
  background-color: #fff;
  color: #fff;
  border-top: 1px solid #efefef;
}
.sky-table thead .table-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.sky-table tbody tr {
  transition: all 0.3s;
  color: #333;
  background-color: #fff;
}
.sky-table tbody tr:hover {
  background: #201f1f;
  color: #fff;
  transition: all 0.3s;
}
.sky-table tbody tr:hover ::-moz-selection {
  background: white;
  color: black; /* optional: text becomes readable */
}
.sky-table tbody tr:hover ::selection {
  background: white;
  color: black; /* optional: text becomes readable */
}
.sky-table tbody tr:hover ::-moz-selection {
  background: white;
  color: black;
}
.sky-table tbody tr:hover td:nth-last-of-type(1) {
  border-radius: 0px 8px 8px 0px;
}
.sky-table tbody tr:nth-child(even) {
  background-color: rgba(239, 118, 26, 0.1215686275);
}
.sky-table tbody tr:nth-child(even):hover {
  background-color: #333;
  color: #fff;
}
.sky-table tbody td {
  padding: 10px 8px;
}
.sky-table tbody .sky-button {
  margin-left: 0;
}

.sky-button {
  background-color: rgba(238, 115, 21, 0.8196078431);
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 12px;
  padding: 7px 16px;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 500;
  transition: background-color 0.3s, border-color 0.3s;
  margin: 0px 5px;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
}
.sky-button.small {
  padding: 3px 7px;
  font-size: 11px;
  text-transform: unset;
}
.sky-button.absolute-center-text {
  align-items: center;
  display: inline-flex;
}
.sky-button.no-elevation {
  box-shadow: none;
}
.sky-button:hover {
  background-color: rgba(238, 115, 21, 0.8705882353);
}
.sky-button:focus {
  outline: none;
}
.sky-button:active {
  background-color: #9e9e9e;
  outline: none;
}
.sky-button.danger {
  background-color: #cb3838;
  color: #fff;
}
.sky-button.danger:hover {
  background-color: #a22f2f;
}

.modal-overlay {
  display: flex;
  background-color: rgba(0, 0, 0, 0.5490196078);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  z-index: 998;
  opacity: 0;
  pointer-events: none;
}
.modal-overlay.show {
  opacity: 1;
  pointer-events: auto;
}
.modal-overlay.show .sky-modal {
  transform: translate(-50%, -60%) !important;
  transition: transform 0.4s;
}
.modal-overlay .modal-container {
  height: 100%;
  width: 100%;
  position: relative;
}
.modal-overlay .modal-container .input-field {
  padding: 6px 6px;
}
.modal-overlay .modal-container .sky-modal {
  display: flex;
  flex-direction: column;
  position: fixed;
  left: 50%;
  top: 45%;
  width: 60vw;
  background-color: #FFFFFF;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  border-radius: 12px;
  box-sizing: border-box;
  z-index: 999;
  transform: translate(-50%, 100%);
  transition: transform 0.4s;
}
.modal-overlay .modal-container .sky-modal.small {
  width: 40vw;
}
@media (max-width: 768px) {
  .modal-overlay .modal-container .sky-modal {
    width: 80% !important;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -30%);
  }
}
.modal-overlay .modal-container .sky-modal .modal-header,
.modal-overlay .modal-container .sky-modal .modal-body,
.modal-overlay .modal-container .sky-modal .modal-footer {
  width: 100%;
  box-sizing: border-box;
  padding: 16px 24px;
}
.modal-overlay .modal-container .sky-modal .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  color: #212121;
  border-bottom: 1px solid #E0E0E0;
  border-radius: 12px 12px 0px 0px;
}
.modal-overlay .modal-container .sky-modal .modal-header .inner {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.modal-overlay .modal-container .sky-modal .modal-header .inner .title {
  font-size: 20px;
  font-weight: 500;
}
.modal-overlay .modal-container .sky-modal .modal-header .inner .close-button {
  background: none;
  border: none;
  color: #212121;
  font-size: 24px;
  cursor: pointer;
}
.modal-overlay .modal-container .sky-modal .modal-body {
  flex: 1;
  color: #424242;
  max-height: 60vh;
  overflow-y: auto;
  min-height: 20vh;
}
.modal-overlay .modal-container .sky-modal .modal-body .row {
  display: flex;
  width: 100%;
  flex-direction: row;
  flex-wrap: wrap;
}
.modal-overlay .modal-container .sky-modal .modal-body .col {
  padding: 10px;
  box-sizing: border-box;
  flex-direction: column;
  display: flex;
  margin-bottom: 0 !important;
}
.modal-overlay .modal-container .sky-modal .modal-body .col-25 {
  flex: 0 0 25%;
  max-width: 25%;
}
.modal-overlay .modal-container .sky-modal .modal-body .col-33 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}
.modal-overlay .modal-container .sky-modal .modal-body .col-50 {
  flex: 0 0 50%;
  max-width: 50%;
}
.modal-overlay .modal-container .sky-modal .modal-body .col-75 {
  flex: 0 0 75%;
  max-width: 75%;
}
.modal-overlay .modal-container .sky-modal .modal-body .col-100 {
  flex: 0 0 100%;
  max-width: 100%;
}
.modal-overlay .modal-container .sky-modal .modal-footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  background-color: #fff;
  color: #212121;
  border-top: 1px solid #E0E0E0;
  margin-top: 10px;
  border-radius: 0px 0px 12px 12px;
  gap: 5px;
}
.modal-overlay .modal-container .sky-modal .modal-footer.fixed {
  position: sticky;
  bottom: 0;
  left: 0;
  width: 100%;
}

.input-container {
  line-height: 1;
  margin-bottom: 16px;
  font-family: "Roboto", sans-serif;
}
.input-container.inline {
  margin-bottom: 0 !important;
  display: flex;
  justify-content: flex-end;
}
.input-container.inline .left-col, .input-container.inline .right-col {
  display: inline-flex;
}
.input-container .input-label {
  display: block;
  font-size: 14px;
  color: #4c4c4c;
  margin-bottom: 3px;
  font-weight: 500;
}
.input-container span {
  color: #757575;
  font-style: italic;
  font-size: 12px;
}
.input-container .input-field {
  width: 100%;
  padding: 6px 8px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #ffffff;
  color: #333333;
  font-size: 14px;
  box-shadow: none;
  transition: border-color 0.3s;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.input-container .input-field.changed {
  background-color: rgba(47, 147, 174, 0.36) !important;
}
.input-container .input-field:focus {
  border-color: #aaa;
  outline: none;
}
.input-container .input-field::-moz-placeholder {
  color: #bdbdbd;
}
.input-container .input-field::placeholder {
  color: #bdbdbd;
}
.input-container .input-field.no-width {
  width: unset;
}
.input-container .input-row {
  display: flex;
  flex-direction: row;
  margin: 0 -10px;
  box-sizing: border-box;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.input-container .input-row .col {
  display: flex;
  flex-direction: column;
  padding: 0 10px;
  box-sizing: border-box;
}
.input-container .input-row .col-50 {
  width: 50%;
  flex: 0 0 50%;
}
.input-container .input-row .col-100 {
  width: 100%;
  flex: 0 0 100%;
}

.qrImage {
  font-size: 12px;
  display: flex;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
}
.qrImage.hide {
  display: none;
}
.qrImage img {
  width: 50px;
  height: 50px;
}

.uploadImage {
  display: flex;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
  justify-content: center;
  align-items: start;
  gap: 4px;
}
.uploadImage img {
  width: 50px;
  height: 50px;
  border: 1px solid #c7c7c7;
  padding: 3px;
}

.scanContainer {
  width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.scanContainer .scanCard {
  width: 600px;
  min-height: 400px;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  padding: 10px;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media (max-width: 768px) {
  .scanContainer .scanCard {
    width: 80%;
  }
}
.scanContainer .scanCard .scanCardInner {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.scanContainer .scanCard .scanCardInner .heading {
  text-align: center;
  margin-bottom: 40px;
}
.scanContainer .scanCard .scanCardInner .heading label {
  font-size: 32px;
  font-weight: bold;
  display: block;
  padding-bottom: 10px;
}
.scanContainer .scanCard .scanCardInner .heading img {
  width: 200px;
  height: 150px;
}
.scanContainer .scanCard .scanCardInner .quantityContainer {
  display: flex;
  width: 60%;
  justify-content: space-between;
  margin: 10px 0px;
}
@media (max-width: 768px) {
  .scanContainer .scanCard .scanCardInner .quantityContainer {
    width: 90%;
  }
}
.scanContainer .scanCard .scanCardInner .quantityContainer input {
  width: 65%;
  border: 1px solid #a7a7a7;
  background-color: #fbfbfb;
  padding: 4px 8px;
  border-radius: 12px;
  position: relative;
}
@media (max-width: 768px) {
  .scanContainer .scanCard .scanCardInner .quantityContainer input {
    width: 55%;
  }
}
.scanContainer .scanCard .scanCardInner .quantityContainer input:active, .scanContainer .scanCard .scanCardInner .quantityContainer input:focus, .scanContainer .scanCard .scanCardInner .quantityContainer input.focus-within {
  border: 1px solid #a7a7a7;
  background-color: #fff;
  outline: none;
}
.scanContainer .scanCard .scanCardInner .quantityContainer input::after {
  content: "pc";
  width: 20px;
  position: absolute;
}
.scanContainer .scanCard .scanCardInner .quantityContainer .quantityBtn {
  border: none;
  border-radius: 18px;
  height: 35px;
  width: 35px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px;
}
.scanContainer .scanCard .scanCardInner .quantityContainer .quantityBtn.add {
  background-color: rgb(57, 165, 114);
  color: #fff;
}
.scanContainer .scanCard .scanCardInner .quantityContainer .quantityBtn.remove {
  background-color: rgb(235, 63, 63);
  color: #fff;
}
.scanContainer .scanCard .scanCardInner .quantityContainer .quantityBtn.alt-add {
  background-color: rgba(18, 215, 24, 0.1803921569);
  box-shadow: 0 0px 2px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  color: #000;
}
.scanContainer .scanCard .scanCardInner .quantityContainer .quantityBtn.alt-remove {
  background-color: rgba(215, 36, 18, 0.1803921569);
  box-shadow: 0 0px 2px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  color: #000;
}
.scanContainer .scanCard .scanCardInner .saveBtn {
  border-radius: 12px;
  border: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  padding: 6px 12px;
  background-color: #fff;
  cursor: pointer;
}
.scanContainer .scanCard .statusBox {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 0px 0px 12px 12px;
  display: none;
  color: #fff;
}
.scanContainer .scanCard .statusBox.error {
  background-color: rgba(215, 34, 18, 0.6039215686);
}
.scanContainer .scanCard .statusBox.success {
  background-color: rgba(136, 203, 110, 0.63);
}
.scanContainer .scanCard .statusBox.show {
  display: block;
}
.scanContainer .scanCard .statusBox .statusText {
  padding: 5px 10px;
  margin: 0;
}

.displayText {
  font-weight: bolder;
}

.inventoryContainer {
  width: 75vw;
  height: auto;
  margin: 10px auto;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  border-radius: 3px;
}
@media (max-width: 1200px) {
  .inventoryContainer {
    width: 90vw;
  }
}
.inventoryContainer .header {
  background-color: transparent;
}
.inventoryContainer .header .title {
  margin: 0;
  padding: 0 10px;
  font-size: 32px;
  color: #fff;
  background-color: #333;
  border-radius: 8px 8px 0px 0px;
  padding: 5px 10px;
}
.inventoryContainer .inventoryInner {
  padding: 10px;
}
.inventoryContainer .inventoryInner .inventoryForm {
  margin-top: 10px;
  padding: 5px;
  display: flex;
  flex-direction: column;
}
.inventoryContainer .inventoryInner .inventoryForm .btn-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
}
.inventoryContainer .inventoryInner .inventoryForm .formInner {
  display: flex;
  flex-direction: row;
  box-sizing: border-box;
  flex-wrap: wrap;
  margin: 0px -10px;
  box-sizing: border-box;
  margin-bottom: 20px;
}
.inventoryContainer .inventoryInner .inventoryForm .formInner .cat-block {
  flex: 0 0 calc(100% - 20px);
  display: flex;
  flex-direction: column;
  margin: 0 10px;
  box-sizing: border-box;
  margin-bottom: 20px;
}
@media (min-width: 720px) {
  .inventoryContainer .inventoryInner .inventoryForm .formInner .cat-block {
    flex: 0 0 calc(33.3333333333% - 20px);
    max-width: calc(33.3333333333% - 20px);
  }
}
.inventoryContainer .inventoryInner .inventoryForm .formInner .cat-block .cat-label {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  display: flex;
  border-bottom: 1px solid #c7c7c7;
  background-color: #333;
  border-radius: 8px 8px 0px 0px;
  padding: 7px 12px;
  cursor: pointer;
}
.inventoryContainer .inventoryInner .inventoryForm .formInner .cat-block .cat-wrapper {
  display: none;
}
.inventoryContainer .inventoryInner .inventoryForm .formInner .cat-block .cat-wrapper.show {
  display: block;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}
.inventoryContainer .inventoryInner .inventoryForm .formInner .cat-block .cat-wrapper .itemRow {
  display: flex;
  flex-direction: row;
  width: 100%;
  padding: 8px 0px;
  align-items: center;
  justify-content: space-between;
  background-color: #FAFAFA;
  border-bottom: 1px solid #fbfbfb;
  transition: background-color 0.3s;
}
.inventoryContainer .inventoryInner .inventoryForm .formInner .cat-block .cat-wrapper .itemRow:nth-child(2n) {
  background-color: rgba(239, 118, 26, 0.1215686275);
}
.inventoryContainer .inventoryInner .inventoryForm .formInner .cat-block .cat-wrapper .itemRow:hover {
  background-color: #333;
  color: #fff;
}
.inventoryContainer .inventoryInner .inventoryForm .formInner .cat-block .cat-wrapper .itemRow .labelContainer {
  width: 60%;
  padding: 5px 8px;
  font-size: 14px;
  font-weight: 400;
  align-self: flex-end;
}

.inputRow {
  display: flex;
  flex-direction: row;
}

.tabs {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}
.tabs .tabHeaders {
  border-bottom: 1px solid #c7c7c7;
  display: flex;
  flex-direction: row;
  margin-bottom: 10px;
}
.tabs .tabHeaders .tab {
  border-radius: 4px 4px 0px 0px;
  border: 1px solid #C7C7C7;
  border-bottom: 0;
  padding: 5px 10px;
  font-size: 12px;
  cursor: pointer;
  margin-right: 5px;
}
.tabs .tabHeaders .tab.active {
  color: #ef7519;
  border: 1px solid #ef7519;
  border-bottom: 0;
}
.tabs .tabContents .tabContent {
  display: none;
}
.tabs .tabContents .tabContent.active {
  display: block;
}

.responsive-table {
  max-width: 100vw;
  overflow: auto;
}
@media (max-width: 762px) {
  .responsive-table .sky-button {
    display: table-cell;
    align-items: center;
    text-align: center;
    vertical-align: middle;
    line-height: 1;
    margin-right: 5px;
  }
}

.small_text {
  font-size: 12px;
}

.admin-row {
  display: flex;
  padding: 5px 10px;
  flex-direction: row;
  background-color: #201f1f;
  align-items: center;
}
.admin-row.jutify-between {
  justify-content: space-between;
  padding: 10px;
}
.admin-row .title {
  font-size: 1.6rem;
  color: #ef7519;
  margin: 0;
  padding: 10px;
}

.admin-table {
  height: 300px;
  max-height: 300px;
  min-height: 300px;
  overflow-y: auto;
  position: relative;
  margin-top: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}
.admin-table.alt {
  height: 45vh;
  max-height: 45vh;
  margin-top: 0;
  box-sizing: border-box;
}
.admin-table.alt.min {
  height: 40vh;
  max-height: 40vh;
}
.admin-table.full-h {
  height: calc(100vh - 20px);
  max-height: calc(100vh - 20px);
  min-height: calc(100vh - 20px);
}
.admin-table table {
  box-shadow: none;
}
.admin-table table thead {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .admin-table {
    max-width: 100%;
    overflow: auto;
  }
}
.admin-table::-webkit-scrollbar-track {
  border-radius: 8px;
  background-color: #c7c7c7;
}
.admin-table::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background-color: #F5F5F5;
}
.admin-table::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background-color: #555;
}

.row-td-light {
  background-color: #F5F5F5;
  margin-top: 10px;
  border-radius: 8px;
}

.spinner {
  height: 1rem;
  width: 1rem;
  border: 2px solid #ef7519;
  border-left-color: transparent !important;
  border-radius: 50%;
  display: inline-block;
  animation: 1s linear infinite spinner;
}

.hidden {
  display: none;
}

.display-loading {
  position: fixed;
  height: 100vh;
  width: 100vw;
  background-color: rgba(255, 255, 255, 0.7176470588);
  display: none;
  z-index: 9999999999;
}
.display-loading.show {
  display: flex;
  align-items: center;
  justify-content: center;
}
.display-loading .loading {
  color: #ff8d16;
  animation: spinner 1s linear infinite;
  font-size: 48px;
}

/* Helpers */
.admin-negative {
  margin: -10px;
  border-radius: 0px 0px 12px 0px;
}
.admin-negative label {
  color: #ef7519 !important;
  font-weight: 600 !important;
}

.negative-col {
  margin: -10px;
}

.shadow {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.rounded-table {
  border-radius: 0px 0px 12px 0px;
}

.card {
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  padding: 10px 15px;
  position: relative;
}
.card.supplier-card {
  height: 45vh;
  box-sizing: border-box;
  overflow-y: auto;
  overflow-x: hidden;
}
.card.supplier-card::-webkit-scrollbar-track {
  border-radius: 8px;
  background-color: #c7c7c7;
}
.card.supplier-card::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background-color: #F5F5F5;
}
.card.supplier-card::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background-color: #555;
}
.card .information {
  margin: 10px 0px;
  font-size: 1.3rem;
  font-weight: 500;
  color: #595959;
}

.server-message {
  position: fixed;
  top: 0px;
  right: 0px;
  width: 400px;
  background-color: rgba(32, 31, 31, 0.8901960784);
  border-left: 5px solid #ef7519;
  color: #fff;
}
.server-message .inner {
  position: relative;
  padding: 20px 10px;
}
.server-message .inner p {
  margin: 0;
  font-weight: 500;
}
.server-message .inner .closer {
  position: absolute;
  top: 5px;
  right: 5px;
}

@media (max-width: 768px) {
  .col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}/*# sourceMappingURL=main.css.map */