/*the container must be positioned relative:*/
.custom-select {
  position: relative;
  font-family: Arial;
  margin-left:15px;
    width:54px;
}
.custom-select select {
  display: none; /*hide original SELECT element:*/
}
.select-selected {
  background-color: #ffffff;
  height:35px;
  border: 1px solid #e4e4e4;
  border-radius:4px;
      text-align: center;
    padding-left: 0px !important;

}
/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  content: "";
  top: 17px;
  right: 10px;
  width: 0;
  height: 0;
  border: 5px solid #444;
  border-color: #444 transparent transparent transparent;
}
/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #444 transparent;
  top: 11px;
}
/*style the items (options), including the selected item:*/
.select-items div,.select-selected {
  color: #000000;
  padding: 7px 17px;
 border-bottom: 1px solid #e4e4e4;
  cursor: pointer;

}

.select-items div {
  height:37px;
  text-align: center;
  vertical-align: middle;
  background-color: rgb(255, 255, 255);
}

/*style items (options):*/
.select-items {
  position: absolute;
  background-color: #ffffff;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  border: 1px solid #888888;
}
/*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);
}