.customSelect { 
/* This is the default class that is used */
/* Put whatever custom styles you want here */
  /*color:#0087ff;*/
  width:100%!important;
  /*padding-left:5px;*/
}


.customSelect.customSelectHover {
/* Styles for when the select box is hovered */
}

.customSelect.customSelectOpen {
/* Styles for when the select box is open */

}

.customSelect.customSelectFocus {
/* Styles for when the select box is in focus */

}

.customSelect.customSelectDisabledOption {
/* Styles for when the selected item is a disabled one */
}

.customSelect.customSelectDisabled {
/* Styles for when the select box itself is disabled */
}

.customSelectInner {
  display:block; width:100%!important;
  padding-left:5px;
  /*color:#0087ff;*/
/* You can style the inner box too */
}
.customSelectInner::after {
  font-family:'fontello';
  content: "\e806"; /* Checkbox Checked */
  /*  margin-right:-10px;*/
  pointer-events: none;
  text-align: right;
  float:right
}