/* main nav styles */

.mobile-navigation {
    max-width: var(--max-w-navbar);
    height: 50px;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    gap: 1rem;
    width: 80%;
    position: fixed;
    background-color: var(--vwfs-petrol);
    color: var(--vwfs-text-secondary);
    border-radius: 15rem;
    margin-top: 2rem;
    z-index: 999;
    box-sizing: border-box;
    padding: 0 1rem 0 1rem;
}

/* /mobile full screen popup/ */
.mobile-navigation-popup {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--vwfs-petrol);
    color: white;
    display: none;
    z-index: 1;
}

/* menu container  */
.mob-nav-menu {
    margin: auto;
    width: 80%;
    padding: 0;
    height:60%;
}

/*                     */
/*  MOBILE STYLES HERE */
/*  this is the tree menu styles  */

.drilldown-level {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--vwfs-petrol);
    transition: left 0.3s ease;
    z-index: 1;

}

.drilldown-level.active {
    left: 0;
}

.mobile-logo-link {
    max-width: 50%;
    display: flex;
    flex-direction: column;
}

.mobile-logo-image {
    width: 100%;
}

.mobile-navigation {
    display: none;
}

.mobile-navigation-cta-container {
    position: fixed;
    width: 100%;
    bottom: 0;
    padding-bottom: 4rem;
    padding-top: 2rem;
    background: var(--vwfs-petrol);
}

.bottom-curve-mobile {
    position: fixed;
    width: 100%;
    right: 0;
    bottom: 0;
    z-index: 3;
}

.mobile-navigation-popup.active {
    display: block;
}

/* sub meu container */
.mob-nav-menu-list-item {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-item-description{
    width: 100%;
    color:  #C6DFE7;
    margin-top: .2rem;
    margin-bottom: .5rem;
}  

/* menu and lnk formatting */
.mob-nav-menu li a {
    display: flex;
    justify-content: space-between;
    color: white !important;
    text-decoration: none !important;
    width: 100%;
    padding-top: 1rem;
    text-align: left;
    font-size: 20px;
}

/* has get totle only */
.mob-nav-menu .menu-item-has-children {
    border-bottom: var(--vwfs-grey) 1px solid;
    font-weight: bold !important;
}

/*  menu item currently expanded */
.mob-nav-menu li.active>ul {
    display: flex;
}

/* Responsive Styles mobile */
@media (max-width: 1439px) {

    .desktop-navigation {
        display: none;
    }

    .mobile-navigation {

        display: flex;
    }
}

.mobile-navigation-popup.active {
    display: flex;
}