@import url('https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');
/* @import url('https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css'); */
/* @import url('https://cdn.datatables.net/1.10.21/css/jquery.dataTables.css');   */
:root{
  --primary-color:rgb(218, 229, 151);   
  --secondary-color:rgba(199, 205, 179, 0.928);  
  --padding: 0.5rem;
  --border-radius: 0.6rem;
  --transition: all 0.4s;
  --box-shadow:0.1rem 0.2rem 0.8rem rgba(120,151,98,0.9 )
}

/* reset and common css start here */

*{
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  outline: none;
  /* list-style-type: none; */
  text-decoration: none;
}
[class*="col-"]{
  float: left;
  padding: 10px;
}
[class*="col-"]{
  width: 100%;
}
html{
  scroll-behavior: smooth;
}
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}


img{
  width: 100%;
  height: auto;
}
input::-webkit-outer-spin-button,input::-webkit-inner-spin-button {
               -webkit-appearance: none;
                margin: 0;
        }

.flex-space-arround{
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.flex-center{
  display: flex;
  justify-content:center;
  align-items: center;
}

.btn{
  border: none;
  padding: var(--padding);
  cursor: pointer;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn:hover{
  background-color: var(--secondary-color);
}
header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: black;
  position: sticky;
  top: 10px;
  z-index: 10;
  min-height: 2vh;
  font-size: 16px;
}
#logo-figure{
  padding: 0;
  margin-left: 1rem;
  margin-top: 0;
  }
  
  #logo-figure a:hover {
    background-color: rgb(159, 241, 159);
  }
 
  .logo{
  font-size: 1rem;
  }
  #header-menu-icon{
  display: none;
  }
  .top-logo{
    width: 45px;
    height: 45px; 
    margin-top: 0;   
  }
  
.left-bopart-navbar{
  flex-basis: 25%;
  /* text-align: left; */
  margin-top: 0;
  padding-right: 5px;
  padding-left: 5px;
}
.middle-bopart-navbar{
  flex-basis: 60%;
  text-align: center;
  margin:0;
}
.right-bopart-navbar{
  flex-basis: 15%;
  padding-top: 3px;
  text-align: right;
  margin-right:1rem;
  display: flex;
  justify-content:flex-end; 
  margin-top: 2.5vh;

}
.right-bopart-navbar > ul > li {
  list-style: none;
  display: block;
}
.vigibilty-logout{
  display: none;
}
.container-bo-navbar {
  width: 100%;
  display: flex;
  justify-content:space-between; 
  margin: 0;  
}

.card{
  /* box-shadow: var(--box-shadow); */
  border-radius: var(--border-radius);
  padding: var(--padding);
  transition: var(--transition);
}
.card:hover{
  box-shadow: 0.1rem 0.2rem 0.8rem rgba(202,202,201, 0.80 )
}
.text-center{
  text-align: center;
}
body {
  background-color: #fff;
  font-family: 'Space Mono', monospace;
  font-family: 'Open Sans', sans-serif;
  /* max-width: 760px; */
  margin: auto;
  font-size: 1rem;
  
}

.container{
  max-width: 99%;
  /* background-color:rgb(155, 240, 212); */
  margin: 0 auto;
}


h1, h2, h3, h4, h5, h6{
  color: coral;
}
.page-title{
  margin: auto;
  font-weight: bold;
}
.div-clear{
  clear: both;
}
/* reset and common css ends here */

nav > ul > li {
  list-style: none;
  display: inline-block;
}

nav > ul > li > a,
a {
  text-decoration: none;
  color: #db2777;
  padding: 8px 8px;
  border-radius: 8px;
  font-size: 14px;
}

nav > ul > li > a:hover,
a:hover {
  background-color: #fdf2f8;
}
/*added new */

nav{
  font-family: sans-serif;
  font-size: 1.5rem;  
  display: flex;
  justify-content:space-around;
  padding: .5rem 0;
}

.nav-upper{
  min-height: 0.5vh;
  padding: .1rem 0;
  background-color: var(--primary-color);
}

.nav__list{
  transition:var(--transition);
}

.nav__list:hover{
  /* text-decoration:underline; */
  color: black;
}

.nav__link{
  color: white;
  transition: var(--transition);
}

.nav__link{
  /* color: black; */
  color: #db2777;
}
.dropdown-container{
  display: inline;
  position: relative;
  float: right;  
}

.dropdown-container:hover .dropdown-content{
  display:block;
}
.dropdown-content{
  background-color: rgb(221, 182, 147);
  position:absolute;
  top: 20px;
   /* right: 20px;  */
  text-align: left;
  min-width: 150px; 
  display: none;
  max-width:150px; 
}

