

.typeahead__container {
  width: 100%;
  z-index: 103;
}
.typeahead__container .typeahead__field {
  display: flex;
  height: 25px;
  font-family: 'EB Garamond', 'Times New Roman', serif;
  font-size: 13px;
}
.typeahead__container .typeahead__field .typeahead__query {
  flex-grow: 1;
  position: relative;
  background-color: #efefef;
  /*.typeahead__hint {
                left: 0;
                //top: -15px !important;

            }*/

}
.typeahead__container .typeahead__field .typeahead__query .typeahead__input {
  width: 100%;
  height: 100%;
  padding: 0 7px;
  background-color: transparent;
  color: #333333;
  border-width: 0;
  border-radius: 0;
}
.typeahead__container .typeahead__field .typeahead__query .typeahead__cancel-button {
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
  padding: 0 5px;
  color: black;
  visibility: hidden;
  cursor: pointer;
}
.typeahead__container .typeahead__field .typeahead__button {
  height: 100%;
}
.typeahead__container .typeahead__field .typeahead__button button {
  height: 100%;
  background-color: #404965;
  color: white;
  border-width: 0;
  border-radius: 0;
}
.typeahead__container .typeahead__field .typeahead__button input[type="submit"] {
  display: none;
}
.typeahead__container .typeahead__result {
  background-color: #efefef;
  color: #333333;
  border: 1px solid #dddddd;
  display: none;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 13px;
}
.typeahead__container .typeahead__result .typeahead__list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.typeahead__container .typeahead__result .typeahead__list .typeahead__group {
  background-color: rgba(0, 0, 0, 0.05);
  color: #777777;
  font-style: italic;
}
.typeahead__container .typeahead__result .typeahead__list .typeahead__group a {
  display: block;
  padding: 4px 7px;
  cursor: default;
}
.typeahead__container .typeahead__result .typeahead__list .typeahead__item a {
  display: block;
  padding: 2px 7px;
}
.typeahead__container .typeahead__result .typeahead__list .typeahead__item.active {
  background-color: #faf9f5;
}
.typeahead__container .typeahead__result .typeahead__list.empty .typeahead__empty {
  padding: 2px 7px;
  color: #999999;
}
.typeahead__container.cancel .typeahead__field .typeahead__query .typeahead__cancel-button {
  visibility: visible;
}
.typeahead__container.loading .typeahead__field .typeahead__query .typeahead__cancel-button {
  visibility: hidden;
}
.typeahead__container.loading .typeahead__field .typeahead__query::after {
  position: absolute;
  top: 3px;
  right: 4px;
  content: " ";
  display: block;
  width: 16px;
  height: 16px;
  margin: 1px;
  border-radius: 50%;
  border: 2px solid #777777;
  border-color: #777777 #d0d0d0 #777777 #d0d0d0;
  animation: lds-dual-ring 1.2s linear infinite;
}
.typeahead__container.result .typeahead__result {
  display: block;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
