.select2-container {
  width: 100%;
}
.select2-results__option:before {
  content: "";
  display: inline-block;
  margin-right: 20px;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 4px;
  border: 2px solid #e9e9e9;
}
.select2-results__option[aria-selected=true]:before {
  content: "\f00c";
  display: inline-block;
  padding-left: 3px;
  background-color: #007bff;
  color: #fff;
  font-family:fontAwesome;
  border: 0;
}
.select2-container--default .select2-results__option[aria-selected=true] {
	background-color: #fff;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
	background-color: #eaeaeb;
	color: #272727;
}
.select2-container--default .select2-selection--multiple {
  border-width: 1px;
  
}
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-radius: 4px;
}
.select2-container--open .select2-dropdown--below {
	border-radius: 6px;
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.select2-selection__choice {
  display: none; 
}
::-webkit-input-placeholder { /* WebKit, Blink, Edge */
  color:    rgb(0, 0, 0) !important;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
 color:    rgb(0, 0, 0) !important;
 opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
 color:    rgb(0, 0, 0) !important;
 opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
 color:    rgb(0, 0, 0) !important;
}
::-ms-input-placeholder { /* Microsoft Edge */
 color:    rgb(0, 0, 0) !important;
}
::placeholder { /* Most modern browsers support this now. */
 color:    rgb(0, 0, 0) !important;
}