.filter-dropdown-list label {
  font-size: 14px;
  font-weight: 400;
}

.resource-wrapper {
  background-color: #f8f8f8;
}

.resource-container {
  max-width: 1200px;
  margin-bottom: 60px;
}

.resource-container .heading {
  font-weight: 400;
  font-size: var(--fs-200);
  line-height: var(--fh-36);
  color: #7e8083;
  text-align: center;
  padding-block: 30px 60px;
}

/* Sorting style for collection */

.sorting {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-block: 40px;
  --content-max-width: 1200px;
}

.sorting__dropdown {
  width: 200px;
  height: 100%;
  border: 1px solid #ccc;
  background: #fff;
  position: relative;
}

.news {
  position: relative;
  min-height: 50px;
  /* padding-top: 80px; */
  background-color: var(--el-bg-colour-one);
  width: 100%;
}

/* product-grid-pagination */
.product-grid-pagination {
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
  margin-bottom: 80px;
  max-width: 1200px;
  justify-content: space-between;
  /* margin: 0 auto; */
  cursor: pointer;
}

.product-grid-pagination .grey svg {
  color: #ddd; /* This sets the SVG fill and stroke to black */
}
.product-grid-p-right svg {
  transform: scaleX(-1); /* Flips the SVG horizontally */
}

.product-grid-p-pages {
  display: inline-block;
}

.product-grid-p-pages a {
  font-size: var(--fs-sh);
  line-height: var(--fh-30);
  text-align: center;
  color: #002205;
  padding: 5px 10px;
  text-decoration: none;
  border-radius: 5px;
  cursor: pointer;
}
.product-grid-p-pages a.active {
  color: #fff;
  background-color: #002205;
}

.product-grid-p-pages a:hover:not(.active) {
  background-color: #ddd;
}

.emtpy-search {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  margin-block: 20px;
  align-items: center;
  gap: 40px;
  h2,
  a {
    text-align: center;
  }
}

@media screen and (min-width: 768px) {
  .emtpy-search {
    margin-block: 120px;
  }
}

.htmx-indicator {
  opacity: 0;
  display: none;
  transition: opacity 150ms ease-in;
}
.htmx-request .htmx-indicator {
  opacity: 1;
  display: flex;
}
.htmx-request.htmx-indicator {
  opacity: 1;
  display: flex;
}
.htmx-indicator {
  position: fixed;
  top: 50vh;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

#fetching-message {
  opacity: 1;
  transition: opacity 150ms ease-in;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.apply-button {
  justify-content: center;
  margin-bottom: 15px;
}
