<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.categorypost-masonry.filter-bar {
  --filter-bg: lightgray;
  --filter-color: black;
  --checked-bg: black;
}

/* FILTER BAR */
.categorypost-masonry.filter-bar ul {
  position: relative;
  width: 100%;
  padding-inline-start: 0;
  list-style: none;

  /* Masonry effect */
  display: flex;
  flex-flow: row wrap;
  margin-left: -8px; /* Adjustment for the gutter */
  width: 100%;
}

.categorypost-masonry.filter-bar ul li {
  position: relative;
  transition: all 0.3s ease-in-out;

  /* Masonry effect */
  flex: auto;
  margin: 0 8px 8px 0; /* Some gutter */
}

.categorypost-masonry.filter-bar input {
  opacity: 0;
}

.categorypost-masonry.filter-bar input {
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0 0.5rem;
}
.categorypost-masonry.filter-bar input + label {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--filter-bg);
  transition: all 0.3s ease-in-out;
  font-weight: 300;
  margin: 0;
  margin-right: 0.1rem;
  overflow: hidden;
  word-break: break-word;
  cursor: pointer;
  border: none;
  color: var(--filter-color);
}
.filter-cat-template:hover,
.filter-cat-template:hover label:hover,
.filter-cat-template:hover input:hover {
  background-image: none;
  background-color: var(--filter-bg);
  outline: 1px solid var(--filter-color);
  outline-offset: 0px;
  cursor: pointer;
}
.categorypost-masonry.filter-bar input:checked + label {
  background-color: var(--checked-bg);
  color: white;
}

.categorypost-masonry.filter-bar .filter-tag-title,
.categorypost-masonry.filter-bar .filter-cat-title {
  padding-top: 0rem;
}

/* Masonry sizing */
.grid-sizer,
.card-container {
  /* One column */
  width: 100%;
}

@media (min-width: 576px) {
  .grid-sizer,
  .card-container {
    /* Three columns */
    width: 50%;
  }
}

@media (min-width: 992px) {
  .grid-sizer,
  .card-container {
    /* Four columns */
    width: 33%;
  }
}
</pre></body></html>