/*the container must be positioned relative:*/
.custom-select {
  position: relative;
  font-family: Graphik;
  font-weight: bold;
  border: solid 8px black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 2rem;
  min-width: 400px;
  height: 50px;
  margin: 8px 16px;
}

/*add black background to the arrow icon*/
.arrow-bg {
  background: black;
  width: 50px;
  height: 52px;
  position: absolute;
  z-index: -1;
  -ms-flex-item-align: end;
      align-self: flex-end;
  right: -1px;
  top: -1px;
}

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

.select-selected {
  background-color: transparent;
}

/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  content: "";
  top: 22px;
  right: 10px;
  width: 0;
  height: 0;
  border: 11px solid transparent;
  border-color: #fff 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 {
  padding: 8px 16px;
  border: 1px solid transparent;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/*style items (options):*/
.select-items {
  position: absolute;
  background-color: white;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  border-right: 8px solid;
  border-left: 8px solid;
  border-bottom: 8px solid;
  margin-right: -8px;
  margin-left: -8px;
}

.border-bottom {
  border-bottom: solid 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);
}
/*# sourceMappingURL=dropdown.css.map */