/*the container must be positioned relative:*/
.custom-select,
.desc-custom-select,
.vis-custom-select,
.loc-custom-select,
.df-custom-select,
.srd-custom-select {
  position: relative;
  font-family: Arial;
  width: 100% !important;
}

.custom-select select,
.desc-custom-select select,
.vis-custom-select select,
.loc-custom-select select,
.df-custom-select select,
.srd-custom-select select {
  display: none; /*hide original SELECT element:*/
}

.select-selected {
  border-radius: 5px;
  background: #ffffff;
  font-size: 12px;
  color: #0C9EA9 !important;
  border:1px solid #0C9EA9 !important;
  font-family: SourceSansPro-Bold;
    margin-top: 10px;
}

/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  content: "";
  top: 15px;
  right: 10px;
  width: 0;
  height: 0;
  border: 4px solid transparent;
  border-color: #009ed6 transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #009ed6  transparent;
  top: 10px;
}

/*style the items (options), including the selected item:*/
.select-items div,.select-selected {
  color: #0C9EA9;
  padding: 6px;
  cursor: pointer;
  user-select: none;
  border-bottom: 1px solid #0000001a;
}

/*style items (options):*/
.select-items {
  position: absolute;
  box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.15);
  background-color: #ffffff;
  padding: 4px 6px;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  border-radius: 4px;
  margin-top:4px;
}

/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color:#0c9ea933;
}