/* The container must be positioned relative: */
.custom-select {
  position: relative;
  font-family: 'Gotham-Book';
  width: 100%;
  height: 100%;
}
.custom-select select {
  display: none; /*hide original SELECT element: */
}
.select-selected:before {
  content: "";
  width: 50px;
  height: 100%;
  background: #44546b;
  position: absolute;
  right: 0;
  top: 0;
}
/* Style the arrow inside the select element: */
.select-selected:after {
  position: absolute;
  content: "\f078";
  top: 14px;
  right: 16px;
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  font-size: 16px;
  color: white;
  transition: all 0.5s ease;
}
/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
  transform: rotate(180deg);
}
/* style the items (options), including the selected item: */
.select-items {
  padding: 0;
}
.select-items div, .select-selected, .select-items li {
  color: #44546b;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  text-align: left;
}
.select-items li:before, .select-items li::marker {
  display: none;
  color: transparent;
}
.select-items li {
  padding: 0
}
.select-items li a {
  display: block;
  padding: 8px 16px;
}
.select-selected {
  background-color: #fff;
  height: 100%;
  padding: 13px 60px 13px 18px;
}
/* Style items (options): */
.select-items {
  position: absolute;
  background-color: #fff;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
/* 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);
}
.same-as-selected {
  background: #44546b;
  color: #fff !important;
}