.custom-select {
  position: relative;
  font-family: Arial;
}

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


/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  content: "\e901";
  top: 11px;
  right: 112px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  font-family: "skyroom" !important;
  color: #23b9d7;
  transform: rotate(269deg);
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 11px;
}

/*style the items (options), including the selected item:*/
.select-items div,
.select-selected {
  color: #1e416e;
  font-weight: 700;
  padding: 15px 20px;
  cursor: pointer;
  user-select: none;
  border-radius: 10px;
  font-size: 15px;
  width: 100%;
}
.select-items div {
  border-radius: 0;
  color: #979797;
}
.select-items div:last-child {
  border-radius: 0 0 10px 10px;
}
.select-selected.select-arrow-active {
  border-radius: 10px 10px 0 0;
}
/*style items (options):*/
.select-items {
  background-color: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1;
  right: 0;
  font-size: 15px;
  border-radius: 0 0 10px 10px;
}


/*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);
}