.dropdown-content a{
  display: block;         
  padding: 5px;
  font-size: 14px;
  
}
.dropdown-content a:hover{
  color: black;

}


/* end*/

h1.title {
  text-align: center;
  margin: .3rem;
  text-decoration: underline;
}
h2.title {
  text-align: center;
  margin: .1rem;
  text-decoration: none;
}


main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.lg-form {
  margin: 5px;
  padding-left: 15px;
  padding: 5px;
  border: 4px solid #d1d5db;
  min-width: 350px;
  border-radius: 16px;
  max-width: 350px;
}

.form-center{
  display:block;
  justify-content: center;
  align-items: center;
  
}
/* log in css start here */
.frmlg-center{
  display:block;
  margin-top:6rem;

  /* margin: 0; */
}

/* style="text-align: center; margin: 0;" */
.login-title{
  text-align: center;
  margin-top: auto;
}
.login-form{
  margin: 2rem;
  padding: 22px;
  border: 4px solid #d1d5db;
  min-width: 350px;
  max-width: 350px;
  border-radius: 16px;
  /* width: 40%; */
  /* text-align: center; */
}
.login-form label,
.login-form input {
  display: block;
  min-width: 100%;
  margin: 8px 0px;
  
}

.login-form label {
  font-weight: bold;
}

.login-form input {
  height: 44px;
  border: none;
  border-radius: 8px;
  padding: 8px;
  font-size: 1rem;
  background-color: #f3f4f6;
}

.login-form input[type='submit'] {
  margin: 16px 0;
  background-color: #db2777;
  color: #fff;
  cursor: pointer;
  text-align: center;
  
}
/* log in css end here */
.change-pass-form {
  margin: 16px;
  padding: 32px;
  border: 4px solid #d1d5db;
  /* min-width: 200px; */
  border-radius: 16px;
  /* width: 50%; */
 
}
.change-pass-form label,
.change-pass-form input {
  display: block;
  min-width: 90%;
  margin: 8px 0px;
}

.change-pass-form label {
  font-weight: bold;
}

.change-pass-form input {
  height: 35px;
  border: .5px solid;
  border-radius: 8px;
  padding: 8px;
  font-size: 1rem;
  background-color: #f3f4f6;
  outline: none;
}

/* .change-pass-form input[type='submit'] {
 
 
} */
#btn-change-pass{
  max-width:50%;
  margin: 16px 0;
  background-color: #db2777;
  color: #fff;
  cursor: pointer;
  text-align: center;
}
.lg-form label,
.lg-form input {
  display: block;
  min-width: 100%;
  margin: 8px 0px;
}

.lg-form label {
  font-weight: bold;
}

.lg-form input {
  height: 35px;
  border: none;
  border-radius: 8px;
  padding: 8px;
  font-size: 1rem;
  background-color: #f3f4f6;
}

.lg-form input[type='submit'] {
  margin: 10px 0;
  background-color: #db2777;
  color: #fff;
  cursor: pointer;
  text-align: center;
  
}
/* hme page css start here */
.home_details{
  padding: .2rem .2rem;
  display: flex;
  min-height: 95vh;
}
.home_details article{
  flex-basis: 80%;
  margin: 1.5rem;
}
.home_details aside{
  flex-basis: 20%;
  /* margin:auto; */
  margin-top: 0;

}
#tree-container{
	background-color:antiquewhite;
 
}

.jstree-default .jstree-clicked {
	background-color:deepskyblue;
}


/*roleinfo form css start here*/

.roleinfo-left-div{
  width: 50%;
  float: left;
  padding-right: 3rem;
}
.roleinfo-right-div{
  width: 50%;
  float: left;
}

.form-roleinfo{
  border: 0.2rem solid black;
  padding: 10px; 
  height: 56vh;
  margin-top: 20px;
}

.form-heading{
  font-size: 1.5rem;
  font-weight: bolder;
  margin-bottom: .5rem;
  text-align: center;
  margin-top: 0;
}
.form_roleedit-heading{
  font-size: 1.5rem;
  font-weight: bolder;
  margin-bottom: 1rem;
  text-align: center;  
}

.form-control{
  padding-bottom: .25rem;
  margin-bottom: .25rem;
  display: flex;
  justify-content:space-between;
  padding: 5px;
}

.form-control label{
  flex: .3;
  font-size: 1.0rem;
  padding-right: 3px;
  text-align: left;
}
.form-labelstatus{
  padding-right: 5px;
  padding-left: 5px;
  text-indent: -5px;
  font-weight: bold;
  
}
.form-control input{
  flex: 0.7;
  font-size: 1rem;
  height: 6vh;
}
.datatable-textbox{ 
  width: 100%;
  height: 100%;
  border:none ;
  padding: 2px; 
  font-size: 12px;
}

