.select-hidden {
  display: none;
  visibility: hidden;
  padding-right: 10px;
}

.select {
  display: inline-block;
  width: 210px;
  position: relative;
  cursor: pointer;
}

.select-styled {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: #667085;
  border: 1px solid #D0D5DD;
  border-radius: 4px;
  padding: 10px 16px;
  -webkit-transition: all 0.15s ease-in;
  transition: all 0.15s ease-in;
}
.select-styled:before {
  font-family: "Font Awesome 6 Pro";
  content: "\e0ae";
}
.select-styled:after {
  font-family: "Font Awesome 6 Pro";
  content: "\f078";
}
.select-styled.active:after {
  content: "\f077";
}

.select-options {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 999;
  list-style: none;
  background-color: #fff;
  border: 1px solid #DBDBDB;
  border-radius: 3px;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.14);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.14);
  padding: 10px 16px;
}

.select-options li {
  -webkit-transition: all 0.15s ease-in;
  transition: all 0.15s ease-in;
  padding: 12px 0;
}

.select-options:before {
  border-bottom-color: #dbdbdb !important;
  border-width: 8px !important;
  margin-left: -8px;
}

.select-options:after {
  border-bottom-color: #fff !important;
  border-width: 6px !important;
  margin-left: -6px;
}

.select-options:after, .select-options:before {
  bottom: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}