html {
    scroll-behavior: auto !important; /* Disable native browser scroll so jQuery animate works consistently */
}

.sticky-accordion-menu {
    position: relative;
    width: 250px;
    background: #f9f9f9;
    padding: 15px;
    border: 1px solid #ddd;
}

.sticky-accordion-menu.sticky {
    position: fixed;
    top: 200px;
    z-index: 1;
}

.sticky-accordion-menu ul {
    list-style: none;
    padding: 0;
}

.sticky-accordion-menu ul li {
    margin-bottom: 10px;
}

.sticky-accordion-menu a {
    text-decoration: none;
    color: #333;
    display: block;
    font-weight: bold;
}

/*.sticky-accordion-menu .submenu {*/
/*    margin-left: 15px;*/
/*    display: none;*/
/*}*/

.sticky-accordion-menu .submenu {
    display: block !important;
}

.sticky-accordion-menu .submenu li {
    margin-bottom: 5px;
}


/* Show/hide depending on screen size */
.desktop-only {
  display: block;
}
.mobile-only {
  display: none;
}

.scroll-link.active {
    font-weight: bold;
    color: #A3C19B;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: block;
        position: fixed;
        top: 110px;
        left: 0;
        width: 100%;
        z-index: 999;
        padding: 10px;
        background: #fff;
        border-bottom: 1px solid #ccc;
  }
  .sticky-accordion-menu {
    position: relative;
    width: 250px;
    background: white !important;
    padding: 15px;
     border: 0px solid #ddd; 
}
  
}