.datatable-dateinput{ 
  width: 8rem;
  height: 1.5rem;
  border:none ;
  padding: 5px; 
  font-size: 1rem;
}
.form-control textarea{
  flex: 0.7;
  font-size: 12px;
  resize: none;
}
.checkmark {
  position:relative;
  top: 0;
  left: 0;
  height: 1.3em;
  width: 1.3em;
  background: #606062;
  border-radius: 5px;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.30), 0px 1px 1px rgba(0,5);
 }
 .checkmarktbl {
  position:relative;
  top: 0;
  left: 15px;
  height: 1.3em;
  width: 1.3em;
  background: #606062;
  border-radius: 5px;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.30), 0px 1px 1px rgba(0,5);
 }

 .checkmarkstatus {
  height: 1.3em;
  width: 1.3em;
  background: #606062;
  padding-left: 30px;
  vertical-align: middle;
  }

.btn-roleinfo{
  width: 10rem;
  padding: .5rem;
  font-size: 1rem;
  text-align:center;
  background-color: rgb(17, 95, 56);
  border: none;
  border-radius: 1rem;
  color: white;
  margin-left: 5px;
}

.form-menuinfo{
  width: 40rem;
  padding: .5rem;
  font-size: 1rem;
  text-align:center;
  background-color: rgb(239, 245, 242);
  border: 0.1rem solid black;
  border-radius: 1rem;
  color: black;
  margin: auto;
  height: 60vh;
}
.form-profile{
  width: 100%;
  /* padding: .5rem; */
  font-size: 12px;
  text-align:center;
  background-color: rgb(239, 245, 242);
  color: black;
  margin-bottom: auto;
}
.container-profile{
  min-width: 100%;
  max-width: 100%;
  /* background-color:rgb(155, 240, 212); */
  /* margin: 0 auto; */
  margin-top: 5%;
  margin-bottom: 3rem;
}
.container-supplier-arrea{
  width: 50%;
  text-align: center;
  /* background-color:rgb(155, 240, 212); */
  margin: auto;
  margin-top:7%;
  margin-bottom: 3rem;
}
.short-profile-form{
  width:50%;
  text-align: center;
  margin: auto;
}
.form-control-profile input{
  flex: 0.7;
  font-size: 12px;
  height: 4vh;  
  padding: 2px;
}
.form-control-profile input[type="date"]{
  font-size: 12px;
  height: 4vh;  
  flex: 0.7;  
  padding: 2px;
  
}
.form-control-profile{
  padding-bottom: .1rem;
  margin-bottom: .25rem;
  display: flex;
  justify-content:space-between;
  padding: 5px;
}
.form-control-profile label{
  flex: .3;
  font-size: 12px;
  padding-right: 2px;
  text-align: left;  
}

.form-control-btn{
  display: flex;
  justify-content:center;
  /* padding-top: .25rem; */
}
.profile-dropdownlist{
  flex: 0.7;
  font-size: 12px;
  height: 4vh;
}
.btn-profileinfo{
  width: 9rem;
  min-width: 9rem;
  padding: .25rem;
  font-size: 14px;
  text-align:center;
  background-color: rgb(17, 95, 56);
  border: none;
  border-radius: 1rem;
  color: white;
  margin:1rem; 
  margin-bottom: 2rem;
}

.btn-smprofileinfo{
  width: 7rem;
  min-width: 7rem;
  padding: .25rem;
  font-size: 14px;
  text-align:center;
  background-color: rgb(17, 95, 56);
  border: none;
  border-radius: 1rem;
  color: white;
  /* margin:1rem;  */
  /* margin-bottom: 2rem; */
}

.btn-sprofileinfo{
  width: 7rem;
  min-width: 7rem;
  padding: .25rem;
  font-size: 14px;
  text-align:center;
  background-color: rgb(17, 95, 56);
  border: none;
  border-radius: 1rem;
  color: white;
  /* margin:1rem;  */
  margin-bottom: 1rem;
}

#imagePreview {
  width: 150px;
  height: 150px;
  border: 1px solid #ccc;
  padding: 10px;
}
#imagePreview img {
  max-width: 100%;
  max-height: 100%;
}
/* Roleinfo form css end here */

input:focus {
  outline: none;
  background-color: #fff;
  border: 2px solid #f3f4f6;
  /* box-shadow: 0 0 8px #fdf2f8; */
}

h1.table {
  text-decoration: underline;
  /* margin: 16px 0; */
}
table caption{
  margin-bottom: 1rem;
  
}
th, td {
  border: .5px solid black;
  border-collapse: collapse;
  word-wrap: break-word;
 
}
table {
  /* margin-top: 32px; */
  min-width: 100%;
  border-spacing: 0;
    /* padding: 16px; */
  border-radius: 5px;
  border: 1px solid black;
}

