.react-select__control {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 0;
  height: 45px;
  min-height: 45px;
  box-shadow: none;
  cursor: pointer;
  padding: 0 10px;
}

.react-select__value-container {
  padding: 0;
  font-size: 14px;
  color: #555;
}

.react-select__placeholder {
  color: #999;
  font-size: 14px;
}

.react-select__input {
  margin: 0;
  padding: 0;
  font-size: 14px;
}

.react-select__indicator {
  color: #555;
  padding: 0 6px;
}
.react-select__indicator:hover {
  color: #000;
}

.react-select__indicator-separator {
  display: none;
}

.react-select__menu {
  border: 1px solid #ddd;
  border-radius: 0;
  margin-top: 2px;
  z-index: 9999;
}

.react-select__option {
  padding: 8px 12px;
  font-size: 14px;
  cursor: pointer;
}

.react-select__option--is-focused {
  background-color: #f5f5f5;
}

.react-select__option--is-selected {
  background-color: #333;
  color: #fff;
}
