/* mega menu list */

.nav-menu {
    display: block;
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
}
/* a top level navigation item in the mega menu */

.nav-item {
    list-style: none;
    display: inline-block;
    padding: 0;
    margin: 0;
    cursor: pointer;
}
/* first descendant link within a top level navigation item */

.nav-item > a {
    color: #fff;
    font-weight: bold;
    line-height: 1.8em;
    position: relative;
    display: inline-block;
    padding: 0.2em 1.6em;
    border-bottom: 6px solid transparent;
}
/* focus/open states of first descendant link within a top level 
           navigation item */

/* open state of first descendant link within a top level 
           navigation item */

.nav-item > a:hover, .nav-item > a:focus, .nav-item > a.open, .nav-item > a.focus {
    border-bottom: 6px solid #9B1103;
    z-index: 1;
    color: #fff;
    text-decoration: none;
}
/* sub-navigation panel */

.sub-nav {
    position: absolute;
    display: none;
    text-align: left;
    padding: 1.2em;
    background: rgba(0,0,0,0.80);
    width: 97%;
    left: 0px;
	z-index: 3002;
}
/* sub-navigation panel open state */

.sub-nav.open {
    display: block;
}

/* list of items within sub-navigation panel */
.nav-lists {

}
.sub-nav-group.category>span {
    display: block;
    margin: 0px 0px 5px 0px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1px;
    padding: 4px 4px 6px 6px;
} 

.sub-nav-group.category a:hover {
    color: #fff;
    text-decoration: none;
    background-color: #9B1103;
    -webkit-transition: background-color 100ms linear;
    -moz-transition: background-color 100ms linear;
    -o-transition: background-color 100ms linear;
    -ms-transition: background-color 100ms linear;
    transition: background-color 100ms linear;
}
.sub-nav-group.category a {
    color: #fff;
    font-weight: 400;
    margin-bottom: 5px;
    padding: 5px;
    display: block;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    letter-spacing: .3px;
    word-wrap: break-word;
}
.sub-nav ul {
    display: inline-block;
    vertical-align: top;
    margin: 0 0 0 0;
    padding: 0;
}
.sub-nav .level1 > ul {
    width: 23%;
    border-right: 2px solid #fff;
    position: relative;
    margin-right: 1%;
}
.sub-nav .level1 > ul:after {
    content: '';
    display: block;
    width: 1px;
    height: 100%;
    background: #eee;
    position: absolute;
    right: -2px;
    top: 0;
}
.sub-nav .level1 > ul:last-child { border-right: none; }
.sub-nav .level1 > ul:last-child:after { display: none; }

/* list item within sub-navigation panel */

.sub-nav li {
    display: block;
    list-style-type: none;
    margin: 0;
    padding: 0;
    margin-left: 8px;
}

.nav-lists.level2, .nav-lists.level2 ul>span {
    display: none;
}
.nav-lists.level2 ul li {
     margin: 0 0 0 15px;
}
    

