  /*the container must be positioned relative:*/
.custom-select {
  position: relative;
  font-family: Arial;
}

.custom-select select {
  display: none; /*hide original SELECT element:*/
}

.select-selected {
  background-color: #848484;
}

/*style the arrow inside the select element:*/
.select-selected:after {background: url("custom-select-ok.svg") no-repeat center; background-size: 30px 15px;
  position: absolute;
  content: "";
  top: 20px;
  right: 10px;
  width: 36px;
  height: 18px;
 
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
background: url("custom-select-up-ok.svg") no-repeat center; background-size:30px 15px;
  top: 14px;
}

/*style the items (options), including the selected item:*/
.select-items div,.select-selected {height: 52px;display: flex; align-items: center;
  color: #ffffff;
  padding: 0 16px; border-radius: 15px;-webkit-border-radius: 15px;-moz-border-radius: 15px;
  border: 1px solid transparent;
  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:#848484;
  top: 100%;
	height: 260px; overflow: auto;
  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);
}