body.tb-nav-open {
  height: 100vh;
  overflow: hidden;
}
.tb-nav {
  --font-family: var(--e-global-typography-secondary-font-family);
  --item-color: var(--e-global-color-primary);
  --item-hover-color: var(--e-global-color-accent);
  --font-size: 2rem;
  --font-size-mobile: 1.5rem;
  --font-weight: 500;
  --item-spacing: 8px;
  --background: #fff;
  --submenu-item-spacing: 8px;
  --toggle-border: var(--e-global-color-92cdd5e);
  --toggle-border-open: transparent;
  --toggle-bar-width: 30px;
  --toggle-bar-height: 2px;
  --toggle-bar-background: var(--e-global-color-primary);
  --toggle-bar-spacing: 8px;
  --overlay-background: #000000E5;
  position: relative !important;
  padding: 0;
  opacity: 1 !important;
}
.tb-nav__menu-wrap {
  position: fixed;
  z-index: 11;
  top: 140px;
  left: 0;
  display: flex;
  align-content: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  height: calc(100vh - 80px);
  overflow-x: hidden;
  overflow-y: auto;
  opacity: 0;
  transition: none;
  pointer-events: none;
}
.tb-nav__desktop-menu {
  display: none !important;
}
.tb-nav .menu {
  z-index: 5;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0;
  margin: 0;
  font-family: var(--font-family);
  font-weight: var(--font-weight);
  text-align: left;
  list-style: none;
}
.tb-nav.open .tb-nav__menu-wrap {
  transform: none;
  transition: all 0.7s ease;
  opacity: 1;
  pointer-events: auto;
}
.tb-nav .menu > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 0px;
  margin: 0px 30px;
  transition: 0.7s;
}
.tb-nav a {
  color: var(--item-color);
  font-size: var(--font-size-mobile);
  text-transform: uppercase;
  letter-spacing: .4px;
}
.tb-nav a:hover {
  color: var(--item-hover-color);
}

/* sub menu */
.tb-nav__mob-back-link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 50px;
  color: red;
  margin-top: -50px;
  z-index: 300;
}
tb-nav .menu-item-has-children > a:after {
  display: none !important;
}
.tb-nav__mob-back-link:before {
  display: block;
  width: 40px;
  height: 40px;
  margin-left: 1rem;
  z-index: 300;
}
.tb-nav .sub-menu {
  position: relative;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 0px;
  height: 0px;
  padding: 0;
  margin: 0;
  list-style: none;
  transform: none;
  opacity: 0;
  pointer-events: none;
}
.tb-nav .menu-item-has-children.open > .sub-menu {
  transform: none;
  pointer-events: auto;
  height: auto;
  opacity: 1;
  transition: 0.4s ease all;}
.tb-nav .sub-menu li {
  min-width: 100px;
  text-align: center;
}
.tb-nav .sub-menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 0px;
  text-align: left;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0px 30px;
  transition: 0.3s;
  color: var(--e-global-color-secondary);
  font-size: 1.2rem;
}

/* toggle button - more specific selector so we overwrite elementor button site settings */
.tb-nav .tb-nav__toggle {
  position: relative;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0.5rem 1rem;
  border: 2px solid var(--toggle-border);
  border-radius: 60px;
  background-color: transparent;
  outline: none;
}
.tb-nav .tb-nav__toggle:hover,
.tb-nav .tb-nav__toggle:focus {
  background-color: transparent;
  border-color: var(--toggle-border);
}
.tb-nav .tb-nav__toggle * {
  pointer-events: none;
}
.tb-nav .tb-nav__burger-wrap {
  position: relative;
  width: var(--toggle-bar-width);
}
.tb-nav__toggle-bar {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  height: var(--toggle-bar-height);
  margin-top: calc(-1 * var(--toggle-bar-height) / 2);
  background-color: var(--toggle-bar-background);
  transition: .2s;
}
.tb-nav__toggle-bar:first-child {
  transform: translateY(calc(-1 * var(--toggle-bar-spacing)));
}
.tb-nav__toggle-bar:last-child {
  transform: translateY(var(--toggle-bar-spacing));
}
.tb-nav.open .menu > li > a {
  color: var(--e-global-color-primary);
}
.tb-nav.open .tb-nav__toggle {
  border-color: var(--toggle-border-open);
}
.tb-nav.open .tb-nav__toggle-bar {
  background-color: var(--e-global-color-primary)
}
.tb-nav.open .tb-nav__toggle-bar:nth-child(1),
.tb-nav.open .tb-nav__toggle-bar:nth-child(4) {
  opacity: 0;
}
.tb-nav.open .tb-nav__toggle-bar:nth-child(2) {
  transform: rotate(45deg);
}
.tb-nav.open .tb-nav__toggle-bar:nth-child(3) {
  transform: rotate(-45deg);
}
@media (max-width: 320px) {
  .tb-nav__toggle-text {
    display: none;
  }
}

.tb-nav__overlay {
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--overlay-background);
  transition: none;
  opacity: 1;
  transform: translateX(100%);
  pointer-events: none;
}
.tb-nav.open .tb-nav__overlay {
  transform: none;
  opacity: 1;
  pointer-events: auto;
}

@media (min-width:1024px) {
  .tb-nav .tb-nav__burger-wrap {
    width: 50px;
    --toggle-bar-spacing: 11px;
  }
  .tb-nav__overlay, .tb-nav__menu-wrap {
    left: 60%;
    width: 40%;
  }
  .tb-nav .menu > li > a {
    font-size: 2rem;
    justify-content: center;
  }
  .tb-nav .sub-menu a {
    font-size: 1.5rem;
  }
  .tb-nav .sub-menu a:hover, .tb-nav .menu > li > a:hover {
    color: var(--item-hover-color);
  }
}