/**
 * Styling search results page
 */
.com-finder * {
  margin-bottom: 0;
}

.com-finder > * + *,
.com-finder__results > * + * {
  margin-top: 1.5em;
}

/**
 * Styling search explained
 */
.com-finder__explained span.term,
.com-finder__explained span.date,
.com-finder__explained span.when,
.com-finder__explained span.branch,
.com-finder__explained span.node,
.com-finder__explained span.op {
  font-weight: 800;
}

.com-finder__explained span.op {
  text-transform: uppercase;
}

/**
 * Styling search result items list
 */
.com-finder__results-list {
  padding: 0;
  list-style: none;
}

/**
 * Styling search result item
 */
.result__item + .result__item {
  padding-top: 1.5em;
  margin-top: 1.5em;
  border-top: 1px solid currentColor;
}

.result__item > * {
  margin-bottom: 0;
}

.result__item > * + * {
  margin-top: .25em;
}

.result__title-link {
  display: flex;
  flex-direction: column;
}

.result__title-text {
  font-size: 1.3rem;
}

.result__title-url {
  order: -1;
  margin-bottom: .25em;
  font-style: normal;
  color: hsl(0, 0%, 34%);
}

.result__title-link:focus,
.result__title-link:hover {
  text-decoration: none;
}

.result__title-link:focus .result__title-text,
.result__title-link:hover .result__title-text {
  text-decoration: underline;
}

.result__date {
  color: hsl(0, 0%, 34%);
}

.result__date:after {
  content: "-";
}

.result__taxonomy {
  padding: 0;
  list-style: none;
}

.result__taxonomy-item {
  display: inline-block;
}

.result__taxonomy-item + .result__taxonomy-item {
  margin-inline-start: .5em;
}

.result__taxonomy-item + .result__taxonomy-item:before {
  content: "|";
  padding-inline-end: .5em;
}

/**
 * Styling search word highlight
 */
.result__item .highlight {
  position: relative;
}

.result__item .highlight:before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: calc(100% + 6px);
  height: calc(100% + 2px);
  pointer-events: none;
  content: "";
  background: hsla(60, 100%, 50%, .5);
  border-radius: 3px;
  /* stylelint-disable */
  -webkit-transform: translate(-50%, -50%);
  /* stylelint-enable */
  transform: translate(-50%, -50%);
}

/**
 * Styling the sorting drop-down
 */
#sorting_label {
  margin-inline-end: .3rem;
}

#sorting_btn {
  min-width: 8rem;
}

.sorting .sorting__select {
  margin-bottom: 0;
}

.sorting__list-li {
  display: block;
  text-align: start;
}

.sorting__list-li-active {
  background-color: #f0f0f0;
}

span.highlight {
	background-color:#FFFFCC;
	font-weight:bold;
	padding:1px 0;
}
.autocomplete-suggestions{
  border: 1px solid #999;
  background: #FFF;
  cursor: default;
  overflow: auto;
  -webkit-box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64);
  -moz-box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64);
  box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64);
  position: absolute !important;
  width: 300px !important;
   max-height: 400px !important; 
  z-index: 999999 !important;
   /* top: 575px !important; 
   left: 386.5px !important; */
}
.autocomplete-suggestion{
  padding-left: 10px;
}