.orderpage{
  width: 1300px;
    padding-top: 0px;
    padding-right: 5px;
    padding-left: 7px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-size: small;
    background-color: rgb(247, 243, 237);
    margin-top: 30px;
}
.in[type="text"] {
    border: 2px solid #aaa;
    border-radius: 5px;
    margin: 8px 0;
    outline: none;
    padding: 8px;
    box-sizing: border-box;
    transition: 0.3s;
    display: block;
    height: 3vh;
    font-size: small;
  
    margin-top: -3px;
  }
  
  .in[type="text"]:focus {
    border-color: dodgerBlue;
    box-shadow: 0 0 8px 0 dodgerBlue;
  }


 /*  /
  /feComponentT */

  .main1 {
    background: rgb(253, 241, 226);
  
  }
  
  
  .main1:hover{
     box-shadow: 14px 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    }
  .panelinfo{
     margin-top:15px;
     padding: 5px 10px;
     font-size: large;
     color:white;
  
     border-bottom: 3px solid rgb(8, 8, 8) ;
     
     background:rgb(0, 28, 104);
     border-top: 1px solid #ddd;
     /* border-bottom-right-radius: 12px;
     border-bottom-left-radius: 12px;
     border-top-left-radius: 12px;
     border-top-right-radius: 12px; */
     
    }
  
    .panel-heading1{
     padding: 3px 3px;
     font-size: small;
     background:rgb(41, 113, 219);
     text-align: center;
     border-top: 6px solid rgb(243, 242, 239) ;
     border-bottom: 6px solid rgb(243, 242, 239) ;
     color: rgb(255, 248, 248);
    /* border-radius: 20px; */
    }
  
  
    /*table*/
  
  
    /* input filed */
    .in[type="text"] {
       border: 2px solid #aaa;
       border-radius: 5px;
       margin: 8px 0;
       outline: none;
       padding: 8px;
       box-sizing: border-box;
       transition: 0.3s;
        display: block;
       height: 4vh;
       font-size:small ;
       margin-top: -3px;
     }
     .in[type="text"]:focus {
       border-color: rgba(255, 188, 3, 0.822);
       box-shadow: 0 0 8px 0 dodgerBlue;
     }
     .my-custom-scrollbar {
       position: relative;
       height: 159px;
       overflow: auto;
   }
   
   .table-wrapper-scroll-y thead th {
       font-size: 9px;
       position: sticky;
       top: 0;
       background-color: rgb(7, 172, 172);
       color: white;
   }
   
   .table-wrapper-scroll-y {
       display: block;
       font-size: 11px;
       text-align: center;
   }
   
  
   .table-wrapper-scroll-y thead th:nth-child(even) {
       background-color:#324960;
       color: white;
   }
   
   .arrow{
    position: relative;
    width:0px;
    background: green;
    height:5px;
    line-height: 0px;
    margin-bottom:0px; 
    text-align:center;
    color:#fff;
  }
  
  /*right arrow*/
  
  .arrow-right:after{
      content: "";
      position: absolute;
      right: -20px;
      top: 0;
      border-top: 10px solid transparent;
      border-bottom: 10px solid transparent;
      border-left: 20px solid green; 
  }