thead {
  font-size: 1rem;
  color:black;
  /* position: relative;
  display: block; */
  /* width: 700px; */
  overflow: visible;
}


thead th {
  background-color: rgb(226, 226, 230);
  /* min-width: 120px; */
  /* height: 32px; */
 
  border: 1px solid #222;
}

thead tr {
  border-radius: 1px;
  background-color: white;
  color: black;
  /* overflow: hidden; */
}

thead th {
  padding: 8px 0;
  text-align: left;
  padding-left: 8px;
}

table th:first-child {
  border-radius: 10px 0 0 10px;
}

table th:last-child {
  border-radius: 0 10px 10px 0;
}

/* thead th:nth-child(1) {
  max-width: 44px;
} */

tbody {
  /* position: relative;
  display: block;
  width: 700px;
  height: 239px; */
  overflow: scroll;
}

tbody td {
  background-color: rgb(255, 254, 255);
  /* min-width: 120px; */
  border: .5px solid #222;
}

tbody tr td:nth-child(1) {  /*the first cell in each tr*/
  /* position: relative;
  display: block; 
  height: 40px; */
  background-color: rgb(229, 229, 241);
}

tbody tr:hover {
   background-color: #fdf2f8; 
}

tbody tr td {
  padding: 2px 0;
  margin: 0 0;
  border: .5px solid black;
}



thead tr th:first-child,
tbody tr td:first-child {
  min-width: 7.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 2px 2px;
}

.profile {
  min-width: 600px;
  padding: 16px;
  border: 4px solid #d1d5db;
  border-radius: 16px;
  margin-top: 32px;
}

.profile > div {
  padding: 16px;
}

.profile .title {
  font-weight: bold;
}

.goback {
  cursor: pointer;
}

div.messages {
  display: flex;
  justify-content: center;
  align-items: center;
  /* margin-top: 30px; */
}

ul.messages {
  list-style: none;
  min-width: 600px;
  max-width: 600px;
  border-radius: 8px;
  overflow: hidden;
  margin: 16px;
}

ul.messages * {
  padding: 8px 12px;
}

.messages .error {
  background-color: #f87171;
}
.messages .success {
  background-color: #6ee7b7;
}
.messages .warning {
  background-color: #fcd34d;
}
.messages .info {
  background-color: #93c5fd;
}

/*datatable css start here*/
.tbl-col-backcolor{
background-color: rgb(173, 245, 173);
}
.page-item{
  display: inline-block;
  margin-bottom: 1rem;
}
.page-item.active .page-link {
  color: black;
  float:initial;
  padding: 8px 16px;
  text-decoration: none;
  background-color:rgb(225, 239, 225);
  border: 1px solid #f02121;
  margin: 0 4px;   
}
.page-link {
  color: black !important;
}

.dataTables_filter{
    float: left;  
   
}
.dataTables_length {
    float: right;   
    } 
div.dataTables_length label select{
  display: inline-block; 
}
div.dataTables_filter input {
   width: 300px; 
  display: inline-block; 
}


.dataTables_info {
    float:right;
    margin-bottom: 1rem; 
} 
.dataTables_paginate {
    float: left;
    margin-bottom: 1rem;
}
/* th, td { 
  white-space: nowrap; 
} */

div.dataTables_wrapper {
    margin: 0 auto;  
    text-align: left;  
    /* width: 20%; */
}

div.container {
    width: 95%;
}

#customerorderlist td{
 padding: 3px;
 /* white-space: nowrap;  */
 font-size: 10px;
 /* width: fit-content; */
}
 
 
 .divbeforefooter{
  position: fixed;
  right: 0;
  bottom: 2.5vh;
  left: 0;
  text-align: center;
  margin-bottom: 1rem;
 }
/*datatable css end here*/

/* orders details css start here  */

.masterinfo-container{
  width: 90%;
  display: flex;
  text-align: center;
  margin: auto;
}
.masterinfo-left-div{
  flex-basis: 50%;
}
.masterinfo-right-div{
  flex-basis: 50%;
}
.masterinfo-control{
  padding-bottom: .25rem;
  margin-bottom: .25rem;
  display: flex;
  justify-content:space-between;
  padding: 5px;
}
.masterinfo-control label{
  flex: .3;
  font-size: 12px;
  padding: 2px;
  text-align: left;
}

.masterinfo-control input, select{
  flex: 0.7;
  font-size: 12px;
  height: 3vh;
  /* border: none; */  
}

