/*the container must be positioned relative:*/
.custom-select {
  position: relative;
  font-family: Mulish;
}

.custom-select select {
  display: none; /*hide original SELECT element:*/
}

.select-selected {  
  background-color: #E5EAEE80;
  
}

/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: var(--color-brand) transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}

/*style the items (options), including the selected item:*/
.select-items div,.select-selected {
  color: #000000;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  user-select: none;
}
.select-selected {
	color: var(--color-brand);
	border: 1px solid var(--color-brand);
	background-color: white;
	border-radius: 24px;
}

/*style items (options):*/
.select-items {
  position: absolute;
  top: 100%;
  left: -3px;
  right: -3px;
  z-index: 99;
  padding-top: 38px;
  margin-top: -40px;
  background: transparent;
  border-top: none;
  border-radius: 24px;
  padding-bottom: 2px;
  overflow: hidden;
  border: 3px solid #BFD3E8;
  box-shadow: 0px 4px 4px 0px #00000026;
}
.select-items div {
	background-color: white;
}
.select-selected:before {
	content: url('../img/download-blue.png');
	margin-right: 16px;
}


/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: #fdfcfc;
}