#mobile-burger {
  color: inherit;
  cursor: pointer;
  display: inline-block;
  height: 3.2rem;
  outline: transparent;
  position: relative;
  width: 3.2rem;
  z-index: 666;
  transition: all 350ms ease-out;
}
#mobile-burger .lines {
  height: 100%;
  color: inherit;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 350ms ease-out;
  width: 100%;
}
#mobile-burger .lines [class*=line] {
  background-color: currentColor;
  border-radius: 0.3rem;
  color: inherit;
  display: inline-block;
  height: 0.2rem;
  left: 50%;
  position: absolute;
  top: 30%;
  transform-origin: center;
  transition: all 350ms ease-out;
  transform: translate(-50%, -50%);
  width: 66%;
  z-index: 100;
}
#mobile-burger .lines .line2 {
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
#mobile-burger .lines .line3 {
  top: 70%;
}
#mobile-burger.active .lines {
  transform: rotate(90deg);
}
#mobile-burger.active .lines .line1, #mobile-burger.active .lines .line2, #mobile-burger.active .lines .line3 {
  background-color: rgb(255, 255, 255);
  left: 50%;
  top: 50%;
}
#mobile-burger.active .lines .line1 {
  transform: translate(-50%, -50%) rotate(-45deg);
}
#mobile-burger.active .lines .line2 {
  transform: scale(0);
  opacity: 0;
}
#mobile-burger.active .lines .line3 {
  transform: translate(-50%, -50%) rotate(45deg);
}
#mobile-burger:hover, #mobile-burger:focus {
  opacity: 0.9;
}
@media only screen and (min-width: 1024px) {
  #mobile-burger:not(.permaburger) {
    display: none;
  }
}
#mobile-burger.hide {
  display: none;
}

