@import "https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css";

.select {
  position: relative;
  display: block;

  width: 100%;
  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;
  background-color: #393d41;
  z-index: 1;
  cursor: pointer;
}
.select .placeholder:hover {
  background: #34383c;
}
.select.is-open ul {
  display: block;
}
.select.select--white .placeholder {
  background: #fff;
  color: #000;
}
/*
.select.select--white .placeholder:hover {
  background: #fafafa;
}
*/
.select ul {
  display: none;
  position: absolute;
  overflow: hidden;
  width: 100%;
  background: #fff;
  top: 100%;
  left: 0;
  list-style: none;
  padding: 0;
  z-index: 50;
}
.select ul li {
  display: block;
  text-align: left;
  color: #000;
  cursor: pointer;
  text-align: center;
  padding: 5px 0;
}

