/*the container must be positioned relative:*/
.as-custom-select {
  position: absolute;
  font-family: Arial;
  margin-top: 30px;
  margin-bottom: 40px;
}

.as-custom-select select {
  display: none; /*hide original SELECT element:*/
}

.select-selected {
  font-family: "Ubuntu bold";
  background-color: #01205C;
  border-radius: 25px;
  font-size:12px;
  width: 180px;
  height: 16px;
}

/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  font-family :"FontAwesome";
  content: "\f078";
  top: 4px;
  right: 17px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
  font-family :"FontAwesome";
  content: "\f077";
}
.select-selected.select-arrow-active {
  border-radius :  25px 25px 0 0 ;
}
/*style the items (options), including the selected item:*/
.select-items div,.select-selected {
  color: #ffffff;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  user-select: none;
}

/*style items (options):*/
.select-items {
  font-family: "Ubuntu bold";
  position: absolute;
  background-color: #01205C;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  border-radius: 0 0 25px 25px;
  width: 214px;
  font-size:12px;
  max-height: 530px;
  overflow-y: auto;
}

/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}