/*selection tab screen*/
.greybox{
    background-color: #e6e8e7;
    box-shadow: 5px 10px 8px 5px #888888;
    padding-top: 20px;
    border-radius: 20px;
    display: flex;
    padding:40px;
    margin-top: 400px;
    margin-bottom: 100px;
    flex-direction: column;
    justify-content: center;
    width: 70%;
    min-height: 350px;
}
.greycontent-box{
    padding-top:100px;
}
.selection-tab{
    box-shadow: 1px 1px 8px 5px #a09f9f;
    text-align: center;
    background-color: #94c11f;
    color:white;
    border-radius: 20px;
    margin: 5%;
    border:none;
    font-weight: 600;
    font-size:1.5rem;
    width:90%;
   min-height:130px;
   padding:4px;
}
.selection-tab:hover{
    background-color: #008f3a;
}
@media screen and (max-width:768px){
    
  /*btns in small screen*/
    .selection-tab{
        margin: 5%;
        font-size:1rem;
       min-height:70px;
    }    
    
  /*btns in small screen*/
}
/*section tab screen end */


/*dashboard btn*/
.cr-btn-green{
    background-color: #008f3a;
    color:white;
    border:none;
    padding:6px 14px;
    font-size:1.2rem;
    cursor: pointer;
    font-weight: 600;
    border-radius:4px;
}
/*initial distributive btn */
.cr-btn-yellow{
    background-color: #94c11f;
    color:white;
    border:none;
    font-weight: 600;
    padding:6px 14px;
    font-size:1.2rem;
border-radius:4px;
    cursor: pointer;
}

/*table btn pending ,rejected,executed*/
.msg-pending{
    background-color: #94c11f;
}
.msg-executed{
    background-color: #008f3a;
}
.msg-rejected{
    background-color: #e86d56;
}
.msg-transmission-err{                                                                                                                              
 background-color:#8b0000;} 

.msg-btn{
    color:white;
    border:none;
    font-weight: 600;
    padding:4px 8px;
    cursor:default;
    pointer-events:none;
    min-width:150px;
	width:100%;
    border-radius:4px;
}


/*outer row of the whole page*/
.supplier-row{
    display: flex;
   padding-top: 20px;
    padding-bottom: 30px;   
}
/*dashboard left side bar*/
.supplier-sidebar{
    width:240px;
    margin:15px;
    height: 100vh;
     scrollbar-width: thin;
   scrollbar-color:#94c11f #c5c5c5;
   overflow-y:auto;
   margin-top:26px;
   margin-bottom:30px;
}
/*sidebar cards container*/
.sup-container{
    display: flex;
    flex-direction: column;
}


/*sidebar cards*/
.card{
    margin:4px;
    width:190px;
    background: white;
    padding:15px;
    border-radius:10px;
    box-shadow:2px 2px 10px rgba(0,0,0,0.1);
 
     text-align: center;
    display: flex;
    align-items: center;

}
.card .text p{
    font-size:15px;
}
.circle{
    width:100px;
    height:100px;
    border-radius: 50%;
    position: relative;
    display:flex;
    justify-content: center;
    align-items: center;
    font-size:18px;
    font-weight: bold;
}

.circle::before{
    content:"";
    position:absolute;
    width:80px;
    height:80px;
    border-radius: 50%;
   background:white;
   
    transform: rotate(312deg);
}

.card span{
    z-index:2;
}

.suppler-dash-container,.container-supp{
    background-color: #f0f2f1;
    border-radius: 22px;
    box-shadow:2px 2px 10px rgba(0,0,0,0.1); /*8px 8px 8px 0px rgba(45, 45, 45, 0.25)*/;
    display: flex;
    flex-direction: column;
    padding:60px 20px;
    justify-content: space-around;
}




.suppler-dash-container{
  /*  max-height: 100vh;
    overflow-y: scroll;
   */
    width:100%;
}

.suppler-dash-container .supp-dash-table{
    overflow-x:unset;
}
.supp-dash-table .excel-table{
    display: block;
    overflow-x:auto;

    scrollbar-width:thin;
    scrollbar-color:#94c11f #c5c5c5;
}

.supp-dash-table{
    margin-left:3px;
    margin-top:10px;
}
.suppler-dash-container h5{
    font-weight: 600;
    color:#737373;
}
/* sidebar in small screen */
@media screen and (max-width:992px){
 
    /*sidebar cards*/
    .supplier-sidebar{
        width:100%;
        margin:15px;
	margin-top:26px;
        height: auto;
    }
    
    .sup-container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
.suppler-dash-container{
    max-height:none;
    overflow-y: scroll;
}

}

/*dashboard form */
.supplier-dashboard-form input{
    padding:8px;
    border:#888888;
    outline: none;
    border-radius:4px;
    box-shadow: 0 0 2px 1px #a09f9f;
    font-weight: 600;
    font-size: 16px;
    width: 100%;
    color:#888888;
    transition: 0.3s;
    min-width:250px;
}
#filter-supplier-orders .supplier-dashboard-form{
    margin:5px;
}
.supplier-dashboard-form label{
    font-weight: 700;
    font-size: 15px;
    color: #737373;
}
.supplier-dashboard-form select option:hover {
    background-color:#008f3a;
}
.supplier-dashboard-form select,.supplier-dashboard-form option{
    appearance: none;
    padding: 8px;    
    outline: none;
    color:#888888;
    border:#888888;
    border-radius:4px;
    box-shadow: 0 0 2px 1px #a09f9f;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    transition: 0.3s;
}
/*form input fields row*/
.supplier-dashboard-form-row{
display: flex;
gap:1%;
align-items: center;
margin-bottom: 10px;
width: 100%;
flex-wrap:wrap;
}

