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

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

.select-selected {
  background-color: none;
  height: 100%;
  align-content: center;
  justify-content:center;
  align-items:center;
  text-align: center;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 1px;
  color: #000000;
  font-weight: 500;
  margin: 0px;
}

/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  content: "";
  top: 40%;
  right: 20px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #000 transparent transparent transparent;
  justify-content:center;
  align-items:center;
  font-size:24px;
}

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

/*style the items (options), including the selected item:*/
.select-items div,.select-selected {
  color: #ffffff;
  cursor: pointer;
  user-select: none;
  
}

/*style items (options):*/
.select-items {
  position: absolute;
  background-color: #ffffff;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

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