@media (max-width: 404px) {
  .tc-search-box {
    margin-bottom: 0.75rem;
  }
}

.tc-search-box button {
  background-color: white;
}

.tc-hidden {
  display: none;
}

.tc-search-combobox-wrap {
  position: relative;
}

.tc-search-suggestions {
  position: absolute;
  z-index: 1000;
  width: 100%;
  max-height: 300px;
  overflow-y: auto;
  margin-top: 0.25rem;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 0.25rem;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.12);
}

.tc-search-suggestions-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tc-search-suggestion {
  padding: 0.75rem 1rem;
  cursor: pointer;
  line-height: 1.3;
  border-bottom: 1px solid #eee;
}

.tc-search-suggestion:last-child {
  border-bottom: 0;
}

.tc-search-suggestion strong {
  font-weight: 600;
}

.tc-search-suggestion-search-all {
  font-weight: 600;
  background: #fafafa;
  border-top: 1px solid #ddd;
}

.tc-search-suggestion.is-active,
.tc-search-suggestion:hover {
  background: #f3f6fa;
  outline: 2px solid #0d6efd;
  outline-offset: -2px;
}