:root {
  --main-bg-color: brown;
}

@media (max-width: 900px) {
  :root{
    --table-width: 98% ;
  }
}

@media (min-width: 900px) {
  :root{
    --table-width: 70% ;
  }
}

body {
  font-family: "ABeeZee", Helvetica, Arial, Lucida, sans-serif;
}
/* Navigation menu */

.navbarTop {
  /* background-color: #333; */
  color: white;
  padding: 10px;
  text-align: center;
}

.menu > .sub {
  display: none;
  width: 200px;
  background-color: white;
  border-top: 2px solid red;
}
.navbarTop a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
}

.menu-icon {
  display: none;
  cursor: pointer;
}

.menu {
  display: flex;
}

.menu.show {
  display: flex;
  flex-direction: column;
  text-align: left;
}

@media only screen and (max-width: 600px) {
  .navbarTop.show {
    background-color: white;
    border-top: solid 2px red;
    width: 85%;
    position: fixed;
    top: 100px;
    left: 7.5%;
    z-index: 100;
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  }
  .navbarTop > .sub {
    width: 100%;
    display: block;
  }
  .navbarTop a.sub {
    padding-left: 100px;
  }
  .navbarTop a.bold {
    background-color: #f4f4f4;
    font-weight: bold;
  }
  .navbarTop a {
    margin: 5px 0;
    color: #7e7e7e;
    text-align: left;
    padding-left: 50px;
    /* margin-bottom: 20px; */
    font-size: 15px;
    padding: 5px 20px;
  }

  .menu {
    display: none;
  }

  .menu-icon {
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1000;
    color: #3fa9f5;
    font-size: 20px;
  }

  .whole-content > .body {
    width: 98%;
  }
}
/* end */
.simple-button.sending {
  background: #90caf3;
}
.simple-button.sending > span {
  display: none;
}
.simple-button.sending > span.sending {
  display: block;
}
.simple-button > span.sending {
  display: none;
}
.subBtn {
  width: 100px;
  background-color: #3fa9f5;
  color: white;
  padding: 5px 5px;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
}
.whole-content {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}
.header {
  height: 150px;
  position: fixed;
  top: 0;
  left: 0;
  background-color: black;
  width: 100%;
  z-index: 0;
}
.top-bar {
  position: fixed;
  top: 0;
  background: black;
  z-index: 10;
  width: var(--table-width);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.whole-content > .body {
  width: var(--table-width);
  position: relative;
  z-index: 5;
  background-color: white;
  margin-top: 100px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  min-height: 85vh;
}
.top-nav-btns {
  color: white;
  display: flex;
  justify-content: space-around;
  align-items: center;

  width: 40%;
  /* font-family: Arial, Helvetica, sans-serif; */
  font-family: "ABeeZee", Helvetica, Arial, Lucida, sans-serif;
  /* position: absolute;
  right: 0;
  top: 10px; */
  font-size: 15px;
}
.tool-bar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.center-hor {
  display: flex;
  align-items: center;
  justify-content: center;
}
.input-field {
  border: none;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 10px;
  font-size: 12px;
  width: 100%;
  margin-bottom: 5px;
}
.input-field:focus {
  outline: none;
}
.simple-button {
  width: 100%;
  height: 40px;
  border: none;
  color: white;
  background-color: #3fa9f5;
}
.table-content > .footer {
  width: 100%;
  padding: 5px 50px;
}
.loading-cover{
    position: absolute;
    top: 10px;
    left: 1%;
    flex-grow: 1;
    width: 98%;
    border-radius: 20px;
    height: 80px;
    z-index: 99;
    background: #ededed;
}
.loading-cover-2{
    position: absolute;
    top: 130px;
    left: 1%;
    flex-grow: 1;
    width: 98%;
    border-radius: 20px;
    height: 600px;
    z-index: 99;
    background: #ededed;
}
.table-content {
    position:relative;
    display: flex;
    flex-direction:column;
  background-color: white;
  /* min-height: 600px; */
  padding: 10px 15px;
  /* display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center; */
}
svg.absolute {
  position: absolute;
}
svg.fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  /* height: 100px; */
  width: 100%;
}
.svg-show {
  width: 100%;
  height: 100px;
  position: fixed;
  bottom: 0;
  left: 0;
  border: 1px soild black;
}
.table-list {
  width: 100%;
  font-size: 12px;
  font-family: Arial, Helvetica, sans-serif;
  margin-top: 10px;
}

tr:nth-child(2n) {
  background-color: #f3f3f3;
}
tr {
  border: 1px solid black;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
  padding: 8px;
}

th {
  font-weight: bold;
  font-size: 13px;
  padding: 10px;
  /* text-align: center; */
}
td {
  /* text-align: center; */
  padding: 8px;
  margin: 15px !important;
}

