/*the container must be positioned relative:*/
.koen-custom-select {
  position: relative;
  font-family: Arial;
  float: none !important;
}
.koen-custom-select select {
  display: none; /*hide original SELECT element:*/
  float: none !important;
}
div.koen-select-selected {
  background-color: white;
  float: none !important;
  margin-top:-5px !important;
  padding: 5px 0px;  
}
/*style the arrow inside the select element:*/
.koen-select-selected:after {
  position: absolute;
  content: "";
  top: 10px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #40a5c2 transparent transparent transparent;
  float: none !important;
}
/*point the arrow upwards when the select box is open (active):*/
.koen-select-selected.koen-select-arrow-active:after {
  border-color: transparent transparent #40a5c2 transparent;
  top: 7px;
  float: none !important;
}
/*style the items (options), including the selected item:*/
.koen-select-items div,.koen-select-selected {
  margin: 0px !important;
  color: #4a4a4a;  
  cursor: pointer;
  float: none !important;
}
/*style items (options):*/
.koen-select-items {
  position: absolute;
  background-color: white;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;  
  border: solid thin #e9e9e9;
  float: none !important;
}

.koen-select-items div{
    padding: 5px .75rem;  
}

/*hide the items when the select box is closed:*/
.koen-select-hide {
  display: none;
  float: none !important;
}
.koen-select-items div:hover, .koen-same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
  float: none !important;
}