.header-section__content {
  color: #fff;
}
.header-section__clutch a {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-section__clutch a:hover .icon svg path {
  fill: #fff;
  transition: 0.3s;
}
.header-section__clutch a:hover .icon svg rect {
  fill: #AA076B;
  stroke: #AA076B;
  transition: 0.3s;
}

.category-filter {
  margin: 0 0 70px;
}

.category-filter__input-wrapper {
  position: relative;
  max-width: 400px;
  width: 49.5%;
  min-height: 31px;
  border-bottom: 1px solid #111;
}
.category-filter__input-wrapper .category-filter__select-text {
  position: absolute;
  top: 1px;
  left: 0;
}
.category-filter__input-wrapper_select:before {
  position: absolute;
  display: block;
  content: "";
  right: 0;
  bottom: 14px;
  width: 8px;
  height: 4px;
  background-image: url(/wp-content/themes/artelogic/img/icons/select_category.svg);
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}
.category-filter__input-wrapper_select._focused {
  border-bottom: 1px solid var(--primary--color);
}
.category-filter__input-wrapper_select._focused:before {
  color: var(--primary--color);
}
.category-filter__input-wrapper .category-filter__select {
  padding-left: 75px;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 100%;
  background: none;
  color: var(--primary--color);
  font-weight: 500;
  margin-top: 2px;
}
.category-filter__input-wrapper .category-filter__select option:hover {
  background-color: var(--gray) !important;
  color: var(--primary--color) !important;
}
.category-filter__input-wrapper .category-filter__select:focus {
  color: #000;
}
.category-filter__input-wrapper .custom-dropdown {
  position: relative;
  width: 200px;
  cursor: pointer;
  user-select: none;
}
.category-filter__input-wrapper .custom-dropdown__selected {
  padding: 10px;
  background: white;
  border: 1px solid #ccc;
  border-radius: 4px;
  position: relative;
}
.category-filter__input-wrapper .custom-dropdown__list {
  display: none;
  position: absolute;
  width: 100%;
  background: white;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 100;
}
.category-filter__input-wrapper .custom-dropdown__item {
  padding: 10px;
  transition: 0.2s;
}
.category-filter__input-wrapper .custom-dropdown__item:hover {
  background: #0073aa;
  color: white;
}
.category-filter__input-wrapper .custom-dropdown.active .category-filter__input-wrapper .custom-dropdown__list {
  display: block;
}

/* TABLET */
@media only screen and (max-width: 960px) {
  .navigation-links {
    margin: 40px 0 80px;
  }
  .category-filter,
  .breadcrumbs {
    max-width: 676px;
  }
}
/* END TABLET */
/* MOBILE */
@media only screen and (max-width: 575px) {
  .navigation-links {
    margin: 40px 0 42px;
  }
  .category-filter__input-wrapper {
    width: 100%;
  }
}
/* MOBILE END */