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

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

#showMenu {
    position: fixed;
    top: 0.4rem;
    right: 0.75rem;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 12;
    opacity: 1;
}

#showMenu .hambLine1, #showMenu .hambLine2, #showMenu .hambLine3 {
    position: absolute;
    height: 3px;
    background-color: var(--theme-primary-color);
    transition: all 0.4s;
}
#showMenu .hambLine1 {
    width: 50px;
    top: 10px;
    transform-origin: left center;
}
#showMenu .hambLine2 {
    width: 40px;
    top: 20px;
}
#showMenu .hambLine3 {
    width: 30px;
    top: 30px;
    transform-origin: left center;
}

#showMenu.open .hambLine1 {
    transform: rotate(45deg) translate(0px, -10px);
    background-color: #fff;
}
.open .hambLine2 {
    opacity: 0;
}
#showMenu.open .hambLine3 {
    transform: rotate(-45deg) translate(0px, 10px);
    background-color: #fff;
}

/* ----------------- Mobile Nav ---------------- */
#offCanvasRight {
    background-color: var(--theme-secondary-color);
    padding-top: 3rem;
}
#offCanvasRight ul:not(.contextual-links) {
  display: block;
  list-style-type: none;
  margin-left: 0;
}
#offCanvasRight ul li {
  width: 100%;
  text-align: left;
  padding: 0.5rem;
}
#offCanvasRight ul a,
#offCanvasRight ul span {
  color: var(--theme-white-color);
  font-size: 1rem;
  text-transform: uppercase;
}