/* ----------------- Hamburger icon ------------------ */

.mobile-nav-toggle { 
  position: relative;
}

#showMenu {
    position: fixed;
    top: 50px;
    right: 30px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 1001;
    opacity: 1;
}

#showMenu .hambLine1, #showMenu .hambLine2, #showMenu .hambLine3 {
    position: absolute;
    width: 50px;
    height: 4px;
    background-color: var(--theme-color);
    transition: all 0.4s;
}
#showMenu .hambLine1 {
    top: 10px;
    transform-origin: left center;
}
#showMenu .hambLine2 {
    top: 20px;
}
#showMenu .hambLine3 {
    top: 30px;
    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;
  }
  .region-mobile-nav ul.menu a {
    color: #fff;
    font-size: 24px;
    text-transform: uppercase;
  }
  
  /*** Drill down region of mobile viewport menu - Foundation and Drupal menu ***/
  #offCanvasRight {
      background: #333333;
      z-index: 1001;
  }
  .mobile-menu.vertical ul {
      background-color: #333333;
      list-style-type: none;
      padding: 0;
      margin: 0;    
  } 
  
  
  .mobile-menu.vertical ul li[role='treeitem'] a,
  .mobile-menu.vertical ul li[role='treeitem'] span {
      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-menu.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-menu.vertical.drilldown li label {
      display: block;
      padding: 0.3rem 0.9375rem;
      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-menu.vertical.drilldown li label.mobilenav_title_label,
  ul.mobile-menu li:first-child label {
      color: rgba(255, 255, 255, 0.7);
      font-family: 'LatoBlack';
      text-align: left;
      padding-left: 10px;    
      font-size: 1rem;
  }