.container-customer-order{
  width: 90%;
  text-align: center;
  margin: auto;
}
.numeric-text{
  text-align: right;
  padding: 2px;
  
}
.order_detail{
  /* width: 4rem; */
  background: lightgreen;
  color: black;
  padding: 2px;
  text-align: center;
  margin: auto;
  cursor: pointer;
  border-radius:10px;
  font-size: 10px;
}
.order_delivery{
  /* width: 7rem; */
  background: lightgreen;
  color: black;
  padding: 2px;
  text-align: center;
  margin: auto;
  cursor: pointer;
  border-radius:10px;
  font-size: 9px;
}
.btn-reject{
  width: 4rem;
  background: rgb(223, 238, 128);
  color: black;
  padding: 2px;
  text-align: center;
  margin: auto;
  cursor: pointer;
  border-radius:10px;
}

.order-table-container{
  width: 90%;
  text-align: center;
  margin: auto;
  padding: 10px;
}
.menu-table-container{
  width: 90%;
  text-align: center;
  margin: auto;
  padding: 10px;
}
#customerorderlist th{
  font-size: 10px;
}
div.dataTables_info{
  display: none;
}
div.dataTables_length{
  display: none;
}
div.dataTables_paginate{
  display: none;
}
.btn-receipt-goods{
  width: 7rem;
  background: lightgreen;
  color: black;
  padding: 2px;
  text-align: center;
  margin: auto;
  cursor: pointer;
  border-radius:10px;
  font-size: 10px;
}
.btn-cancel-order{
  width: 7rem;
  background: rgb(238, 189, 89);
  color: black;
  padding: 2px;
  text-align: center;
  margin: auto;
  cursor: pointer;
  border-radius:10px;
}
.btn-reconfirm-order{
  /* width: 5rem; */
  background: rgb(217, 216, 213);
  color: black;
  padding: 2px;
  text-align: center;
  margin: auto;
  cursor: pointer;
  border-radius:10px;
  font-size: 10px;
  /* height: 6vh; */
}

.btn-sourcing-process{
  width: 5rem;
  background: rgb(217, 216, 213);
  color: black;
  padding: 2px;
  text-align: center;
  margin: auto;
  cursor: pointer;
  border-radius:10px;
  /* height: 5vh; */
  font-size: 10px;
}
.table-controller{
  width: 100%;
  border: none;
  outline: none;
 height: 5vh;
  /* padding: 3px; */
}
.btn-sourcing-option{
  width: 7rem;
  background: rgb(217, 216, 213);
  color: black;
  padding: 2px;
  text-align: center;
  margin: auto;
  cursor: pointer;
  border-radius:10px;
  font-size: 10px;
  /* height: 4vh; */
}

.btn-handover{
  width: 8rem;
  background: rgb(199, 241, 189);
  color: black;
  padding: 2px;
  text-align: center;
  margin: auto;
  cursor: pointer;
  border-radius:10px;
  height: 4vh;
  font-size: 9px;
}

/* orders details css end here  */

 /*product searching css start*/

 .home_details{
  display: flex;
 }
.left_itemtree{
  flex: 0.3; 

}
.jstree-open > .jstree-anchor, .jstree-closed > .jstree-anchor {
  font-size:10pt;
}

.jstree-default a { 
  font-size: 8pt;
  white-space:normal
}
.jstree-anchor {
  font-size: 8pt;
}
.jstree-default li > ins { 
  font-size: 8pt;
  vertical-align:top;
}
.jstree-leaf {
  font-size: 8pt;
}
.jstree-leaf a{
  font-size: 8pt;
}

.right_detail{
  flex: 0.7;
  text-align: center;
  margin: auto;
}
 .product-image{
  width: 100%;
  height: 60%;
 }
 .sproduct-image{
  width: 100%;
  height: 10vh;
  margin-top: 0;
 }

 .cproduct-image{
  width: 100%;
  height: 90%;
 }

 .product-image img{
  width: 100%;
  height: 100%;
  text-align: center;
   margin: auto;  
   padding: 5px;  
 }
 .product_Card{
  text-align: center;
  margin:auto;
  justify-content: space-between;
 /* display:flex;
 padding: 10px; */
}

.card{  
  float: left; 
  text-align: center;
  margin:.5rem; 
  justify-content: space-between;
  width: 20%; 
  height: 50vh;
  position: relative;
  background-color: rgba(255, 243, 225, 0.98);
}
.spcard{  
  float: left; 
  text-align: center;
  margin:.5rem; 
  justify-content: space-between;
  width: 18%; 
  height: 50vh;
  position: relative;
  /* background-color: rgba(255, 243, 225, 0.98); */
}
.prodtext{
  font-size: .7rem;  
}
.item_rate{
  position: absolute;
  bottom: 4.5vh;
  text-align: center;
  height: 4vh;
  /* margin-left:1rem; 
  margin-right:1rem;  */
  padding: 2px;  
  background-color: rgb(244, 219, 219);
  min-width:90%;
  max-width:90%;
  font-size: .8rem;
}

