/* African Contemporary — artist search widget styles */

.ac-search-wrap {
  max-width: 220px;
  margin: 0;
  position: absolute;
  top: 24px;
  right: 20px;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  z-index: 50;
}
#ac-artist-search {
  width: 100%;
  box-sizing: border-box;
  padding: 8px 32px 8px 12px;
  font-size: 16px;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  border: 1px solid #ccc;
  border-radius: 3px;
  outline: none;
}
@media (min-width: 701px) {
  #ac-artist-search {
    font-size: 13px;
  }
}
#ac-artist-search:focus {
  border-color: #999;
}
.ac-search-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  opacity: 0.4;
  pointer-events: none;
}
#ac-search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ccc;
  border-top: none;
  max-height: 320px;
  overflow-y: auto;
  z-index: 200;
  display: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  text-align: left;
}
#ac-search-results.open {
  display: block;
}
.ac-result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 14px;
  text-decoration: none;
  color: #000;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
}
.ac-result-item:last-child {
  border-bottom: none;
}
.ac-result-item:hover,
.ac-result-item.active {
  background: #f5f5f3;
}
.ac-result-name strong {
  font-weight: bold;
}
.ac-result-nationality {
  font-size: 11px;
  color: #888;
  white-space: nowrap;
  margin-left: 12px;
}
.ac-no-results {
  padding: 12px 14px;
  font-size: 13px;
  color: #888;
  text-align: center;
}

/* Keep the top-right placement at every screen size, including iPhone
   portrait — consistent with how it already behaves on iPad and in
   landscape. On very narrow phones, just shrink the box and tuck it in
   a little closer to the edge so it's less likely to overlap the logo,
   which spans close to full width on small screens. */
@media (max-width: 480px) {
  .ac-search-wrap {
    max-width: 150px;
    top: 14px;
    right: 12px;
  }
  .logo-section {
    padding-top: 70px !important;
  }
  #ac-artist-search {
    padding: 6px 26px 6px 10px;
  }
  .ac-search-icon {
    right: 8px;
    width: 12px;
    height: 12px;
  }
}