@media screen and (max-width:768px){
    .supplier-dashboard-form-row{
        flex-wrap: wrap;
    }
    .language-selection{
        margin:5px;
    }

}
@media screen and (max-width:457px){
    #filter-supplier-orders .supplier-dashboard-form{
        width:100%;
    }
}

.supp-dash-table p{
    color:#008f3a;
    font-weight: 700;
    font-size: 16px;
    margin:5px;
}


.admin-user-form{
    gap:5px;
}


/*issue-order page container*/
.issue-order .admin-center-container{
    width:80%;
   box-shadow:2px 2px 10px rgba(0,0,0,0.1);
}

.issue-order .cr-btn-yellow{
margin-right:1rem;
}
@media screen and (max-width:768px){
    .issue-order .admin-center-container{
        width:100%;
        padding:15px;
    }
}
/*tab btns individual, mass orders*/
.order-individual{
    background-color: #f7fcfa;
    color:#737373;
}
.order-type-btn{
    color:#737373;
    background-color: #e1e1e4;
    border:#737373;
    border-radius: 2px;
    box-shadow: 0 0 2px 1px #a09f9f;
    padding:2px 6px;
    margin-bottom:5px;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s;
}
.order-active{
 background-color: white;   
}

#individual-form select:disabled{
    background:border-box;
}
/*individual form input */
#indi-form form input,#indi-form form select{
    border-radius: 8px;
    font-size: 14px;
    padding: 4px 8px ;
}

/*file upload bulk */
.excelfile label{
    height: 150px;
    width: 100%;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid #e2e3e3;
    background-color: #ffffff;
}
.excelfile img{
    height: 40px;
    width:40px;
}
.excelfile label:hover{
    cursor: pointer;
    color: #737373;
}
.excelfile input{
    display: none;
}

/*bulk validate*/

.validate-btn{
    display: flex;
    justify-content: end;
}

/*order issue tab btns */

.form-btn-issue{
    font-size:16px;
    border-radius: 5px;
}

/*bulk order screen*/
#bulk-order{
    display: none;
    width:100%;
}

.text-green{
    color:#008f3a
}
.label-p{
    font-weight: 600;
    font-size: 14px;
}
@media only screen and (max-width:600px){
    .issue-order .admin-content{
        padding-inline:20px;
    }
    .issue-order .admin-form-group {
        width:100%;
    }
}

/*bulk order */

.drag-over{
    background-color: #e0f7e9;
    border-color: #2e7d32;
}





/*flatpicker custom style*/

body .flatpickr-calendar{
    width:210px;
}

.flatpickr-calendar .flatpickr-current-month{
    font-size: 112%;
    width: 100%;
      left: 1%;

}

.flatpickr-calendar .flatpickr-days{
    width: 210px
}
.flatpickr-calendar .dayContainer{
    width:210px;
    min-width: 210px;
    max-width: 210px;
}
.flatpickr-calendar .flatpickr-weekdays{
    width:100%;
}
.flatpickr-calendar span.flatpickr-weekday{
    flex:auto;
}
.flatpickr-calendar .flatpickr-months .flatpickr-prev-month,
.flatpickr-calendar .flatpickr-months .flatpickr-next-month {

    padding:5px;
}
/* flatpicker custome style end*/


/*bulk upload validation desgin*/

.validator,.loader-box{
    position:fixed;
    left:0;
    right:0;
    top:0;
    bottom:0;
    z-index: 10000;
    display: none;
   font-weight: 600;
   overflow: scroll;
   scrollbar-width: none;
    background-color: rgba(0,0,0,0.4);
}

