@media(max-width:1024px){
    .mobile_paged_menu .menu-item {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 5px 0px;
        margin-bottom: 5px;
      }
      .mobile_paged_menu span.menu-title {
        font-size: 18px;
      }
      
      
      .mobile_paged_menu_head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 15px 0 15px;
        flex-direction: column;
      }
      .mobile_paged_menu_head img.img_title {
        width: 150px !important;
        margin: 0 auto;
      }
      
      
      button.close-sidebar,
      button.back-to-menu {
        align-self: flex-start;
        padding: 0;
        margin: 0;
        border: none;
        background: none !important;
        cursor: pointer;
      }
      
      
      .mobile_paged_menu {
        width: 100%;
        height: 100vh;
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 999;
        background: #FFF;
        padding-top: 30px;
        transition: right 0.4s ease-in-out;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
      }
      .mobile_paged_menu.open {
        right: 0;
        display: flex;
      }
      .menu_items {
        padding: 0 20px;
    }
      
      .menu-title-wrapper {
        display: flex;
        flex-direction: row;
        align-items: center;
        flex-wrap: nowrap;
        gap: 10px; 
      }
      .menu-icon-img {
        height: 30px;
        max-height: 30px;
        object-fit: contain;
        display: block;
        width: auto;
      }
      span.menu-icon, span.menu-icon img {
        height: 30px;
        width: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        
      }
      
      
      .lds-spinner {
        display: inline-block;
        position: fixed; 
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 50px;
        height: 50px;
        z-index: 9999; 
      }
      .lds-spinner div {
        transform-origin: 25px 25px;
        animation: lds-spinner 1.2s linear infinite;
      }
      .lds-spinner div:after {
        content: " ";
        display: block;
        position: absolute;
        top: 2px;
        left: 23px;
        width: 1px;
        height: 11px;
        border-radius: 20%;
        background: #333;
      }
      .lds-spinner div:nth-child(1) {
        transform: rotate(0deg);
        animation-delay: -1.1s;
      }
      .lds-spinner div:nth-child(2) {
        transform: rotate(30deg);
        animation-delay: -1s;
      }
      .lds-spinner div:nth-child(3) {
        transform: rotate(60deg);
        animation-delay: -0.9s;
      }
      .lds-spinner div:nth-child(4) {
        transform: rotate(90deg);
        animation-delay: -0.8s;
      }
      .lds-spinner div:nth-child(5) {
        transform: rotate(120deg);
        animation-delay: -0.7s;
      }
      .lds-spinner div:nth-child(6) {
        transform: rotate(150deg);
        animation-delay: -0.6s;
      }
      .lds-spinner div:nth-child(7) {
        transform: rotate(180deg);
        animation-delay: -0.5s;
      }
      .lds-spinner div:nth-child(8) {
        transform: rotate(210deg);
        animation-delay: -0.4s;
      }
      .lds-spinner div:nth-child(9) {
        transform: rotate(240deg);
        animation-delay: -0.3s;
      }
      .lds-spinner div:nth-child(10) {
        transform: rotate(270deg);
        animation-delay: -0.2s;
      }
      .lds-spinner div:nth-child(11) {
        transform: rotate(300deg);
        animation-delay: -0.1s;
      }
      .lds-spinner div:nth-child(12) {
        transform: rotate(330deg);
        animation-delay: 0s;
      }
      @keyframes lds-spinner {
        0% { opacity: 1; }
        100% { opacity: 0; }
      }
      
      
      .paged_menu_head {
        display: flex;
        flex-direction: column;
        align-items: center;
        align-content: center;
        flex-wrap: nowrap;
        width: 100%;
      }
      .category-tree a {
        font-size: 18px;
      }

      .category-tree ul li ul {
        columns: 2;
        -webkit-columns: 2;
        -moz-columns: 2;
        column-gap: 30px;
        list-style: none;
        padding: 0;
        margin: 0;
    }
}


.category-tree {
  padding: 0 20px;
}
.category-tree ul {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 2;          
  column-gap: 30px;
}
.category-tree ul li {
  break-inside: avoid;  
  margin-bottom: 10px;
}
.category-tree ul li a {
  display: block;
  font-size: 18px;
  padding: 5px 0;
  text-decoration: none;
  color: inherit;
}
.category-tree ul li::before {
  content: "›";
  margin-right: 8px;
  color: #888;
  font-size: 16px;
}

  