.sitem_rate{
  position: absolute;
  bottom: 7vh;
  text-align: center;
  height: 4vh;
  /* margin-left:1rem;  */
  /* margin-right:1rem;  */
  padding: 2px;  
  background-color: rgb(244, 219, 219);
  min-width:100%;
  max-width:100%;
  font-size: .8rem;
}
#sitemrate{
max-width: 25%;
min-width:25%;
text-align: center;
}
.btn-sitemrate{
  max-width: 25%;
  min-width: 25%;
text-align: center;
}
.item_avgrate{
  position: absolute;
  bottom: 8%;
  text-align: center;
  /* margin:.5rem;  */
  padding: 2px;  
  background-color: rgb(213, 208, 208);
  width: 100%;
  font-size: 9px;
  height:3vh;
}
.item_minirate{
  position: absolute;
  bottom: 2%;
  text-align: center;
  /* margin:.5rem;  */
  padding: 2px;  
  background-color: rgb(213, 205, 205);
  width: 100%;
  font-size: 9px;
  height:3vh;
}

.item_detail{
  width: 5.5rem;
  height: 4vh;
  font-size: .7rem;
  text-align:center;  
  margin: auto; 
  background-color: rgba(181, 181, 176, 0.716);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  color: black;
  padding: 2px;
}

.bo-item_detail{
  width: 9.5rem;
  height: 4vh;
  font-size: .7rem;
  text-align:center;  
 
  background-color: rgba(181, 181, 176, 0.716);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  color: black;
  padding: 2px;
}
.bo-btn_detail{
  position: absolute;
  bottom: 0px;
  text-align:right;  
  margin-left: 1rem; 
  
}
.btn_detail{
  position: absolute;
  bottom: 0px;
  text-align:right;  
  margin-left: 5rem; 
  
}
.btn_addtocart{
  position: absolute;
  bottom: 4vh;
  text-align:left;  
  /* margin: auto;  */
  /* padding: 1px; */
}

.btnaddtocart{
  width: 5rem;
  height: 4vh;
  font-size: .7rem;
  text-align:center;  
  margin: auto; 
  background-color: rgba(220, 220, 192, 0.716);
  border: none;
  /* border-radius: 1rem; */
  color: black;
  position: absolute;
  cursor: pointer;
  transition: var(--transition);
}



.btnaddtocart:hover{
background-color: var(--secondary-color);
}
.item_detail:hover{
  background-color: var(--secondary-color);
  }
  /*product searching css end*/

  /* product category page css start here */
  .container_product {
    position: relative;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    margin-top: 5%;
  }
  
  /*Styles for product card*/
  .product {
    text-align: center;
    margin:auto;
    justify-content: space-between;
    background:rgb(222, 216, 216);
    /* border-radius: 5px; */
  }

.product-Card {
  float: left; 
  text-align: center;
  margin:1rem; 
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  max-width: 21%; 
  min-width: 21%;
  height: 35vh;
  background-color: white;
  padding: 5px;
  border-radius: 50%;
  margin-bottom: 1rem;
  } 
  .product-Card-category{  
    float: left; 
    text-align: center;
    margin:1rem; 
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    max-width: 21%; 
    min-width: 21%;
    height: 35vh;
    background-color: white;
    padding: 5px;
    border-radius: 50%;
    margin-bottom: 1rem;
    
  }
  
  .sproduct-Card {
    float: left; 
    text-align: center;
    margin:0.5rem; 
    /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); */
    /* max-width: 18%;  */
    max-width: 18%;
    min-width: 18%;
    height: 40vh;
    /* background-color: rgba(233, 231, 235, 0.995); */
    padding: 5px;
    } 

  .product-img {
    width: 100%;
    height: 90%;
   
  }
  .product-img img{
    width: 100%;
    height: 100%;
    text-align: center;
     margin: auto;  
     padding: 5px;  
     border-radius: 50%;
   }

.product-name{
  font-size: .8rem;
  text-align:center;  
  margin-bottom:0; 
  
}
 .btn-productadd, .btn-productminus, .btn-productremove{
  display:inline-block;
  cursor: pointer;
  transition: var(--transition);
  padding: 2px;
 
} 
.btn-productremove{
  margin-left: 7px;
}
   /* product category page css end here */
