.filter-drawer__container {
  position: relative;
}

.filter-drawer__overlay {
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  inset: 0;
  position: fixed;
  z-index: 998;
}
.filter-drawer__overlay.active {
  display: block;
}

.filter-drawer {
  background-color: #F5F1E9;
  box-shadow: 4px 0 8px rgba(0, 0, 0, 0.1);
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: transform 0.3s ease-in-out, false, false;
  -moz-transition: transform 0.3s ease-in-out, false, false;
  -ms-transition: transform 0.3s ease-in-out, false, false;
  transition: transform 0.3s ease-in-out, false, false;
  width: calc(100vw - 25%);
  z-index: 999;
}
@media screen and (min-width: 641px) {
  .filter-drawer {
    width: 450px;
  }
}
.filter-drawer.active {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.filter-drawer__header {
  align-items: center;
  border-bottom: 1px solid #75665F;
  display: flex;
  justify-content: space-between;
  padding: 16px;
}

.filter-drawer__close {
  background: none;
  border: none;
  -webkit-border-radius: 9999px;
  border-radius: 9999px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  color: #EA3934;
  cursor: pointer;
  font-size: 1.7rem;
  font-weight: 100;
  -webkit-transition: background-color 0.2s, false, false;
  -moz-transition: background-color 0.2s, false, false;
  -ms-transition: background-color 0.2s, false, false;
  transition: background-color 0.2s, false, false;
}
.filter-drawer__close:hover {
  color: #EA3934;
}

.filter-drawer__content {
  height: calc(100% - 145px);
  overflow-y: auto;
  padding-bottom: 16px;
}

.selected-filters-summary {
  border-bottom: 1px solid #75665F;
  padding: 16px;
  display: none;
}
.selected-filters-summary.has-filters {
  display: block;
  padding-left: 15px;
}
.selected-filters-summary .selected-filters-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}
.selected-filters-summary .selected-filters-header .selected-count {
  color: #EA3934;
  font-size: 14px;
}
.selected-filters-summary .selected-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.selected-filters-summary .selected-items .selected-item {
  background: #FFF;
  border: 1px solid #75665F;
  color: #75665F;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
}
.selected-filters-summary .selected-items .selected-item button {
  align-items: center;
  background: none;
  border: none;
  color: #EA3934;
  cursor: pointer;
  display: flex;
  padding: 0;
}

.filter-section {
  border-bottom: 1px solid #75665F;
  position: relative;
}
.filter-section .chevron {
  font-weight: 300;
  -webkit-transition: transform 0.3s ease, false, false;
  -moz-transition: transform 0.3s ease, false, false;
  -ms-transition: transform 0.3s ease, false, false;
  transition: transform 0.3s ease, false, false;
  transform: rotate(0deg);
}
.filter-section.active .chevron {
  transform: rotate(180deg);
}
.filter-section.active .filter-section-content {
  display: block;
}

.filter-section-trigger {
  align-items: center;
  background: none;
  border: none;
  color: #1E1413;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  padding: 16px;
  transition: background-color 0.2s;
  width: 100%;
  -webkit-text-fill-color: #1E1413;
}
.filter-section-trigger:hover {
  background-color: #f9fafb;
}
.filter-section-trigger span {
  font-weight: 500;
  font-family: "akkurat-mono", serif;
}

.filter-section-content {
  display: none;
  padding: 0 16px 16px;
  position: relative;
}

.filter-drawer-actions {
  background: #F5F1E9;
  border-top: 1px solid #1E1413;
  bottom: 0;
  gap: 12px;
  left: 0;
  padding: 16px;
  position: absolute;
  right: 0;
}
.filter-drawer-actions .btn {
  display: block;
}

.filter-drawer__reset {
  background: none;
  cursor: pointer;
  font-weight: 500;
  padding: 10px 20px;
  transition: all 0.2s;
}
.filter-drawer__reset:hover {
  background-color: #f3f4f6;
}

.filter-drawer__apply {
  border: none;
  color: white;
  cursor: pointer;
  flex-grow: 1;
  transition: all 0.2s;
  position: relative;
}
.filter-drawer__apply:hover {
  background-color: #1d4ed8;
}
.filter-drawer__apply.is-loading {
  cursor: wait;
  opacity: 0.7;
  pointer-events: none;
}

.filter-option-wrapper {
  align-items: stretch;
  color: #EA3934;
  display: flex;
  width: 100%;
}

.filter-option {
  align-items: center;
  background: none;
  border: none;
  color: #1E1413;
  cursor: pointer;
  display: flex;
  flex-grow: 1;
  gap: 8px;
  padding: 12px;
  text-align: left;
  transition: all 0.2s;
  width: 100%;
}
.filter-option:hover {
  background-color: #D0BDB5;
}
.filter-option.selected {
  color: #75665F;
}
.filter-option.selected .fa-square {
  display: none;
}
.filter-option.selected .fa-square-check {
  display: inline-block;
}
.filter-option .fa-square-check {
  display: none;
}
.filter-option span {
  margin-left: 4px;
}

.child-indicator-button {
  align-items: center;
  background: none;
  border: none;
  border-left: 1px solid #75665F;
  cursor: pointer;
  display: flex;
  padding: 14px;
  transition: all 0.2s;
}
.child-indicator-button:hover {
  background-color: #D0BDB5;
}
.child-indicator-button .child-indicator {
  transition: transform 0.3s ease;
}
.child-indicator-button.active .child-indicator {
  transform: rotate(90deg);
}

.solutions-main-list {
  display: block;
  transition: all 0.3s ease;
}
.solutions-main-list.hidden {
  display: none;
}

.solutions-child-list {
  display: none;
}
.solutions-child-list.active {
  display: block;
}

.expert-filter__back-link {
  align-items: center;
  color: #EA3934;
  display: flex;
  gap: 8px;
  text-decoration: none;
}
.expert-filter__back-link .expert-filter__parent-title {
  color: #1E1413;
}

.parent-solution-subtitle {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 16px;
}

.experts-loading-indicator {
  background: #1E1413;
  color: #F1E7E0;
  padding: 20px 0;
  width: 100%;
}

.experts-loading-indicator.hidden {
  display: none;
}

.industries-main-list.hidden {
  display: none;
}

.industries-child-list {
  display: none;
}

.industries-child-list.active {
  display: block;
}/*# sourceMappingURL=expert-filter-drawer.css.map */