/* search */
.search {
	padding: 16px 60px;
	background-color: var(--secondary);
}

.search-form {
  position: relative;
}

.search-form input {
  padding: 12px 16px;
  border-radius: 8px;
  background-color: #f9f8fc;
  outline: none;
  box-shadow: none;
  border: none;
  width: 598px;
  color: #0c0c24;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  padding-right: 48px;
}

.search-form img {
  position: absolute;
  width: 20px;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.search-list {
  gap: 40px;
  align-items: flex-start;
}

.search-item img {
  width: 24px;
  margin-right: 12px;
}

.search-item p {
  color: #fff;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

/* breadcrum  */
.breadcrum {
  padding: 16px 60px;
  border-bottom: 1px solid #ededed;
  gap: 10px;
}

.breadcrum a {
  color: #0c0c24;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  opacity: 0.5;
}

.breadcrum img {
  width: 16px;
}

.breadcrum a.active {
  opacity: 1;
}

/* tabs */
.tabs {
  padding: 10px 60px 16px;
}

.filter-mobile {
  display: none;
}

.tabs h1 {
  color: #0c0c24;
  font-size: 36px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 31px;
}

.tabs-list > * {
  color: #0c0c24;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

.tabs-list p {
  opacity: 0.5;
}

/* categories */
.categories {
  padding: 24px 60px 0px;
  background: #f7f7fb;
}

.categories h2 {
  color: #0c0c24;
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
}

.categories-list {
  flex-wrap: wrap;
  margin-top: 10px;
  gap: 20px;
}

.categories-list > a {
  border-radius: 8px;
  background: #fff;
  padding: 12px;
  color: #0c0c24;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  width: calc(25% - 15px);
}

/* pagination */
.pagination {
  justify-content: flex-end;
  background: #f7f7fb;
  padding: 34px 60px 132px;
  gap: 10px;
}

.pagination img {
  width: 16px;
  cursor: pointer;
}

.pagination img:nth-child(1) {
  transform: rotate(180deg);
}

	.pagination p {
		border-radius: 8px;
		padding: 6px 16px;
		color: var(--primary);
		font-size: 14px;
		font-weight: 400;
		line-height: normal;
		cursor: pointer;
	}

	.pagination span {
		border-radius: 8px;
		background: #fff;
		padding: 6px 12px;
		color: var(--primary);
		font-size: 14px;
		font-weight: 400;
		line-height: normal;
		cursor: pointer;
	}

.pagination span.selected {
  color: #000;
}

.pagination p.disabled {
  color: #999999;
}

.pagination img.disabled {
  opacity: 0.5;
}

/* auto complete */
.autocomplete-items {
	position: absolute;
	border: 1px solid #d4d4d4;
	border-bottom: none;
	border-top: none;
	z-index: 99;
	/*position the autocomplete items to be the same width as the container:*/
	top: 85%;
	left: 0;
	right: 0;
}

	.autocomplete-items div {
		padding: 10px;
		cursor: pointer;
		background-color: #f9f8fc;
		border-bottom: 1px solid #d4d4d4;
		font-family: Montserrat;
	}


		/*when hovering an item:*/
		.autocomplete-items div:hover {
			background-color: #e9e9e9;
		}

/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
	background-color: DodgerBlue !important;
	color: #ffffff;
}
