#document-filter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}
.filter-group {
    width: 16.24%;
    position: relative;
}
.dropdown {
    position: relative;
}
.dropdown-menu {
  display: none;
  position: absolute;
  z-index: 1000;
  padding: 10px 15px;
  max-height: 300px;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 4px;
  width: 200px;
}
.term-icon-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    font-size: 14px;
    cursor: pointer;
}
.term-icon-label input[type="checkbox"] {
    margin-left: 10px;
}
.parent-icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 6px;
}
mark {
    background: yellow;
}
#document-filter-form button,
input#search-field {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), #DCE1E9;
  border-radius: 4px;
  border: none;
  font-family: 'DengXian';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: -0.01em;
  color: #3A3B41;
  text-align: left;
  width:100%;
  padding: 8px 8px 8px 16px;
  height: 40px;
}
.filter-group.with-icon .dropdown {
  width:100%;
}
.filter-group.with-icon {
  display: flex;
  align-items: center;
}
.filter-group.with-icon img {
  width:24px;
  height:24px;
}
.filter-group.with-icon .term-icon-label {
  display: flex;
  align-items: center;
  padding: 8px 0;
  font-family: 'DengXian';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: -0.01em;
  color: #3A3B41;
}
.filter-group.with-icon select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}
.filter-group.search {
  display: flex;
  align-items: center;
  width:100%;
}
.filter-group.search .search-icon {
  width: 2.1%;
  margin-right: 0.5%;
}
.filter-group.search button#filter-submit {
  width: 10%;
  background: #25A18E;
  border-radius: 8px;
  padding: 8px 16px;
  font-family: 'DengXian';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  grid-gap: 10px;
  height: 106px;
  position: absolute;
  right: 0;
  top: -66px;
}
.filter-group.search button#filter-submit img {
  width:24px;
}
.filter-group.reset {
  width: 10%;
}
.filter-group.reset a {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), #DCE1E9;
  border-radius: 8px;
  padding: 8px 16px;
  font-family: 'DengXian';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: -0.01em;
  color: #3A3B41;
  display: flex;
  align-items: center;
  grid-gap: 10px;
  height:40px;
  justify-content: center;
}
.filter-group.reset img {
  width:24px;
}
#search-field::placeholder {
  font-family: 'DengXian';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: -0.01em;
  color: #3A3B41;
}
button.dropdown-toggle {
  position:relative;
}
button.dropdown-toggle::before {
  content: "";
  background: url(/wp-content/uploads/2025/08/icon24-dropdown_off.png) no-repeat scroll 0 0 / 100% auto;
  width: 24px;
  position: absolute;
  z-index: 1;
  height: 24px;
  right: 10px;
  transition: transform 0.3s ease;
}
.select-wrapper {
  position: relative;
  display: inline-block;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), #DCE1E9;
  border-radius: 4px;
  width: 100%;
  height: 40px;
}
.select-wrapper::after {
  content: '';
  position: absolute;
  top: 25%;
  right: 12px;
  width: 24px;
  height: 24px;
  pointer-events: none;
  background-image: url('/wp-content/uploads/2025/08/icon24-dropdown_off.png');
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.3s ease;
}
.filter-group select {
  background: rgba(255, 255, 255, 0);
  border-radius: 4px;
  border: none;
  font-family: 'DengXian';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: -0.01em;
  color: #3A3B41;
  text-align: left;
  width:100%;
  padding: 8px 8px 8px 16px;
  height: 40px;
}
.filter-group option {
  font-family: 'DengXian', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: -0.01em;
  color: #3A3B41;
}
.filter-group .select-wrapper.active::after,
button.dropdown-toggle.active::before {
  transform: rotate(180deg);
  top: 25%;
  transition: transform 0.3s ease;
}
.dropdown {
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}
.dropdown.has-selection,
#search-field.has-value {
  border-bottom:4px solid #EE1C24;
}
.filter-group.search button#filter-submit.has-filter {
  height: 40px;
  position: absolute;
  right:0;
  top:0;
}
.search-input-wrapper {
  width: 86%;
  margin-right: 1.4%;
  position:relative;
}
.clear-keyword {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 0;
}
.clear-keyword img {
  width:24px;
}



 










