/* The container must be positioned relative: */
.custom-select {
  position: relative;
  font-weight: 400;
  
}

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

.select-selected {
  background-color: #ffffff;
  color: #333333 !important;
  border: 3px solid #2b3f49 !important ;
}

/* Style the arrow inside the select element: */
.select-selected::after {
	
  position: absolute;
  content: url("chevron-right.svg");
  top: 23px;
  right: 10px;
  width: 11px;
  height: 11px;
  color: red;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}


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

/* Style items (options): */
.select-items {
  position: absolute;
  background-color: #dcdcde;
  color: #333333;
  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);
}