// fix the text in input control tp make place holder go right
::-webkit-input-placeholder { /* chrome, safari */
    text-align: right;
 }
 
 :-moz-placeholder { /* Firefox 18- */
    text-align: right;  
 }
 
 ::-moz-placeholder {  /* Firefox 19+ */
    text-align: right;  
 }
 
 :-ms-input-placeholder {  /* Internet Explorer */
    text-align: right; 
 }

 .input-group {
   position: relative;
   display: -ms-flexbox;
   display: flex;
   -ms-flex-wrap: wrap;
   flex-wrap: wrap;
   -ms-flex-align: stretch;
   align-items: stretch;
   width: 100%;
   justify-content: center;
}

table,thead,tr,tbody,th,td {
  text-align: center;
}

.table td {
  text-align: center;
}

/* input[placeholder] {
    text-align: right;
} */


