select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  outline: 0;
  box-shadow: none;
  border: 1px solid #e6dfd8 !important;
  background: white;
  background-image: none;
}
/* Remove IE arrow */
select::-ms-expand {
  display: none;
}
/* Custom Select */
.select, .select_loading{
  position: relative;
  display: flex;
  width: 20em;
  height: 3em;
  line-height: 3;
  background: white;
  overflow: hidden;
  border-radius: .25em;
}
select {
  flex: 1;
  padding: 0 .5em;
  color: black;
  cursor: pointer;
}
/* Arrow */
.select::after {
  content: '\25BC';
  /* content: 2B6E; */
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 1em;
  /*background: #eee;*/
  cursor: pointer;
  pointer-events: none;
  -webkit-transition: .25s all ease;
  -o-transition: .25s all ease;
  transition: .25s all ease;
}


/* Transition */
.select:hover::after {
  color: #f39c12;
  background: #eee;
}

.select_loading::after { 
  /*content: '\2B6E'; */
  content: '\f110' !important;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 1em;
  cursor: pointer;
  pointer-events: none;
  /*-webkit-transition: .1s all ease;
  -o-transition: .1s all ease;
  transition: .1s all ease;
  animation: loading 1s linear 0s infinite;*/
  -webkit-animation:spin 4s linear infinite;
    -moz-animation:spin 4s linear infinite;
    animation:spin 4s linear infinite;
}

@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }

.select_loading:hover::after{

}


/* Search select */

.select2-selection{
  height: 43px !important;
  border-radius: 10px !important;
  border-color: #e6dfd8 !important;
}
