BUTTON.connectWalletButton {
  display: inline-block;
  padding: 10px 30px;
  font-size: 18px;
  font-weight: bold;
  color: white !important;
  text-align: center;
  -webkit-text-decoration: none;
  text-decoration: none;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  background-image: linear-gradient(to right, #8e2de2, #ff6bcb);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.connectWalletMobileHolder BUTTON.connectWalletButton {
  padding: 4px 15px;
  margin-right: 1rem;
  margin-top: -3px;
}
.ggw_main_menu LI.menu-item-has-children {
  position: relative;
}
.ggw_main_menu LI.menu-item-has-children>A {
  display: flex;
  align-items: center;
}
.ggw_main_menu LI.menu-item-has-children>A::after {
  content: '\27A7';
  color: #FFFFFF;
  display: block;
  margin-left: 0.25em;
  transform: rotate(90deg);
}
.ggw_main_menu LI.menu-item-has-children:hover>UL {
  display: block;
}
.ggw_main_menu LI.menu-item-has-children>UL {
  background: #261349;
  display: none;
  position: absolute;
  left: 0px;
  top: 100%;
  padding: 0.1rem
}
.ggw_main_menu LI.menu-item-has-children>UL>LI {
  display: block;
  white-space: nowrap;
  padding: 1rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  margin: 0;
  border-bottom: 1px solid #321b5d;
}
.ggw_main_menu LI.menu-item-has-children>UL>LI:hover {
  background: #170a2f;
}

.ggw_mobile_menu {
  position: relative;
  z-index: 999;
}

.ggw_mobile_menu_holder {
  display: block;
  position: absolute;
  right: -1rem;
  top: -2rem;
  background: none;
  transition: all 0.4s ease-in-out;
  min-width: 100vw; /* 320px; */
  max-height: 100vh;
}
.ggw_main_menu_mobile {
  display: none;
  transition: all 0.4s ease-in-out;
  overflow-y: auto;
  max-height: 100vh;
}
.ggw_main_menu_mobile UL,
.ggw_main_menu_mobile LI {
  display: block;
  padding: 0;
  margin: 0;
}
.ggw_main_menu_mobile DIV>UL>LI {
  border-bottom: 1px solid #55378c;
}
.ggw_main_menu_mobile LI A {
  font-weight: bold;
}
.ggw_main_menu_mobile LI A:hover {
  text-decoration: underline;
  /* background: #170a2f;*/
}

.ggw_main_menu_mobile UL>LI LI>A {
  display: flex;
  align-items: center;
}
.ggw_main_menu_mobile UL>LI LI>A::before {
  content: '';
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  margin-right: 0.5rem;
  background: #d152d4;
  border-radius: 100%;
}
UL#menu-main-menu {
  margin-bottom: 10em;
}
.ggw_main_menu_mobile DIV>UL>LI:last-child {
  border-bottom: 0;
  margin-bottom: 14rem;
}
.ggw_main_menu_mobile LI {
  padding: 1rem;
  margin: 0;
}
.ggw_mobile_menu_button_holder {
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-right: 1rem;
  display: flex;
  justify-content: flex-end;
  background: none;
  transition: all 0.4s ease-in-out;
}

.hamburger {
  position: relative;
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: inline-block;
}

.hamburger input {
  display: none;
}

.lines {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 24px;
  height: 20px;
}

.line {
  width: 32px;
  height: 4px;
  background-color: white;
  transition: all 0.4s ease-in-out;
  border-radius: 1px;
}

#menu-toggle:checked ~ .lines .line:nth-child(1) {
  transform: rotate(45deg) translateY(4px) translateX(5px)
}

#menu-toggle:checked ~ .lines .line:nth-child(2) {
  opacity: 0;
}

#menu-toggle:checked ~ .lines .line:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px) translateX(8px);
}
.ggw_mobile_menu.-opened .ggw_mobile_menu_holder {
  background: #261349;
}
.ggw_mobile_menu.-opened .ggw_mobile_menu_button_holder {
  background: #170a2f;
}
.ggw_mobile_menu.-opened .ggw_main_menu_mobile {
  display: block;
}
.ggw_mobile_menu .ggw_mobile_menu_overlay {
  display: none;
}
.ggw_mobile_menu.-opened .ggw_mobile_menu_overlay {
  display: block;
  background: #00000040;
  opacity: 0;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}
.ggw_mobile_menu {
  display: none;
}
.ggw_main_menu {
  display: block;
}
.mainHeader DIV.logo {
  white-space: nowrap;
}
.ggw_main_menu_holder {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width:800px) {
  .stop-scrolling {
    height: 100%;
    overflow: hidden;
  }
  .ggw_main_menu_holder {
    display: none;
  }
  MAIN.container {
    padding-top: 6em;
  }
  .mainHeader {
    display: flex;
    justify-content: space-between;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 999;
    background: #170a2f !important;
    width: 100vw;
  }
  .mainHeader DIV.logo {
    position: relative;
    z-index: 1000;
  }
  .ggw_mobile_menu {
    display: block;
  }
  .ggw_main_menu {
    display: none;
  }
}