table {
  width : 100%;
  border : none;

  thead {

    tr {
      
      th {
        padding : 15px 20px;
        color : @black;
        text-transform : uppercase;
        font-size : 12px;
        font-weight : normal;
        text-align : left;
      }      

    }

  }

  tbody {
    
    tr {

      &:nth-child(odd) {
        background-color : #f0f0f0;
      }
      
      td {
        padding : 15px 20px;
        color : @grey;
        font-size : 14px;
        font-weight : normal;
        font-family: Arial, Helvetica, sans-serif;

        &.waiting {
          color : @grey;
        }

        &.shipped {
          color : #06bd9d;
        }

        &.making {
          color : @black;
        }

        input {
          width : 40px;
          padding : 10px !important;
        }
      }

    }

  }

}