/* ADDING MARGIN LEFT TO THE CART ICON FOR MOBILE SCREEN */
@media only screen and (max-width: 480px) {
    .header-action-2 .header-action-icon-2:last-child {
        margin-left: 20px;
    }
}


/* Over riding main nvigation color */
.main-menu>nav>ul>li>a {
    color:#3bb77e;
}

/* OVERRIDING MENU TEXT COLORS */
.nav-tabs.links .nav-link{
    color:#FFF;
}


.miniCartContainer {
    max-height: 300px;
    /* adjust the height as needed */
    overflow-y: auto;
}

@media only screen and (max-width: 768px) {
    .miniCartContainer {
        max-height: 200px;
        /* adjust height for mobile devices */
        overflow-y: auto;
    }
}




