/***** APPLIED FILTERS - MAIN *****/
.applied-filters-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin-top: 1rem;
}

.applied-filters-container .removable-filter {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: bold;
  font-size: 1.15rem;
  background-color: var(--secondary-color);
  color: var(--white);
  border: 2px solid var(--white);
  border-radius: 1.3rem;
  padding: .5rem .75rem;
  margin-top: .25rem;
}

.applied-filters-container .removable-filter button {
  height: 25px;
  width: 25px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background-color: transparent;
  padding-block: 1px;
  padding-inline: 5px;
}

.applied-filters-container .removable-filter svg path {
  stroke: white;
  stroke-width: 3;
}

.applied-filters-container .clear-all-button {
  background-color: var(--white);
  color: var(--secondary-color);
  border: .15em solid var(--secondary-color);
  border-radius: 2rem;
  text-decoration: none;
  text-transform: none;
  font-weight: bold;
  font-size: 1.15rem;
  padding: .5rem .75rem;
  margin-top: .25rem;
  width: 125px;
}