.filters {
  width: 100%;
  &__filters {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }

  // Vertical  Styles
  // ========================================
  &__dropdownVertical {
    display: flex;
    padding-top: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
  }
  &__dropdownVerticalHeader {
    color: var(--Base-Black, #000);

    /* Text md/Medium */
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 150% */
  }
  &__dropdownVerticalContent {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
  }

  // ========================================

  // Horizontal  Styles
  // ========================================

  &__dropdownHorizontal {
    display: flex;
    padding-top: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
  }
  &__dropdownHorizontalHeader {
    color: var(--Base-Black, #000);

    /* Text md/Medium */
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 150% */
  }
  &__dropdownHorizontalContent {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
  }
  &__dropdownHorizontalHeaderWrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  &__dropdownVerticalHeaderWrapper {
    width: 100%;
  }

  // ========================================

  &__container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4px;
  }
  &__containerHorizontal {
  }
  &__containerStacked {
    display: flex;
    // flex-direction: column;
    gap: 12px;
    width: 100%;

    align-items: center;
    justify-content: space-evenly;
  }
  &__containerVertical {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  &__searchInput {
    padding: 8px;
    font-size: 14px;
    color: var(--Base-Black, #000);
    border: 1px solid var(--Gray-300, #d0d5dd);
    border-radius: 4px;
    margin-bottom: 8px;
  }
  &__selectAllButtons {
    display: flex;
    width: 100%;
  }
  &__selectButton {
    padding: unset;

    button {
      padding: 10px 10px;
      font-size: 12px;
    }
  }
}

.filtersVertical {
  display: flex;
  //TODO-p3: make this fit the parent
  width: 340px;
  padding: 24px 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
  border-radius: 8px;
  border: 1px solid var(--Gray-300, #d0d5dd);
  background: var(--Base-White, #fff);
  overflow: auto;
  height: 750px;
}
// ========================================
// Media Queries
// ========================================
// Adjusting desktop screens
@media (min-width: 1024px) {
}
// Adjusting  for tablet screens (between small tablets and desktops)
@media (max-width: 1023px) {
  .filters {
  }
}
// Adjusting for smaller screens (small tablets and mobiles)
@media (max-width: 768px) {
  .filters {
  }
  .filtersVertical {
    height: unset;
  }
}
// Adjusting  for smaller screens (mobiles)
@media (max-width: 480px) {
  .filters {
    &__container {
      flex-direction: column;
      .dry-button {
        width: 100% !important;
      }
    }
  }
  .filtersVertical {
    height: unset;
  }
}