.sub-modal.hidden {
  display: none;
}
.sub-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* height: 100vh; */
  height: max-content;
  /* background-color: rgba(0, 0, 0, 0.1); */
  display: flex;
  /* filter: blur(10); */
  justify-content: center;
  z-index: 10;
}
.blur-back {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  backdrop-filter: blur(3px);
}
.sub-modal > .body > .topper {
  background-color: black;
  height: 40px;
  width: 100%;
  color: white;
  padding: 10px 15px;
  font-weight: bold;
  font-size: 18px;
  position: relative;
}
.topper > .close {
  cursor: pointer;
  color: white;
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 14px;
  font-weight: bold;
}
.padding-20 {
  padding: 20px;
}
.sub-modal > .body > .submit-form {
  width: 100%;
  height: 500px;
  /*padding: 20px;*/
}
.sub-modal > .body {
  background-color: white;
  width: 500px;
  height: 600px;
  margin-top: 150px;
  display: flex;
  overflow: hidden;
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  position: relative;
  box-shadow: 0px 8px 800px rgba(0, 0, 0, 0.2);
}
.float-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
}
.relative {
  position: relative;
}

.all-footers {
  width: 100%;
  background: black;
  height: 50px;
}
.noShow {
  display: none !important;
}
.cover-all {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: black;
  display: flex;
  justify-content: center;
  /*align-items: center;*/
  padding-top: 35vh;
  z-index: 100;
}

.cover-all > .content {
  display: flex;
  /*justify-content: center;*/
  flex-direction: column;
  align-items: center;
}

.placed-input {
  margin-bottom: 30px;
}
.placed-input > label {
  width: 100%;
  color: white;
  position: relative;
}
.placed-input > label > input:focus {
  outline: none;
}
.placed-input > label > input {
  border: 0.5px solid #e5e5e5 !important;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 10px;
  font-size: 14px;
  color: black !important;
  width: 100%;
  height: 40px;
  margin-bottom: 5px;
  position: absolute;
  top: 0;
  left: 0;
}

#dtBasicExample_filter {
  float: left !important;
}
#dtBasicExample_length {
  float: right !important;
}

td {
  /*white-space: nowrap;*/
  /*width: 20px !important;*/
}

tr.loading-row {
  /*background: grey;*/
}

div.loading-row {
  width: 100%;
  height: 40px;
  /* background: linear-gradient(to right, #ffffff, #e9e9e9); */

  background: linear-gradient(
    90deg,
    rgba(194, 194, 194, 1) 0%,
    rgba(245, 245, 245, 1) 32%,
    rgba(194, 194, 194, 1) 61%
  );
  animation: loadingAnimation 1.5s linear infinite;
  background-size: 200% 100%; /* Added this line */
}

@keyframes loadingAnimation {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.width-100 {
  width: 100% !important;
}

.flex-vertical {
  display: flex;
  flex-direction: column;
}
.space-between {
  justify-content: space-between;
}

.box-shadow-light {
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.2) !important;
}
.box-shadow-xlight {
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1) !important;
}
.center-all-flex {
      display: flex;
  justify-content: center;
  align-items: center;    
}
.loader-contain{
    display:flex;
    flex-direction: column;
    align-items:center;
}
.center-all {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fafafa;
}
.login {
  margin-top: -300px;
  background-color: black;
  padding-top: 20px;
  width: 400px;
  border-radius: 10px;
}
.login-card {
  margin-top: 15px;
  padding: 20px;
  background-color: white;
  border-radius: 0 0 10px 10px;
}

table.dataTable thead .sorting:after,
table.dataTable thead .sorting:before,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_asc:before,
table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_asc_disabled:before,
table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting_desc:before,
table.dataTable thead .sorting_desc_disabled:after,
table.dataTable thead .sorting_desc_disabled:before {
  bottom: 0.5em;
}

.message-lable.success{
    background: #04aa56;
}
.message-lable.error{
    background: #aa0404;
    
}
.message-lable.hidden{
    display: none;
}
.message-lable{
        width: 50%;
    margin-left: 25%;
    height: 40px;
    border-radius: 20px;
    margin-top: 5px;
    margin-bottom: 5px;
    line-height: 40px;
    color: white;
    text-align: center;
    box-shadow: 0px 0px 7px rgb(0 0 0 / 44%);
}

@keyframes gradient-move {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 0%;
  }
}

.gradient-animate {
  background: linear-gradient(to right, #f3f4f5, #ffffff, #f3f4f5);
  background-size: 200% 100%;
  animation: gradient-move 1s linear infinite;
}

.stock-tag.red{
    background: #bd7474;
}
.stock-tag.green{
    background: #3da83d;
}
.stock-tag{
 text-wrap: nowrap;
        padding: 3px 10px;
        font-size: 11px;
    color: white;
    border-radius: 4px;
}





