/*the container must be positioned relative:*/
.custom-select {
  position: relative;
  font-family: inherit;
  font-size: 0.8rem;
  /*style the arrow inside the select element:*/
  /*point the arrow upwards when the select box is open (active):*/
  /*style the items (options), including the selected item:*/
  /*style items (options):*/
  /*hide the items when the select box is closed:*/
}
.custom-select select {
  display: none;
  /*hide original SELECT element:*/
}
.custom-select .select-selected {
  background-color: var(--secondary-color);
  border-radius: 5px;
}
.custom-select .select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}
.custom-select .select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 8px;
}
.custom-select .select-items div,
.custom-select .select-selected {
  color: var(--mid-color-2);
  padding: 0 5px;
  height: 37px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.custom-select .select-selected {
  color: var(--mid-color-1);
}
.custom-select .select-items {
  position: absolute;
  background-color: var(--mid-color-1);
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  border-radius: 5px;
  box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.2);
}
.custom-select select-items div,
.custom-select .same-as-selected {
  border-radius: 5px;
}
.custom-select .select-hide {
  display: none;
}
.custom-select .select-items div:hover,
.custom-select .same-as-selected {
  background-color: var(--dull-blue);
}/*# sourceMappingURL=custom_dropdown.css.map */