/*the container must be positioned relative:*/
.custom-select {
  position: relative;
  font-family: Outfit;
  display: inline-block;
  width: -webkit-fill-available;
}

.custom-select select {
  display: none;
}

/*hide original SELECT element:*/
.select-selected {
  color: black !important;
  background-color: white;
  border-radius: 6px;
  font-size: 16px;
  line-height: 28px;
  text-transform: uppercase;
}

/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  content: "";
  top: 12px;
  right: 10px;
  width: 25px;
  height: 25px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 15.7L6 9.69999L7.4 8.29999L12 12.9L16.6 8.29999L18 9.69999L12 15.7Z' fill='%2321272E'/%3E%3C/svg%3E");
}

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

/*style the items (options), including the selected item:*/
.select-items div, .select-selected {
  color: #000;
  padding: 10px 16px;
  cursor: pointer;
  user-select: none;
}

/*style items (options):*/
.select-items {
  border-radius: 3px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1), 0 2px 8px 0 rgba(0, 0, 0, 0.25);
  position: absolute;
  background-color: white;
  top: 110%;
  left: 0;
  right: 0;
  z-index: 99;
}

.select-selected:hover {
  background-color: #F6F6F7;
}

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

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

/*# sourceMappingURL=style.css.map */
