.tr-styls
{
	background-color:gray;color:#fff;
}
.tr-styls1
{
	background-color:#ff530d;color:#fff;
}
label.required::after {
  content: '*';
  margin-left: 4px;
  color: red;
}
.selectdiv {
  position: relative;
  /*Don't really need this just for demo styling*/
  
  float: left;
  min-width: 200px;
  margin: -5px 4%;
  height:43px;
}

.selectdiv:after {
    content: '\f078';
    font: normal normal normal 17px/1 FontAwesome;
    /* color: #0ebeff; */
    right: 11px;
    top: 6px;
    height: 34px;
    padding: 15px 0px 0px 8px;
   
    position: absolute;
    pointer-events: none;
}

/* IE11 hide native button (thanks Matt!) */
select::-ms-expand {
display: none;
}

.selectdiv select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* Add some styling */
  
  display: block;
  width: 100%;
  max-width: 320px;
  height: 50px;
  float: right;
  margin: 5px 0px;
  padding: 0px 24px;
  font-size: 16px;
  line-height: 1.75;
  color: #333;
  background-color: #ffffff;
  background-image: none;
  /* border: 1px solid #0ebeff; */
  -ms-word-break: normal;
  word-break: normal;
}