/* VARIABLES */
/* TYPOGRAPHY */
/* Google Fonts */
/* TYPOGRAPHY */
/* Google Fonts */
.views-exposed-form {
  margin-bottom: 3.25rem;
}
.views-exposed-form .d-flex {
  align-items: baseline;
  gap: 0;
}
@media (max-width: 75rem) {
  .views-exposed-form .d-flex {
    align-items: anchor-center;
  }
}
.views-exposed-form .d-flex .form-type-textfield {
  border-radius: 1rem;
}
.views-exposed-form .d-flex .custom-select-trigger {
  padding: 1rem 0.75rem;
  background-color: white;
  border-radius: 1rem;
  border: solid 1px #E8E2DB;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 75rem) {
  .views-exposed-form .d-flex .custom-select-trigger {
    height: 64px;
  }
}
@media (max-width: 75rem) {
  .views-exposed-form .d-flex .bef-links ul {
    justify-content: center;
  }
  .views-exposed-form .d-flex .js-form-item-field-category-target-id {
    width: 100%;
    margin-bottom: 2rem;
  }
  .views-exposed-form .d-flex .js-form-item-field-tags-target-id {
    width: 48%;
    height: 64px;
  }
  .views-exposed-form .d-flex .form-type-textfield {
    width: 48%;
    border-radius: 1rem;
    height: 64px;
  }
  .views-exposed-form .d-flex .form-type-textfield input {
    width: 100% !important;
  }
}
@media (max-width: 62rem) {
  .views-exposed-form .d-flex .bef-links ul {
    padding-top: 1.25rem;
  }
  .views-exposed-form .d-flex .js-form-item-field-category-target-id {
    display: flex;
    gap: 0.625rem;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    padding-bottom: 0.3125rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .views-exposed-form .d-flex .js-form-item-field-category-target-id::-webkit-scrollbar {
    display: none;
  }
  .views-exposed-form .d-flex .js-form-item-field-category-target-id .item {
    min-width: -moz-max-content;
    min-width: max-content;
    padding: 0.625rem 1.25rem;
    background: #f1f1f1;
    border-radius: 0.5rem;
    flex-shrink: 0;
  }
  .views-exposed-form .d-flex .js-form-item-field-tags-target-id {
    width: 100%;
    height: 64px;
    margin: 0;
    margin-bottom: 1rem;
  }
  .views-exposed-form .d-flex .form-type-textfield {
    width: 100%;
    height: 64px;
  }
  .views-exposed-form .d-flex .form-type-textfield input {
    width: 100% !important;
  }
}

.js-form-item-field-category-target-id {
  margin-right: 18.75rem;
  transition: margin-right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 75rem) {
  .js-form-item-field-category-target-id {
    margin-right: 0;
  }
}
.js-form-item-field-category-target-id.search-open {
  margin-right: 1rem;
}
@media (max-width: 75rem) {
  .js-form-item-field-category-target-id.search-open {
    margin-right: 0;
  }
}

.js-form-item-title {
  position: relative;
  display: inline-flex;
  align-items: center;
  border: solid 1px #E8E2DB;
}
.js-form-item-title::before {
  content: "";
  position: absolute;
  left: 20px;
  width: 20px;
  height: 20px;
  background-image: url(../../images/search.svg);
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
}
.js-form-item-title input.form-control {
  width: 62px;
  height: 62px;
  border-radius: 1rem;
  border: 1px solid white;
  background: white;
  padding: 0 0 0 1rem;
  font-size: 1rem;
  color: transparent;
  cursor: pointer;
  outline: none;
  box-shadow: none;
  pointer-events: all;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease, background 0.3s ease, color 0.15s ease;
}
.js-form-item-title input.form-control::-moz-placeholder {
  color: #1A1C1E;
}
.js-form-item-title input.form-control::placeholder {
  color: #1A1C1E;
}
.js-form-item-title input.form-control.is-open {
  width: 280px;
  padding: 0 3.125rem;
  color: #1A1C1E;
  cursor: text;
}

.search-clear-btn {
  position: absolute;
  right: 16px;
  width: auto;
  height: auto;
  background: white;
  border: none;
  cursor: pointer;
  display: none;
  padding: 0;
}
.search-clear-btn::before {
  content: url(../../images/x.svg);
}
.search-clear-btn.visible {
  display: flex;
}

.js-form-item-field-tags-target-id {
  margin-right: 1.25rem;
}

.no-results-content {
  text-align: center;
  padding: 5rem;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 1.5rem;
}
