<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.accordion-button {
  padding: 0.5rem 0.75rem;
  border-radius: 0 !important;
}
.accordion-button,
.accordion-button:not(.collapsed) {
  color: white;  
  background-color: var(--themeblack);  
}
.accordion-button::after,
.accordion-button:not(.collapsed)::after {
  filter: grayscale(1) brightness(10);
}
.accordion-button:focus {
  border: none;
  box-shadow: none;
}
.accordion-body {
  padding: 0;
}
.list-group {
  border-radius: 0;
}
.list-group-item {
  cursor:pointer;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,.125);
}
.form-check-input:checked {
  background-color: var(--theme-primary-alpha);
  border-color: var(--theme-primary);
}
.form-check-input:focus {
  border-color: var(--theme-primary);
  box-shadow: 0 0 0 0.25rem rgb(161 161 161 / 25%);
}
#categories-list {
  margin-bottom: 1rem;
}
#categories-list &gt; label {
  color: white;
  font-weight: 600;  
  background-color: var(--themeblack);
  line-height: 1rem;
  padding: 0.75rem 1rem;
}
#categories-list .list-items,
#categories-filters .list-items {
  max-height: 32vh;
  overflow-y: auto;
}
#categories-list .list-items &gt; label {
  padding: 0;
}
#categories-list .list-items &gt; label &gt; a {
  color: var(--themeblack);
  text-decoration: none;
  padding: .5rem 1rem;
  padding-left: 1.5rem;
  display: block;
  transition-duration: var(--theme-transition-dur);
  font-weight: 400;
  border-left: 1px solid white;
  border-right: 1px solid white;
}
  #categories-list .list-items &gt; label &gt; a:hover {
    background-color: var(--theme-primary-light);
    border-left: 1px solid #dedede;
    border-right: 1px solid #dedede;
  }
  #categories-list .list-items &gt; label &gt; a:after {
    content: '\f054';
    font-family: 'Font Awesome 6 Pro';
    display: inline-block;
    color: var(--theme-primary);
    position: absolute;
    left: 10px;
    top: 0.75rem;
    font-size: 0.7rem;
    font-weight: 600;
  }

a.button-back,
a.button-back:hover {
  background-color: var(--theme-primary);
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 10px;
} 
  a.button-back &gt; i { transition-duration: var(--theme-transition-dur); }
  a.button-back:hover &gt; i {
    transform: translateX(-5px);
  }

.grid-opt-buttons {
  margin-bottom: 15px;
}
a.button-opt,
a.button-opt:hover {
  border: 2px solid white;
  background-color: white;
  color: #999;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 15px;
  padding: 0 0.5rem;
  font-size: 1rem;
  line-height: 1;
  border-radius: 4px;
  display: inline-block;
  text-align: center;
  margin: 0;
  width: calc( 50% - 0.2rem) !important;
  height: 2.25rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  text-decoration: none;  
} 
  a.button-opt &gt; span {
    margin: 0 0.5rem;
  }
  a.button-opt.active {
    color: #333;
    border: 2px solid var(--themeblack);
  }
  a.button-opt &gt; i {
    color: inherit;
  }
  

/*
@media screen and (min-width:768px){
  .grid-showcase {
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 70vh;
    padding-right: 10px;
  }
  .grid-showcase::-webkit-scrollbar {
    width: 2px !important;
  }
  .grid-showcase::-webkit-scrollbar-thumb {
    background: #dadada;
  }  
}
*/

.sort-by {
  /* margin-bottom: 1.4rem; */
  text-align: right;
  position: relative;
  top: -1rem;
}
  .sort-by &gt; label {
    margin-right: 0.5rem;
  }
  .sort-by &gt; select {
    padding: 0.1rem 0.5rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.2rem;
  }

@media screen and (max-width: 767px){
  .sort-by {
    top: -0.5rem;    
  }
}</pre></body></html>