#site-mob-nav {
  align-items: flex-start;
  align-content: flex-start;
  background-color: rgb(110, 126, 94);
  color: rgb(255, 255, 255);
  display: flex;
  flex-wrap: nowrap;
  font-family: "Libre Baskerville", serif;
  font-size: 2rem;
  gap: var(--grid-gutter);
  justify-content: center;
  height: 100vh;
  line-height: 0;
  opacity: 0;
  overflow-x: hidden;
  overflow-y: hidden;
  padding: 10.8rem 1.6rem 1.6rem 1.6rem;
  position: fixed;
  right: -160vw;
  top: 0;
  transition: opacity 350ms ease-out, right 0ms ease-out 350ms;
  width: 100vw;
}
#site-mob-nav::before {
  aspect-ratio: 1/0.98;
  background-image: url("/images/Layout/the-bracebridge-logo.svg");
  background-size: 100% 100%;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0.1;
  position: absolute;
  transform: translate(-33%, 62%);
  transition: all 1200ms ease-out 350ms;
  width: 50%;
}
@media only screen and (min-width: 384px) {
  #site-mob-nav {
    font-size: 2.4rem;
  }
}
@media only screen and (min-width: 768px) {
  #site-mob-nav {
    padding: 20.4rem 3.2rem 3.2rem 3.2rem;
  }
}
@media only screen and (min-width: 960px) {
  #site-mob-nav {
    align-items: center;
    align-content: center;
    flex-direction: column;
    justify-content: space-around;
  }
}
#site-mob-nav #mobile-con {
  align-items: flex-start;
  align-content: flex-start;
  display: flex;
  flex-wrap: nowrap;
  height: 100%;
  justify-content: flex-start;
  max-width: 76.8rem;
  width: 100%;
}
@media only screen and (min-width: 960px) {
  #site-mob-nav #mobile-con {
    align-items: center;
    align-content: center;
    height: auto;
    max-width: 150.4rem;
  }
}
#site-mob-nav .mob-nav {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  font-weight: 400;
  font-size: 2rem;
  height: 100%;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
  position: relative;
  text-align: left;
  width: 100%;
}
@media only screen and (min-width: 960px) {
  #site-mob-nav .mob-nav {
    display: grid;
    gap: 0 var(--grid-gutter);
    grid-template-columns: repeat(5, 1fr);
    height: auto;
  }
}
#site-mob-nav .mob-nav li {
  display: inline-block;
  line-height: 1;
  width: 100%;
}
#site-mob-nav .mob-nav li.menu-top {
  align-items: stretch;
  border-bottom: 0.1rem solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: flex-start;
}
@media only screen and (min-width: 960px) {
  #site-mob-nav .mob-nav li.menu-top {
    display: none;
  }
}
#site-mob-nav .mob-nav li.menu-top .mob-close-menu {
  flex: 0 0 auto;
  padding: 0;
  position: relative;
  width: 4.6rem;
}
#site-mob-nav .mob-nav li.menu-top .mob-close-menu::before, #site-mob-nav .mob-nav li.menu-top .mob-close-menu::after {
  background-color: currentColor;
  content: "";
  height: 0.1rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform-origin: center;
  width: 50%;
}
#site-mob-nav .mob-nav li.menu-top .mob-close-menu::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
#site-mob-nav .mob-nav li.menu-top .mob-close-menu::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
#site-mob-nav .mob-nav li.menu-top .menu-top-link {
  border-left: 0;
  color: rgb(255, 255, 255);
  flex: 1 1 auto;
  font-size: 1.2em;
  font-weight: 400;
  width: auto;
}
#site-mob-nav .mob-nav a {
  color: inherit;
  display: inline-block;
  line-height: 1.1;
  padding: 0.8rem;
  text-decoration: none;
  transition: all 350ms ease-out;
  width: 100%;
}
#site-mob-nav .mob-nav a:hover, #site-mob-nav .mob-nav a:focus {
  background-color: rgba(255, 255, 255, 0.2);
}
#site-mob-nav .mob-nav a.mob-cons-menu {
  display: none;
  visibility: hidden;
}
@media only screen and (min-width: 960px) {
  #site-mob-nav .mob-nav a.mob-cons-menu {
    display: inline-block;
    visibility: visible;
  }
}
#site-mob-nav .mob-nav a.mob-open-menu {
  padding-right: 4rem;
  position: relative;
  z-index: 1;
}
#site-mob-nav .mob-nav a.mob-open-menu::after {
  aspect-ratio: 1/1;
  border: 0.1rem solid currentColor;
  border-bottom: 0;
  border-left: 0;
  content: "";
  height: 30%;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translate(0, -50%) rotate(45deg);
  transform-origin: center;
}
@media only screen and (min-width: 960px) {
  #site-mob-nav .mob-nav a.mob-open-menu {
    display: none;
    visibility: hidden;
  }
}
#site-mob-nav .mob-nav ul {
  background-color: rgb(110, 126, 94);
  box-shadow: 0 0 2.4rem rgba(0, 0, 0, 0.1);
  height: 100%;
  left: 0;
  margin: 0 0 2.4rem 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  top: 0;
  transition: all 350ms ease-out;
  transform: translateX(100vw);
  visibility: hidden;
  width: 100%;
  z-index: 3;
}
#site-mob-nav .mob-nav ul.open {
  transform: translateX(0);
  visibility: visible;
}
@media only screen and (min-width: 960px) {
  #site-mob-nav .mob-nav ul {
    background-color: transparent;
    box-shadow: none;
    height: auto;
    left: auto;
    margin: 0;
    padding-left: 1.6rem;
    position: static;
    top: auto;
    transform: none;
    visibility: visible;
  }
}
@media only screen and (min-width: 960px) {
  #site-mob-nav .mob-nav > li > a {
    font-size: 4rem;
  }
}
@media only screen and (min-width: 960px) {
  #site-mob-nav .mob-nav > li > ul > li > a {
    font-size: 3rem;
  }
}
#site-mob-nav #non-men {
  align-items: flex-start;
  display: none;
  font-size: 1.6rem;
  gap: var(--grid-gutter);
  justify-content: flex-end;
  max-width: 150.4rem;
  text-align: left;
  width: 100%;
}
@media only screen and (min-width: 960px) {
  #site-mob-nav #non-men {
    display: flex;
  }
}
#site-mob-nav #non-men .maf-content {
  gap: 0;
  width: auto;
}
#site-mob-nav #non-men .maf-content.soc {
  max-width: 35.2rem;
  width: 100%;
}
#site-mob-nav #non-men .button, #site-mob-nav #non-men .social-icons {
  margin-top: 1.6rem;
}
#site-mob-nav #non-men .social-icons {
  --icon-colour: white;
  --text-colour: white;
}
@media only screen and (min-width: 1024px) {
  #site-mob-nav:not(.permaburger) {
    display: none;
    visibility: hidden;
  }
}
body.hsquish #site-mob-nav {
  padding-top: 10.8rem;
}
#site-mob-nav.expanded {
  opacity: 1;
  right: 0;
  transition: opacity 350ms ease-out;
}
#site-mob-nav.hide {
  display: none;
}/*# sourceMappingURL=tvw-acc-menu.css.map */