#i18n-search_container {
  border: 1px solid #c7c7c7;
  border-radius: 5px;
}

#i18n-search {
  position: relative;
  transition: height 0.5s;
}
#i18n-search.active {
  z-index: 9001;
}
#i18n-search input, #i18n-search input::placeholder {
  color: white;
  font-weight: lighter;
}
#i18n-search.active input:focus::placeholder {
  color: gray;
}
#i18n-search input {
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  padding: 0 46px 0 20px;
  background-color: transparent;
  border: 0;
  border-radius: 5px;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  box-shadow: none;

}
#i18n-search.active input {
  background-color: white;
  color: #1e3651;
}
#i18n-search.active.with-results input {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
@media only screen and (min-width: 768px) {
}
@media only screen and (min-width: 960px) {
}

#i18n-search .i18n-search_results {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  background: white;
  white-space: nowrap;
  margin-top: -2px;
  top: 3em;
  left: 0em;
  width: 100%;
  transition: visibility 0s linear .3s, opacity .3s, height 0.5s;
  box-shadow: 0px 0px 30px 30px rgba(0,0,0,0.35);
}
#i18n-search.active .i18n-search_results {
  display: block;
  visibility: visible;
  opacity: 1;
  transition: visibility 0s linear 0s, opacity .3s, height 0.5s;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  overflow: auto;
}

#i18n-search .i18n-search_results .list {
  list-style: none;
  margin: 0;
  padding: 0em;
  max-height: 80vh;
  overflow: inherit;
}

#i18n-search .i18n-search_no-results {
  display: block;
  margin: 10px 0;
  padding: 0 20px;
  line-height: 2.4;
}

#i18n-search .i18n-search_results .i18n-search_type-name {
  display: block;
  margin: 10px 0;
  padding: 0 20px;
  background-color: #f8f8f8;
  line-height: 2.4;
  text-transform: uppercase;
}
#i18n-search .i18n-search_results .i18n-search_type-name:first-of-type {
    margin-top: 0;
}

#i18n-search .i18n-search_results .entry {
  margin: 0px;
  padding-left: 1em;
  padding-right: 1em;
  padding-top: 0.25em;
  padding-bottom: 0.25em;
  line-height: 1.5em;
  color: #000 !important;
}
#i18n-search .i18n-search_results .entry:hover {
  background-color: #f0f0f0;
  color: gray;
}

#i18n-search .i18n-search_results .entry{
  color: inherit;
  border: inherit;
  background-color: transparent;
  display: flex;
  align-items: center;
}
#i18n-search .i18n-search_results .result-image{
  width: 1.5em;
  max-height: 1.5em;
  margin-right: 1em;
  text-align: center;
}
#i18n-search .i18n-search_results .result-target{
  flex-grow: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
#i18n-search .i18n-search_results .result-name{
  font-weight: 300;
}
#i18n-search .i18n-search_results .result-name em, #i18n-search .i18n-search_results .result-explanation em{
  font-weight: bold;
}
#i18n-search .i18n-search_results .result-explanation{
  font-weight: 300;
  font-size: 0.8em;
  display: block;
  color: black;
  white-space: normal;
  line-height: 1.3em;
}
#i18n-search .i18n-search_results .entry .i18n-search_results-type {
  float: right;
  font-size: small;
  font-style: italic;
}
