/* 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: #FFEF5E;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}
.select-selected.active{
	background-color: #fff;
}
@media screen and (max-width: 767px) {
	.select-selected {
		font-size: 13px;
	}
}

/* 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: #333 transparent transparent transparent;
}

.select-selected.select-arrow-active{
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #333 transparent;
  top: 7px;
}

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

/* Style items (options): */
.select-items div{
	transition: color .4s ease;
}
.select-items {
  position: absolute;
  background-color: #FFEF5E;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  transition: all .4s ease;
  transform: scaleY(1);
  transform-origin: left top;
  box-sizing: border-box;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  overflow: hidden;
}
.select-items.active {
	background-color: #fff;
}
.select-items.active div{
	border-bottom: 1px solid #ddd;
	padding-left: 0;
	padding-right: 0;
	margin-left: 20px;
	margin-right: 20px;
}
.select-items.active div:first-child{
	border-top: 1px solid #ddd;
}
.select-items.active div:last-child{
	border-bottom: none;
}
@media screen and (max-width: 767px) {
	.select-items {
		font-size: 13px;
	}
}


/* Hide the items when the select box is closed: */
.select-hide {
  opacity: 0;
  pointer-events: none;
  transform: scaleY(0);
}

.select-items div:hover, .same-as-selected {
  color: #13949a;
}