#sticky-section {
  position: sticky;
  top: 0;
  z-index: 999;
  transition: height 0.3s ease;
  height: auto;
  border-bottom: 1px solid rgb(47,47,47);
  padding-top: 10px;
  padding-bottom: 10px;
  color: rgb(255,255,255);
  font-weight: bold;
  row-gap: 15px;
  display: flex;
  flex-direction: column;
  align-content: center;
}

@media (min-width: 300px) {
  #sticky-section {
    position: sticky;
    top: 0;
    z-index: 999;
    transition: height 0.3s ease;
    height: auto;
    border-bottom: 1px solid rgb(47,47,47);
    padding-top: 10px;
    padding-bottom: 10px;
    color: rgb(255,255,255);
    font-weight: bold;
    row-gap: 5px;
    font-size: 12px;
  }
}

#sticky-section p {
  margin: 0px;
}

.filter-count {
  color: #ffffff;
  font-size: 10px;
  margin-left: 4px;
}

