.ess-select {
  position: relative;
  width: 100%;
  max-width: 375px;
}
.ess-select select {
  display: none;
}
.ess-select__styled {
  border: 1px solid #D6D6D6;
  border-radius: 3px;
  background-color: #fff;
  position: relative;
  padding: 8px 32px 8px 16px;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 14px;
}
.ess-select__styled:after {
  content: '\f078';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.ess-select__styled.active {
  border-radius: 3px 3px 0 0;
}
.ess-select ul {
  position: absolute;
  top: 37px;
  left: 0;
  background-color: #fff;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  display: none;
  border: 1px solid #D6D6D6;
  border-top: none;
  border-radius: 0 0 3px 3px;
  z-index: 1;
  max-height: 250px;
  overflow-y: auto;
}
.ess-select ul li {
  padding: 8px 16px;
  word-break: break-all;
  font-size: 14px;
}
.ess-select ul li.active {
  background-color: #2177AA;
  color: #fff;
}

@media (min-width: 768px) {
  .ess-select {
    width: 400px;
  }
  .ess-select__styled {
    font-size: 16px;
  }
  .ess-select ul {
    top: 41px;
  }
  .ess-select ul li {
    font-size: 16px;
  }
}
