.collapsible {
  cursor: pointer;
}

.collapsible .icon::before {
  content: '+';
  font-size: 16px;
  font-weight: 900;
}

.collapsible.opened .icon::before {
  content: '-';
  font-size: 16px;
  font-weight: 900;
}

.opened {
  background-color: #ececec;
  font-weight: 600;
}

.bottom-label {
  bottom: 10%;
  left: 5%;
}

.filter-mobile {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--darkgray);
  border-radius: 0px 15px 15px 0px;
  border: none;
  width: 86px;
  height: 56px;
  padding: 10px 20px;
  cursor: pointer;
  z-index: 10;
  left: 0;
}

#filterMobile {
  position: fixed;
  top: 0;
  left: -1200px;
  width: 100vw;
  height: 100%;
  background-color: white;
  transition: left 0.3s;
  z-index: 9999;
  max-height: 100vh;
  overflow-y: auto;
}

.show-menu {
  left: 0 !important;
}

.padding-chip-brand {
  padding-inline: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.chips {
  background-color: white;
  color: var(--red);
  border: 1px solid var(--red);
  font-weight: bold;
  border-radius: 999px;
  padding: 5px 10px;
}

.filter-invert {
  filter: invert(1);
}

.brand-banner {
  width: 100%;
  height: auto;
  border-radius: 24px;
}

.filter-lat {
  background-color: var(--lightgray);
  border-radius: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 20px 10px;
}

.page-link {
  background-color: #8C919B;
  border: none;
  border-radius: 50%;
  color: white;
  padding: 5px 12px;
  border: 1px solid transparent;
}

.page-link:hover {
  background-color: white;
  color: #8C919B;
  border: 1px solid #8C919B;
}

.active .page-link {
  background-color: var(--red);
  border: 1px solid transparent;
}

.active .page-link:hover {
  color: white;
}

.text-item {
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #C0C1C2;
}

.sticky-filters {
  position: -webkit-sticky;
  position: sticky;
  top: 20px;
  height: 100vh;
  z-index: 1000;
  padding: 10px;
}