/* shopping cart css start here */
.cart__item-action{
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.cart__itmes-heading{
  font-size: .8rem;
  font-weight: bold;
  text-align: center;
}
.btn-cart{
  width: 5rem;
  height: 5vh;
  font-size: 1rem;
  text-align:center;    
  background-color: rgba(73, 182, 77, 0.862);
  border: none;
  border-radius: 1rem;
  color: black;
  /* margin-right: 2rem; */
  cursor: pointer;
  transition: var(--transition);
  padding: 5px;
}
.btnporder{
  width: 10rem;
  height: 5vh;
  font-size: 1rem;
  font-weight: bold;
  text-align:center;    
  background-color: rgba(211, 190, 179, 0.716);    
  border: none;  
  color: black;
  cursor: pointer;
  transition: var(--transition);
  cursor: pointer;
  padding: 5px;
  margin-bottom: .5rem;
}
.btn-cart:hover{
  background-color: var(--secondary-color);
  }
.Shoppingcart_body{
  width: 85%;
  text-align: left;
  /* margin: auto; */
  padding: 10px;
}
.icon-arrow{
 padding: 0;
 padding-left:5px;
  margin: 0;
}
.icon-arrow-trash{ 
  margin: 0;
  padding: 0;
  padding-right: 5px;
}
.icon-arrow-minus{
  margin: 0;
  padding: 0;
}
.cart-itemqty{
  width: 2rem;
  border: none;
  text-align: center;
  padding: 2px;
  display: inline-block;
}
.cart-itemdesc{
  text-align: left;
  padding: 5px;
  margin: 0;
  width: 300px;
}
.cart-numericcell{
  text-align: right;
  padding-right: 5px;
}
.cart-contrainer{
  display: flex;
  margin-top: 4.5rem; 
}
.cart-right-side{
  width: 40%;
  float: left;
  text-align: right;
  justify-content:space-between; 
  /* margin: auto; */
  margin-right: 1.5rem;
  
  /* min-width: 40%; */
}
.cart-left-side{
  /* width: 50%; */
  float: left;
   text-align: right;
  justify-content:space-between; 
  margin: auto;
  margin-left: 1.5rem;
  min-width: 55%;
  max-width: 55%;
  font-size: 14px;
}
.cart-control-group{
  padding: .2rem;
  display:inline-flexbox; 
 
}  
.form-control-cart input{
  flex: 0.6;
  font-size: 12px;
  height:4vh;
  text-align: center;   
  margin-bottom: .5rem; 
  min-width: 300px; 
  width:300px;
  outline: none;     
}
.form-control-cart label{
  flex: .3;
  font-size: 12px;     
  margin-bottom: .5rem;    
  min-width: 30%;
  width: 30%;
}

#reqddate{
  font-size: 12px; 
  height: 6vh;  
  min-width: 8.5rem; 
  max-width: 8.5rem; 
  padding: 5px; 
  margin-bottom: 15px;
  text-align: right;
  
}
#dtime{
  font-size: 12px; 
  height: 5vh;  
  min-width: 10rem; 
  max-width: 10rem;  
  padding: 5px; 

}
.summary-text{
  text-align: center;
}
#dpoint{
  flex: 0.6;
  font-size: 12px;
  height:12vh;
  text-align: left;   
  margin-bottom: .5rem;
  min-width: 300px; 
  outline: none;  
  padding: 10px;
}
#darrea{
  flex: 0.6;
  font-size: 12px;
  height: 4vh;
  text-align: left;   
  margin-bottom: .5rem;  
  min-width: 300px; 
  outline: none;  
 
}
#remarks{
  flex: 0.6;
  font-size: 12px;
  height:8vh;
  text-align: left;   
  margin-bottom: .5rem;
  min-width: 300px; 
  outline: none;  
  padding: 10px;
}
#paymode{
  flex: 0.6;
  font-size: 12px;
  height: 4vh;
  text-align: left;   
  margin-bottom: .5rem;  
  min-width: 300px; 
}
#deliveryfee, #ordertotal{
  height: 3vh;
  border: none;
  width: 100%;
  text-align: right;
}
.cort-container{
  position: fixed;
   top: 40vh; 
   left:93%;
   z-index:1000;  
  text-align: right;
  margin-right: 2rem;

}

/* shopping cart css end here */

/* product detail page css start here */

.product-detail-container{
  display: flex;
  text-align: center;
  margin: 20px;
  padding: 20px;
  background: rgb(229, 225, 225)
}
.left-side-produt-image{
  flex-basis: 50%;
  background: white;
  /* border: .2px solid; */
  padding: 10px;
}
.right-side-produt-desc{
  flex-basis: 50%;
  padding: 20px;
}

.btn-product-detail{
  cursor: pointer;
  transition: var(--transition);
  padding: 3px;
  width: 80px;
  text-align: center;
  height: 40px;
} 
.product-detail-addremove{
  text-align: center;
  margin: auto;
  padding: 10px;
  background-color: #ccc;
  color: brown;
  height: 60px;
}
.product-detail-description{
  padding: 10px;
  margin-top: 15px;
  font-size: large;
  font-weight: bold;
  text-align: left;
}
#itemdetails-qty{
  text-align: center;
  margin: auto;
  padding: 10px;
  background-color: white;
  color: black;
  height: 40px;
  min-width: 50px;
  font-size: large;
  font-weight: bolder;
}


