.select-hidden {
  display: none;
  visibility: hidden;
  padding-right: 10px;
}

.select {
  cursor: pointer;
  display: inline-block;
  position: relative;
  font-size: 16px;
  color: #f6bb43;
  width: 220px;
  height: 40px;
}

.select-styled {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color:transparent;
  padding: 8px 15px;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
    border: 2px solid #f6bb43;
    border-radius: 2px;
}
.select-styled:after {
  content: "\f107";
  position: absolute;
  top: 10px;
  right: 10px;
    font-family: FontAwesome;
}
.select-styled:hover {
  background-color: #f6bb43;
    color: #fff;
}
.select-styled:active, .select-styled.active {
  background-color: #f6bb43;
    color: #fff;
}
.select-styled:active:after, .select-styled.active:after {
content: "\f106";
}

.select-options {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 999;
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: #f6bb43;
    border: 1px solid #fff;
    border-top: 0;
}
.select-options li {
  margin: 0;
  padding: 12px 15px;
  text-indent: 0;
  border-top: 1px solid #fff;
  -moz-transition: all 0.15s ease-in;
  -o-transition: all 0.15s ease-in;
  -webkit-transition: all 0.15s ease-in;
  transition: all 0.15s ease-in;
    color: #fff;
}
.select-options li:hover {
  color:#f6bb43;
  background: #fff;;
}
.select-options li[rel="hide"] {
  display: none;
}

