/* =========================================================
   AMJ search autocomplete dropdown
   ========================================================= */
.amj-suggest {
  position: absolute;
  z-index: 99999;
  display: none;
  background: #fff;
  border: 2px solid #000053;
  border-radius: 4px;
  box-shadow: 0 8px 28px rgba(0, 0, 83, .28);
  max-height: 60vh;
  overflow-y: auto;
  min-width: 260px;
}

.amj-suggest.is-open { display: block; }

.amj-suggest__item,
.amj-suggest__all {
  display: block;
  padding: 10px 14px;
  color: #111;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.35;
  border-bottom: 1px solid #eee;
}

.amj-suggest__item:hover,
.amj-suggest__item.is-active {
  background: #eef0ff;
  color: #000053;
  text-decoration: none;
}

.amj-suggest__all {
  background: #f7f7fb;
  color: #000053;
  font-weight: 700;
  text-align: center;
  border-bottom: 0;
}

.amj-suggest__all:hover { background: #e7e9f7; color: #000053; text-decoration: none; }

/* "did you mean" line on the results page */
.amj-didyoumean {
  margin: 4px 0 14px;
  font-size: 15px;
  color: #333;
}
.amj-didyoumean a {
  color: #000053;
  font-weight: 700;
  text-decoration: underline;
}