/* product detail page css end here */


/* customer header bar css start here */
.customer-headerbar{
  position: fixed;
  width: 99.5%;
  top: 0;
  left: .25%;  
  right: .25%;
  z-index:1000;  
  background-color: rgb(159, 241, 159);
  height: 9vh;
  color: white;
  /* margin-bottom: 3px; */
}
.container-navbar {
  width: 100%;
  display: flex;
  justify-content:space-between; 
  margin-top: 0;
  /* margin: auto; */
 
  
}
.left-part-navbar{
  flex-basis: 25%;
  text-align: left;
  margin: 0;
  margin-top: 0;
  padding-right: 5px;
  padding-left: 5px;
}
.middle-part-navbar{
  flex-basis: 60%;
  text-align: center;
  margin:0;
}
.right-part-navbar{
  flex-basis: 15%;
  /* padding-top: 2px; */
  text-align: right;
  margin-right:1rem;
  display: flex;
  justify-content:flex-end; 

}
.right-part-navbar > ul > li {
  list-style: none;
  display: inline-block;
}
#searchtext{  
  min-width: 40rem;
  min-height: 2rem;
  padding: 0;
  margin: 0;
}
#userddl, #roleddl {
  height: 40px;
  font-size: 16px;
}
.container-login{
  max-width: 50%;
  /* margin: 0 ; */
  padding: 5px;
  margin-left: 20%;
  margin-right: 20%;
  margin-top: 2%;
}
.container-change-pass{
  max-width: 35%;
  /* margin: 0 ; */
  padding: 10px;
  margin-left: 30%;
  margin-right: 30%;
  margin-top: 7%;
}
.container-home{
  max-width: 99%;
  margin: 0 ;
  padding: 10px;
  margin-top: 5%;
}

.container-user-home{
  max-width: 70%;
  padding: 10px;  
  text-align: center;
  margin: auto ;
  margin-top: 5%;
}

.container-customerhome{
  max-width: 99%;
   margin: 0 ;
   padding: 10px;
   /* top: 30vh; */
}
#frm-searchinnavbar{
  color: #555;
  display: flex;
  padding: 2px;
  /* border: 1px solid currentColor; */
  border-radius: 5px;
  background-color: white;
}
#txt-nav-search {
  border: none;
  background: white;
  margin: 0;
  padding: 4px 4px;
  font-size: 14px;
  color: inherit;
  border: 1px solid transparent;
  border-radius: inherit;
  width: 100%;
}

#txt-nav-search::placeholder {
  color: #bbb;
}
#btn-nav-search {
  text-indent: -999px;
  overflow: hidden;
  width: 40px;
  padding: 0;
  margin: 0;
  border: 1px solid transparent;
  border-radius: inherit;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' class='bi bi-search' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'%3E%3C/path%3E%3C/svg%3E") no-repeat center;
  cursor: pointer;
  opacity: 0.7;
  
}

#btn-nav-search:hover {
  opacity: 1;
}
#btn-nav-search:focus,
#txt-nav-search:focus {
  box-shadow: 0 0 3px 0 #1183d6;
  border-color: #1183d6;
  outline: none;
}
/* customer header bar css end here */

/* product price css start here */

#Itemlist thead tr th, tbody tr td{
  font-size: 10px;
  background-color: #faf7f7;
  padding: 2px;
  
  }

.Datatable thead tr th{
font-size: 10px;
background-color: #faf7f7;
padding: 2px;
}
.Datatable tbody tr td{
  font-size: 10px;
   padding: 2px 2px;
  }
  

/* product price css end here */

/* sales invoice css start here */

#invoiceitemdetails tr th:first-child,
#invoiceitemdetails tr td:first-child {
   max-width: 20px ;
   text-align: left;
   padding-left: 2px;
   min-width: 20px;
}

#SCBankrefno{
  max-width: 50%;
  min-width:50%;
  text-align: center;
  }
  
  #Amountreceived{
    max-width:  50%;
    min-width: 50%;
    text-align: center;
    font-size: 10px;
    }
    #cancelreason{
      max-width: 50%;
      min-width: 50%;
      text-align: center;
      font-size: 10px;
      }
/* sales invoice css end here */

/* footer section css start here */

.footer{
  background-color: var(--primary-color);
  padding: .25rem 0;
  min-height: 2vh;
  color:tomato;
  font-size: .8rem;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
}

.copyright-text{
  font-size: 0.6rem;
  text-align: center;
}
.footer__label{
  margin-right: 0.6rem;
}
/* footer section css end here */
