@import "https://cdn.bootcss.com/font-awesome/4.5.0/css/font-awesome.min.css";
select {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 325px;
  color: #cccccc;
  vertical-align: middle;
  text-align: left;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
}
.select .placeholder {
  position: relative;
  display: block;
  z-index: 1;
  border-radius: 2px;
  cursor: pointer;
  font-size: 12px;
  border:1px solid rgba(229,229,229,1);
  height: 28px;
  line-height: 28px;
  text-indent: 8px;

}
.select .placeholder:hover {
  background-color: #eee;
}
.select .placeholder:after {
  position: absolute;
  right: 4px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-family: 'FontAwesome';
  content: '\f078';
  z-index: 10;
  font-size: 12px;
  font-weight: 400;
}
.select.is-open .placeholder:after {
  content: '\f077';
}
.select.is-open ul {
  display: block;
  background-color: #eee;
}
.select.select--white .placeholder {
  background: #fff;
  color: #999;
}
.select.select--white .placeholder:hover {
  background: #fafafa;
}
.select > ul {
  display: none;
  position: absolute;
  overflow: hidden;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  top: 100%;
  left: 0;
  list-style: none;
  margin: 5px 0 0 0;
  padding: 0;
  z-index: 100;
  max-height: 180px;
  overflow: auto;
}
.select > ul > li {
  display: block;
  text-align: left;
  height: 30px;
  line-height: 30px;
  color: #999;
  cursor: pointer;
  font-size: 12px;
  text-indent: 10px;
}
.select > ul  > li:hover {
  background: #004098;
  color: #fff;
}
