
/* Reset Select */
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  outline: 0;
  box-shadow: none;
  border: 0 !important;
  background: #cdcdcd;
  background-image: none;
}
/* Custom Select */
.select {
  position: relative;
  height: 2.3em;
  line-height: 2.3;
  background: #cdcdcd;
  overflow: hidden;
  border-radius: .20em;
}
select {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0 0 0 .5em;
  color: #0d484f;
  cursor: pointer;
}
select::-ms-expand {
  display: none;
}
/* Arrow */
.select::after {
  content: '\25BC';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  padding: 0 1em;
  background: #EEEEEE;
  pointer-events: none;
}
/* Transition */
.select:hover::after {
  color: #FFFFFF;
}
.select::after {
  -webkit-transition: .25s all ease;
  transition: .25s all ease;
}