/* ToughGuy Toolbox - shop search + pagination */

.ttb-search {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  height: 42px;
}

.ttb-search-input,
#searchInput.ttb-search-input {
  flex: 1 1 auto;
  min-width: 0;
  height: 42px;
  border: 1px solid #ced4da;
  border-right: 0;
  border-radius: 4px 0 0 4px;
  padding: 0 12px;
  box-sizing: border-box;
  font-size: 14px;
}

.ttb-search-go {
  flex: 0 0 48px;
  width: 48px;
  height: 42px;
  padding: 0;
  border-radius: 0 4px 4px 0;
  font-weight: 700;
  font-size: 13px;
  line-height: 42px;
}

.ttb-page-meta {
  text-align: center;
}

.ttb-pagination .page-link {
  color: #212529;
  border-color: #dee2e6;
  min-width: 2.4rem;
  text-align: center;
}

.ttb-pagination .page-item.active .page-link {
  background-color: #343a40;
  border-color: #343a40;
  color: #fff;
}

.ttb-pagination .page-item.disabled .page-link {
  color: #adb5bd;
  pointer-events: none;
  background: #fff;
}

.ttb-pagination .page-link:hover {
  background-color: #e9ecef;
  color: #111;
}

.ttb-pagination .page-item.active .page-link:hover {
  background-color: #23272b;
  color: #fff;
}

/* Sidebar category active state */
#CatList .list-group-item.active {
  background-color: #343a40;
  border-color: #343a40;
  color: #fff;
}

@media (max-width: 991.98px) {
  .ttb-search {
    margin-bottom: 0.5rem;
  }
}
