.gb_div_hamburger_wrap{
  position: relative;
}

/* Button */
.gb_div_hamburger_btn{
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

/* Icon (3 Balken) */
.gb_div_hamburger_icon{
  width: 22px;
  height: 2px;
  background: currentColor;
  position: relative;
  display: block;
}
.gb_div_hamburger_icon::before,
.gb_div_hamburger_icon::after{
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: currentColor;
}
.gb_div_hamburger_icon::before{ top: -7px; }
.gb_div_hamburger_icon::after{ top: 7px; }

/* Overlay */
.gb_div_offcanvas_overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 9998;
}

/* Drawer */
.gb_div_offcanvas{
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(360px, 88vw);
  background: #fff;
  z-index: 9999;
  padding: 18px;
  overflow: auto;
  
}

.gb_div_offcanvas_close{
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  margin-left: auto;
  display: block;
}

.gb_div_offcanvas_menu{
  list-style: none;
  margin: 14px 0 0 0;
  padding: 0;
}
.gb_div_offcanvas_menu li{
  margin: 0;
  padding: 0;
}
.gb_div_offcanvas_menu a{
  display: block;
  padding: 12px 6px;
  text-decoration: none;
}



.gb_div_offcanvas button,
.gb_div_offcanvas button:hover,
.gb_div_offcanvas button:focus,
.gb_div_hamburger_wrap .gb_div_hamburger_btn,
.gb_div_hamburger_wrap .gb_div_hamburger_btn:hover,
.gb_div_hamburger_wrap .gb_div_hamburger_btn:focus{
  background: transparent;
  color: #000;
  box-shadow: none;
  border: none;
  border-radius: 0;
  padding: 10px 5px;
}