/* =Custom Select Menu */
.custom-select-menu {
  display: inline-block;
  margin-bottom: 8px;
  outline: none;
  position: relative;
  width: 100%;
}
.custom-select-menu label {
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}
.custom-select-menu label,
.views-exposed-widget select,
.views-exposed-widget .form-text {
  border: 3px solid #dfdedc;
  cursor: pointer;
  color: #5d584f;
  display: inline-block;
  font-weight: bold;
  height: 38px;
  padding: 5px 28px 5px 8px;
  position: relative;
  /* Prevents text-selection on the label. */
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  width: 100%;
}
.views-exposed-form .views-exposed-widget .form-submit {
  margin-top: 20px;
}

/* Here we're adding a down arrow to make it look more like a select menu. */
.custom-select-menu label:after {
  border-top: 15px solid #726d66;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  content: '';
  position: absolute;
  right: 10px;
  top: 8px;
}
.custom-select-menu label.opened:after {
  border-bottom: 15px solid #726d66;
  border-top: 0;
}

/* If you don't want the menu to be too tall, then
give it a max-height, but don't forget to allow it to
scroll so all the options are visible. */
.custom-select-menu ul {
  background: #fff;
  border: 3px solid #dfdedc;
  border-top: 0;
  left: 10px;
  list-style: none;
  margin: 0 -10px;
  overflow-x: hidden;
  padding: 0;
  position: absolute;
  top: 32px;
  width: 100%;
  z-index: 2;
}
.custom-select-menu  li {
  background-color: #fff;
  font-size: 16px;
  list-style: none;
  cursor: pointer;
  padding: 3px 8px;
}
.custom-select-menu  li:nth-child(2) {
  margin-top: 5px;
}
.custom-select-menu  li:last-child {
  margin-bottom: 15px;
}

/* When you hover over an option we'll change the
background color. We'll do the same when an option
is selected. */
.custom-select-menu li:hover,
.custom-select-menu .selected {
  background-color: rgba(0,0,0,.05);
}