/* credit - http://codepen.io/dannydev/pen/bmoGj - Select Wrapper (for befores & afters) */
.custom-select {
  /* wrapper style */
  position: relative;
  display: block;
  /*max-width: 400px;*/
  min-width: 180px;
  margin: 0 auto;
  border: 1px solid rgba(0,0,0,0.3);
  font-weight: 300;
  /* the down arrow */
}
.custom-select select {
  /* Select Reset */
  border: none;
  outline: none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  margin: 0;
  display: block;
  width: 100%;
  /* custom select appearance */
  /*padding: 12px 55px 15px 15px;
  font-size: 14px;*/
}
.custom-select:after {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 100%;
  line-height: 36px;
  /*content: '\FFEC';*/
  content: url('../img/selectArrow2.svg');
  text-align: center;
  /*z-index: -1;*/
  pointer-events: none;
  background: #F5A71C;
  color: #fff;
  font-size: 24px;
}
/*
body {
  margin-top: 80px;
}*/
