/* 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;
}

/* title */
.title {
  padding: 10px 60px;
}

.title h1 {
  color: #0c0c24;
  font-size: 36px;
  font-weight: 700;
  line-height: normal;
}

/* pagination */
.pagination {
  justify-content: flex-end;
  background: #f7f7fb;
  padding: 0px;
  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;
}

.content {
  padding: 24px 60px 100px;
  background: #f7f7fb;
}

.content > div {
  align-items: flex-start;
  gap: 20px;
}

/* collapse */
.filter-collapse {
  width: 315px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 20px;
}

.collapse-item .header {
  cursor: pointer;
}

.collapse-item .header p {
  color: #0c0c24;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  opacity: 0.5;
}

.collapse-item .header img {
  width: 16px;
}

.collapse-item .body {
  max-height: 5000px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: all 0.5s;
  overflow: hidden;
  max-width: 100%;
  max-height: 0px;
}

.collapse-item.active .body {
  max-height: 5000px;
  margin-top: 20px;
}

.collapse-item.active .header img {
  transform: rotate(180deg);
}

.body .search {
  position: relative;
  background-color: transparent;
  padding: 0px;
}

.body input {
  border-radius: 8px;
  background: #fff;
  padding: 12px 16px;
  border: none;
  color: #0c0c24;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  outline: none;
  width: 100%;
  padding-right: 40px;
}

.body .search img {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
}

.body a {
	color: var(--primary);
	font-size: 16px;
	font-weight: 400;
	line-height: 150%;
	padding-left: 4px;
}

.list-products {
  flex-grow: 1;
  width: 0;
}

/* table */
.table {
  padding: 20px 0;
}

.table-header {
  border-top: 1px solid #ededed;
}

.table-header span {
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.first-col,
.third-col,
.fourth-col {
  width: 200px;
  padding: 20px;
  display: block;
  align-self: flex-start;
}

.second-col {
  flex-grow: 1;
  width: 0;
  padding: 20px;
  display: block;
  align-self: flex-start;
}

.fourth-col {
  text-align: right;
}

.table-item {
  border-top: 1px solid #ededed;
  background: #fff;
}

.table-item:last-child {
  border-bottom: 1px solid #ededed;
}

.table-item:nth-child(2n + 1) {
  background: rgba(255, 255, 255, 0.6);
}

.table-item .first-col {
  color: #333;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
}

.table-item .second-col {
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

.table-item .third-col a {
  border-radius: 16px;
  background: rgba(49, 144, 4, 0.1);
  padding: 6px 12px;
  color: #00773e;
  font-size: 10px;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
}

	.table-item .fourth-col {
		cursor: pointer;
		color: var(--primary);
		font-size: 16px;
		font-weight: 600;
		line-height: normal;
	}



.filter-mobile {
  display: none;
}


/* 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;
}
