<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.mobile-categories {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 8px;
    padding: 0px;
    display: none;
  }
  .mobile-categories.active {
    background-color: #f4f4f4;
  }
  .mobile-categories.active .category-dropdown {
    display: block !important;
  }
  .mobile-categories button {
    padding: 12px 12px;
    width: 100%;
    background-color: #f4f4f4;
    color: rgb(102, 102, 102);
    font-family: "Raleway", sans-serif;
    font-size: 12px;
    border-radius: inherit;
    text-align: center;
    font-weight: bold;
  }
  .mobile-categories button i {
    margin-right: 10px;
  }
  .mobile-categories .category-dropdown {
    display: none;
    padding-bottom: 15px;
  }
  .mobile-categories .category-dropdown ul li {
    list-style-type: none;
    padding: 8px;
    color: #333;
    text-decoration: none;
  }
  .mobile-categories .category-dropdown ul li a {
    color: inherit;
  }
  
  @media screen and (max-width: 900px) {
    .mobile-categories {
      display: block;
    }
  }</pre></body></html>