/*the container must be positioned relative:*/
.custom-select {
  position: relative;
  font-family: Arial;
}

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

.custom-select-label {
  background: transparent;
  border: 1px solid #e0e0e0;
  padding: 12px 16px;
  border-radius: 99px;
  display: flex;
  justify-content: space-between;
  align-items: center;

  font-family: "Work Sans";
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
  color: #636363;
  height: 48px;

  
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.custom-select i {
  color: #696969;
}

.custom-select-label.select-arrow-active {
  border-color: #127BE8;
}

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

/*style the items (options), including the selected item:*/
.select-items div {
  color: #000;
  padding: 8px 16px;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  user-select: none;
}

/*style items (options):*/
.select-items {
  position: absolute;
  background-color: white;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  max-height: 300px;
  overflow-y: auto;
  padding: 10px 0;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
}

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