/* mega menu list */




@media screen and (max-width:599px) {
    .navPlacementStyle {}
/*    .nav-item {
        width: 100%;
    }*/
    .sub-nav.open {
        background-color: white;
        z-index: 500;
        margin-left: 100px !important;
    }
    .sub-nav ul {
        display: block !important;
    }
}
.nav-menu {
    display: block;
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: 15;
}

/* a top level navigation item in the mega menu */

.nav-item {
    list-style: none;
    display: inline-block;
    padding: 0;
    margin: 0;
}
.nav-item i {
    margin-left: 7px;
}

/* first descendant link within a top level navigation item */

.nav-item > a {
    position: relative;
    display: inline-block;
    padding: 0.5em 1em;
    margin: 0 0 -1px 0;
    border: 1px solid transparent;
}

/* focus/open states of first descendant link within a top level 
       navigation item */

.nav-item > a:focus,
.nav-item > a.open {
    border: 1px solid #dedede;
    color: black;
}

/* open state of first descendant link within a top level 
       navigation item */

.nav-item > a.open {
    background-color: #fff;
    border-bottom: none;
    z-index: 1;
}

/* sub-navigation panel */

.sub-nav {
    position: absolute;
    display: none;
    top: 2.6em;
    margin-top: -1px;
    padding: 0.5em 1em;
    border: 1px solid #dedede;
    background-color: #fff;
}

/* sub-navigation panel open state */

.sub-nav.open {
    display: block;
}


@media screen and (min-width:576px) {
    .sub-nav.open {
        z-index: 500;
    }
}

@media screen and (min-width:600px) {
    .sub-nav.open {
        z-index: 1;
    }

}

@media screen and (min-width:768px) {
    .sub-nav.open {
        z-index: 500;
    }
}



    /* list of items within sub-navigation panel */

    .sub-nav ul,
    .sub-nav ol {
        display: table-cell;
        vertical-align: top;
        margin: 0 1em 0 0;
        padding: 0;
    }

    /* list item within sub-navigation panel */

    .sub-nav li {
        display: block;
        list-style-type: none;
        margin: 0;
        padding: 0;
        min-width: 175px;
    }

    .sub-nav a.focus {
        color: black;
    }
