/*CUSTOM SELECT BOX*/
/*the container must be positioned relative:*/
.custom-select {
  position: relative;
  font-family: Arial;
  background-color: #edede7;
  padding-left: 10%;
  padding-right: 10%;
  margin-bottom: 20px;
  border-radius: 10px;
  height: 35px;
}

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

.select-selected {
  background-color: #edede700;
  margin-top: -6px;
  height: 30px;
  font-size: 12px;
}

/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  content: "";
  top: 5px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: transparent transparent transparent transparent;
}

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

/*style the items (options), including the selected item:*/
.select-items div,.select-selected {
  color: #454545;
  padding: 8px 16px;
  border: 1px solid transparent;
  cursor: pointer;
  user-select: none;
  font-size: 12px;
  border-radius: 10px;
}

/*style items (options):*/
.select-items {
  position: absolute;
  background-color: #edede7;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  border-radius: 10px;
}

/*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);
}
/*End select box*/















/*the container must be positioned relative:*/
.select2 {
  position: relative;
  font-family: Arial;
}

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

.select2-selected {
  background-color: DodgerBlue;
}

/*style the arrow inside the select element:*/
.select2-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}

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

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

/*style items (options):*/
.select2-items {
  position: absolute;
  background-color: DodgerBlue;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

/*hide the items when the select box is closed:*/
.select2-hide {
  display: none;
}

.select2-items div:hover, .same-as-selected2 {
  background-color: rgba(0, 0, 0, 0.1);
}










.select-simple{
  background-color: #fff;
  border: 2px solid #efefef;
}