.close-btn{
    background-color: #f4f9f7;
    position: absolute;
    right: 16px;
    color:#7b7979;
    font-weight: 800;
    font-size:22px;
    cursor: pointer;
    padding:5px 10px;
}
.valid-inner-box{
    position: relative;
    margin:9% 12%;
    padding:30px;
    background-color: #fcf9f9;
}

#operation-btns{
    display: flex;
    justify-content: end;
    gap:10px;
    flex-wrap: wrap;
}
/* */

/*grey btn in bulk ordr*/
.cr-btn-grey{
    background-color: #545453;
    color:white;
    border:none;
    font-weight: 600;
    padding:6px 14px;
    cursor: pointer;
}

.validate-heading{
    color:#008f3a;
    font-weight: 700;
}
/*table to show no of errors */
.excel-valid-rows{
    overflow-x:scroll ;
    scrollbar-width: none;
}
.excel-valid-rows table{
    width: 100%;
    overflow: scroll;
    text-align: center;
    font-weight: 500;
    border:2px solid #d0d0d0;
    
}
.excel-valid-rows thead{
    background-color: #d9d9d9;
    color:#737373;

}
.excel-valid-rows thead th,td{
    padding:5px;
}
.excel-valid-rows tbody{
    background-color: #f4f4f5;
    color:black;
}
.valid-no{
    color:#308f5c;
}
.invalid-no{
    color:#f0411b;
}

/*error message  ! icon*/
#excel-validation{
    display: none;
    background-color: #f4f4f5;
    border:2px solid #d0d0d0;
    padding:5px;
    border-radius: 2px;
    gap:9px;
}
.outer-circle{
    border-radius: 50%;
    width:50px;
    height:50px;
    background-color: #f4f4f5;
    display: flex;
    align-items: center;
    justify-content: center;
    border:2px solid #d0d0d0;
}
.inner-circle{
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color:white;
    font-weight: bold;
    width:40px;
    height:40px;
    background-color: #f0411b;
    
}
/*bold text error box text with ! icon */
.text-bold{
    font-weight: 700;
}
.text-grey{
    color:#737373;
}

.loader {
    border: 16px solid #918f8f; /* Light grey */
    border-top: 16px solid #59595a; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  .loaderbox{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  
}


 /*issue order form */

  .custom-issue-order-date{
    position: relative;
  }
  #individual-form .issue-order-date-label{
        width:100%;
        border-radius: 8px;
        font-size: 14px;
        padding: 4px 8px ;
        font-weight: 500;
        border: 1px solid #ccc;
        transition: all 0.3s ease;
    
  }
  /*para as heading */
  .issue-order-custom-label-p{
    margin-bottom: 5px;
    font-weight: 700;
    color: #737373;
    line-height: 18px;
    font-size: 16px;
    
  }
  .issue-order-start-date{
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    
  }


/*update issue order screen stick to top*/

  .issue-order .admin-content{
    justify-content: start;
    margin-top:30px;
    margin-bottom: 30px;
  }
  .issue-order .admin-center-container{
    padding-top:75px;
  }

/*dashboard card stick to top*/
  .supplier-row .admin-content{
    justify-content: start;
    margin-top:30px;
    padding-top:unset;
  }

/* when-screen-width-reduce-increase-table-right-side-padding */
.suppler-dash-container .supp-dash-table {
    padding-right: 30px;
}
@media only screen and (min-width: 1401px) and (max-width: 1600px) {
    .suppler-dash-container
        > .row
        > .col-12:first-child
        > a
        > button[type="button"] {
        margin-inline: 2px !important;
    }
    .suppler-dash-container > .row > .col-12 form.admin-user-form {
        gap: 2px;
    }
    .suppler-dash-container
        > .row
        > .col-12
        form.admin-user-form
        .supplier-dashboard-form-row {
        gap: 2px;
    }
    .suppler-dash-container
        > .row
        > .col-12
        form.admin-user-form
        .supplier-dashboard-form-row
        .supplier-dashboard-form
        input {
        font-size: 15px;
    }
}



/*add shadow in nav bar*/

.header{
   box-shadow:2px 2px 10px rgba(0,0,0,0.1);  /*8px 8px 8px 0px rgba(45, 45, 45, 0.25);*/
}


/*verification counter radio btn */
.admin-form-row .issue-verify{
display: none;
}
.admin-form-row .issue-verify,.admin-form-row .bulk_issue_verify{
    flex-direction: row;
    gap:5%;
    width:100%;

}
.admin-form-row .issue-verify input,.admin-form-row .bulk_issue_verify input{
    width:auto;
}

input[type="radio"] {
    accent-color: var(--primary-orange); 
  }

  #indi-form{
 display: flex;
 flex-direction: column;
  }

  /*hide counter_with_lvm_field field for isue order form */
  #counter_with_lvm_field{
 display: none;
  }

  #verification_counter_btn{
    display:none;
  }

