.geosuggest {
  font-size: 16px;
  position: relative;
  width: 100%;
  margin: 0 auto;
  text-align: left;
}

.geosuggest__input {
  width: 100%;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  box-shadow: 0 0 0 0 rgb(198, 223, 255);
  font-size: 16px; 
  line-height: 1.5715;
  padding: 6.5px 11px;
  transition: box-shadow 0.2s ease;
}

.geosuggest__input::-webkit-input-placeholder {  
  color: #a9a9a9;
  opacity: .7;
}

.ant-form-item-has-error.geosuggest__input {
  border: 1px solid red;
}

.geosuggest__input:focus {
  box-shadow: 0 0 0 0.2rem rgb(198, 223, 255);
  outline: 0;
  transition: box-shadow 0.2s ease;
}

.geosuggest__suggests {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 25em;
  padding: 0;
  background: #fff;
  box-shadow: 0 0 0 0.2rem rgb(198, 223, 255);
  margin-top: 0.2rem;
  overflow-x: hidden;
  overflow-y: auto;
  list-style: none;
  z-index: 5;
  opacity: 1;
  transition: max-height 0.2s ease,
    opacity 0.15s ease;
}

.geosuggest__suggests--hidden {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.2s ease,
    opacity 0.15s ease;
}

.geosuggest__item {
  font-size: 14px;
  padding: 0.5em 0.65em;
  cursor: pointer;
}

.geosuggest__item:not(:last-child) {
  box-shadow: 0 1px rgba(#000, .1);
}

.geosuggest__item:hover,
.geosuggest__item:focus {
  background: #f5f5f5;
}

.geosuggest__item--active {
  background: #267dc0;
  color: #fff;
}

.geosuggest__item--active:hover,
.geosuggest__item--active:focus {
  background: #ccc;
}

.geosuggest__item__matched-text {
  font-weight: bold;
}