/* Custom Select - Replaces jQuery selectbox plugin */

/* Vendor prefix for appearance */
.custom-select-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.custom-select-wrap::after {
  content: '';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #666;
  pointer-events: none;
}

.custom-select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  padding: 8px 36px 8px 12px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background: #fff;
  font-size: 14px;
  cursor: pointer;
  outline: none;
}

.custom-select-wrap select:focus {
  border-color: #999;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}
