.custom-select2 {
  position: relative;
     width: 28rem;
    border: 1px solid;
    margin-bottom: 4px;
}

#mySelect {
  padding: 10px;
  border: none;
  border-radius: 5px;
  width: 100%;
  cursor: pointer;
  font-family: Outfit;
  border-radius: 0;
  background:none;
}

#searchInput {
  position: absolute;
  top: 0;
  left: 0;
  padding: 6px 10px;
  border: none;
  border-radius: 5px;
  width: 100%;
  cursor: text;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  font-family: Outfit;
  outline: none;
  border-radius: 0;
  border-bottom: 1px solid;
}

#searchInput:focus {
  opacity: 1;
}

#optionsList {
  position: absolute;
  top: 100%;
  left: 0;
  font-size: 13px;
  background-color: #fff;
  /*border: 1px solid #ddd;*/
  /* padding: 10px; */
  margin-top: 3px;
  width: 100%;
  z-index: 1;
  list-style: none;
  padding: 0;
  /* text-align: center; */
}

#optionsList li {
  padding: 10px;
  margin: 0;
  cursor: pointer;
}

#optionsList li:hover {
  background-color: #f0f0f0;
}