/* Menu Buttons */
.mobile-menu-button {
  all: unset;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

/* Menu Buttons Icons */
.mobile-menu-button svg {
  width: 32px;
  height: 32px;
}

/* Open */
.mobile-menu-open svg {
  fill: var(--gonect-secondary-color);
}

/* Close */
.mobile-menu-close svg {
  fill: var(#000000);
  border-radius: 50%;
  box-shadow: 0 5px 23px rgba(188, 207, 219, 0.35);
  border-top: 1px solid #f8f8f8;
  padding: 7px;
  width: 24px;
  height: 24px;
}

/* Active menu */
.menu-active {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0) !important;
}

/* Styles for all top-level menu items */
#mobile-nav > ul > li.menu-item .menu-item-wrapper:focus-within > a,
#mobile-nav > ul > li.menu-item .menu-item-wrapper:hover > a {
  padding-left: 12px;
  border-left: var(--gonect-secondary-color) 3px solid;
}

/* Styles for sub-menu items */
#mobile-nav .sub-menu .menu-item .menu-item-wrapper:focus-within > a,
#mobile-nav .sub-menu .menu-item .menu-item-wrapper:hover > a {
  padding-left: 12px;
  border-left: var(--gonect-secondary-color) 3px solid;
}

/* Menu */
#mobile-menu-main {
  position: fixed;
  width: 270px;
  top: 0;
  right: 0;
  bottom: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #fff;
  z-index: 999999;
  transform: translate3d(100%, 0, 1px);
  transition: transform 0.3s ease;
  backface-visibility: hidden;
}

/* Nav Overaly */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 120vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99999;
}

.no-scroll {
  overflow: hidden;
  height: 100%;
}

#mobile-nav ul {
  list-style: none;
}

#mobile-nav ul#menu-main {
  width: 100%;
  padding: 0px;
  margin: 0px;
}

#mobile-nav ul#menu-main li {
  border-bottom: 1px solid #eee;
  width: 100%;
}

#mobile-nav ul#menu-main .sub-menu li:last-child {
  border-bottom: none;
}

#mobile-nav .menu-item .sub-menu a {
  font-size: 1rem;
}

#mobile-nav ul#menu-main .menu-item-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
}

#mobile-nav .toggle-symbol {
  padding: 0rem 1rem;
  font-size: 1.5rem;
  cursor: pointer;
}

#mobile-nav .menu-item a {
  padding-top: 10px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 10px;
  color: #111111;
  font-size: 1.1rem;
  font-weight: 600;
  width: 100%;
}

#mobile-nav .sub-menu {
  display: none;
}
