/* ----------------- Hamburger icon ------------------ */
.mobile-nav-toggle { 
    position: relative;
} 
#showMenu {
    position: fixed;
    top: 10px;
    left: 10px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 1001;
    opacity: 1;
}
#showMenu .hambLine1, #showMenu .hambLine2, #showMenu .hambLine3 {
    width: 50px;
    height: 5px;
    /*background-color: #1c468d;*/
    background-color: var(--theme-color);
    transition: all 0.4s;
}
#showMenu .hambLine1 {
    margin-bottom: 5px;
    transform-origin: left center;
}
#showMenu .hambLine2 {
    margin-bottom: 5px;
    transform-origin: left center;
}
#showMenu .hambLine3 {

    transform-origin: left center;
}

#showMenu.open .hambLine1 {
    transform: rotate(45deg) translate(0px, -10px);
    background-color: var(--theme-color);
}
.open .hambLine2 {
    opacity: 0;
}
#showMenu.open .hambLine3 {
    transform: rotate(-45deg) translate(0px, 10px);
    background-color: var(--theme-color);
}
/* ----------------- Mobile Nav ---------------- */

.region-mobile-nav ul.menu {
display: block;
margin-left: 0;
}
.region-mobile-nav ul.menu li {
width: 100%;
text-align: center;
font-family: 'Swiss721CBold';
}
.region-mobile-nav ul.menu a {
color: #fff;
font-size: 24px;
text-transform: uppercase;
font-family: 'Swiss721CBold';
}
/*** Drill down region of mobile viewport menu - Foundation and Drupal menu ***/
#offCanvasRight {
    background: #333333;
    z-index: 1001;
}
.mobile-navigation.vertical ul {
    background-color: #333333;
    list-style-type: none;
    padding: 0;
    margin: 0;    
} 
.mobile-navigation.vertical ul li[role='treeitem'] a,
.mobile-navigation.vertical ul li[role='treeitem'] span {
    text-transform: uppercase;
    font-family: 'Swiss721CBold';
    background-color: #333333;
    display: block;
    padding: 0.66667rem;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid #262626;
    transition: background 300ms ease;
}
.mobile-navigation.vertical ul li[role='treeitem'] a:hover {
    background: #242424;
}
.drilldown .js-drilldown-back>a::before, .drilldown .is-drilldown-submenu-parent>a::after {
border-color: transparent transparent transparent white;
}
ul.mobile-navigation.vertical.drilldown li label {
    display: block;
    padding: 0.3rem 0.9375rem;
    font-family: 'Swiss721CBold';
    color: #999999;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: bold;
    background: #444444;
    border-top: 1px solid #5e5e5e;
    border-bottom: none;
    margin: 0;    
}
ul.mobile-navigation.vertical.drilldown li label.mobilenav_title_label {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Swiss721CBold';
    text-align: left;
    padding-left: 10px;    
    font-size: 1rem;
}