#i18n-search {
  position: relative;
}
#i18n-search.active {
  z-index: 9001;
}
#i18n-search input {
  width: 100%;
}
@media only screen and (min-width: 768px) {
}
@media only screen and (min-width: 960px) {
}

#i18n-search .i18n-search_results {
  display: none;
  position: absolute;
  background: white;
  white-space: nowrap;
  top: 3em;
  left: 0em;
}
#i18n-search.active .i18n-search_results {
  display: block;
  box-shadow: 0px 10px 10px 10px rgba(0,0,0,0.25);
}
#i18n-search.active .i18n-search_results:empty {
  display:none
}

#i18n-search .i18n-search_results .list {
  list-style: none;
  margin: 0;
  padding: 0em;
}

#i18n-search .i18n-search_results .entry {
  margin: 0px;
  padding-left: 1em;
  padding-right: 1em;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  line-height: 1.5em;
}

#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{
}
#i18n-search .i18n-search_results .result-explanation{
  font-weight: lighter;
  font-size: 0.8em;
  display: block;
  color: black;
  white-space: normal;
  line-height: 1em;
}
#i18n-search .i18n-search_results .result-explanation > strong{
  font-weight: bolder;
}
#i18n-search .i18n-search_results .entry .i18n-search_results-type {
  float: right;
  font-size: small;
  font-style: italic;
}
