.mobile-call-to-action {
  position: fixed;
  bottom: 10px;
  right: 10px;
  left: 10px;
  z-index: 200;
}
.mobile-call-to-action > a {
  display: block;
}
@media (min-width: 761px) {
  .mobile-call-to-action {
    display: none;
  }
}
body.is-menu-open .mobile-call-to-action {
  display: none;
}
.block-header-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  z-index: 200;
  transition: background-color var(--anim-speed) ease-in-out;
  backdrop-filter: blur(10px);
}
@media (min-width: 761px) {
  .block-header-mobile {
    display: none;
  }
}
body.admin-bar .block-header-mobile {
  top: var(--wp-admin--admin-bar--height, 0);
}
.block-header-mobile > * {
  margin-block-start: 0;
}
.block-header-mobile > .mobile-top {
  padding-left: var(--padding);
  padding-right: var(--padding);
  background: rgba(255, 255, 255, 0.5);
  width: 100%;
  display: flex;
  padding-top: 1em;
  padding-bottom: 1em;
  align-items: center;
  box-sizing: border-box;
  transition: max-height var(--anim-speed) ease-in-out, padding-top var(--anim-speed) ease-in-out, padding-bottom var(--anim-speed) ease-in-out;
  overflow: clip;
  max-height: 5em;
}
body.scrolled-down:not(.is-menu-open) .block-header-mobile > .mobile-top {
  max-height: 0;
  padding-bottom: 0;
  padding-top: 0;
}
.block-header-mobile > .mobile-top > .logo {
  flex: 0 0 8em;
}
.block-header-mobile > .mobile-top > .logo img,
.block-header-mobile > .mobile-top > .logo svg {
  width: 100%;
  height: auto;
  display: block;
  fill: var(--fg);
}
.block-header-mobile > .mobile-top > .filler {
  flex: 1;
}
.block-header-mobile > .mobile-top > .opening-times {
  white-space: nowrap;
  text-align: center;
}
.block-header-mobile > .mobile-top > .opening-times > .title {
  font-size: 80%;
}
.block-header-mobile > .mobile-top > .menus {
  flex: 1 1 auto;
  text-align: right;
}
.block-header-mobile > .mobile-top > .menus.switcher {
  text-align: left;
}
.block-header-mobile > .mobile-top > .menus .dropdown {
  position: relative;
}
.block-header-mobile > .mobile-top > .menus .dropdown > .selected {
  cursor: pointer;
}
.block-header-mobile > .mobile-top > .menus .dropdown > .selected > a {
  pointer-events: none;
}
.block-header-mobile > .mobile-top > .menus .dropdown > .selected > .arrow {
  display: inline-block;
}
.block-header-mobile > .mobile-top > .menus .dropdown > .selected > .arrow > svg {
  width: 1em;
  height: auto;
  fill: var(--fg);
  vertical-align: middle;
  margin-left: 0.15em;
  transition: fill var(--anim-speed) ease-in-out;
}
.block-header-mobile > .mobile-top > .menus .dropdown .items {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background: transparent;
  min-width: 10em;
  z-index: 100;
  padding: 0.5em 0;
}
.block-header-mobile > .mobile-top > .menus .dropdown:hover .items, .block-header-mobile > .mobile-top > .menus .dropdown:focus-within .items {
  display: block;
}
.block-header-mobile > .mobile-top > .menus > .menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline;
}
.block-header-mobile > .mobile-top > .menus > .menu > li {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  padding-left: 1em;
  padding-bottom: 0.35em;
}
.block-header-mobile > .mobile-top > .menus > .menu > li::marker {
  content: none;
}
.block-header-mobile > .mobile-top > .menus > .menu > li a,
.block-header-mobile > .mobile-top > .menus > .menu > li > a {
  font: var(--font-headline);
  text-transform: uppercase;
  color: var(--fg);
  font-size: 80%;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 0.6em;
  text-decoration-thickness: 2px;
  text-decoration-color: transparent;
}
.block-header-mobile > .mobile-top > .menus > .menu > li a:hover,
.block-header-mobile > .mobile-top > .menus > .menu > li > a:hover {
  text-decoration-color: var(--fg);
}
.block-header-mobile > .mobile-top > .menus > .menu > li.menu-item-has-children:focus-within > .sub-menu, .block-header-mobile > .mobile-top > .menus > .menu > li.menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  height: auto;
  transform: translateY(0);
}
.block-header-mobile > .mobile-top > .menus > .menu > li.menu-item-has-children:focus-within > a::after, .block-header-mobile > .mobile-top > .menus > .menu > li.menu-item-has-children:hover > a::after {
  background-color: var(--c1);
}
.block-header-mobile > .mobile-top > .menus > .menu > li.menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 0.8em;
  height: 0.8em;
  margin-left: 0.21em;
  mask-image: inline-svg('<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 11 6.912"><path d="M5.5 6.912 0 1.412 1.412 0 5.5 4.088 9.588 0 11 1.412z"/></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: 100% auto;
  background-color: var(--c1);
  pointer-events: none;
  transition: background-color var(--anim-speed) ease-in-out;
}
.block-header-mobile > .mobile-top > .menus > .menu > li.current-menu-item > a {
  text-decoration-color: var(--fg);
}
.block-header-mobile > .mobile-top > .hamburger {
  text-align: right;
  position: relative;
  right: calc(-1 * var(--padding));
}
body.is-menu-open .block-header-mobile > .sub-navigation {
  display: none;
}
.block-header-mobile > .sub-navigation {
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.8);
  width: 100%;
  overflow: hidden;
}
.block-header-mobile > .sub-navigation:not(.has-subnav) {
  display: none;
}
.block-header-mobile > .sub-navigation > .subnav-toggle {
  -moz-appearance: none;
       appearance: none;
  background: none;
  border: none;
  border-bottom: 1px solid transparent;
  padding: 0.7em var(--padding);
  margin: 0;
  box-shadow: none;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5em;
  cursor: pointer;
  color: var(--fg);
  font: var(--font-headline);
  font-size: 100%;
  text-transform: uppercase;
  text-align: left;
  transition: border-color var(--anim-speed) ease-in-out;
}
.block-header-mobile > .sub-navigation > .subnav-toggle > .labels {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.block-header-mobile > .sub-navigation > .subnav-toggle > .labels > .parent-label {
  font-size: 0.65em;
  line-height: 1.2;
  opacity: 0.6;
}
.block-header-mobile > .sub-navigation > .subnav-toggle > .labels > .label {
  font-size: 1.05em;
  line-height: 1.25;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.block-header-mobile > .sub-navigation > .subnav-toggle > .arrow {
  flex: 0 0 auto;
  display: inline-flex;
}
.block-header-mobile > .sub-navigation > .subnav-toggle > .arrow > svg {
  width: 0.7em;
  height: auto;
  fill: var(--fg);
  transition: transform var(--anim-speed) ease-in-out;
}
.block-header-mobile > .sub-navigation.is-open > .subnav-toggle {
  border-bottom-color: rgba(0, 0, 0, 0.17);
}
.block-header-mobile > .sub-navigation.is-open > .subnav-toggle > .arrow > svg {
  transform: rotate(180deg);
}
.block-header-mobile > .sub-navigation ul.sub-menu {
  margin: 0;
  padding: 0 var(--padding);
  list-style: none;
  display: block;
  box-sizing: border-box;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height var(--anim-speed) ease-in-out, opacity var(--anim-speed) ease-in-out, padding-bottom var(--anim-speed) ease-in-out;
}
.block-header-mobile > .sub-navigation ul.sub-menu > li > a {
  display: block;
  padding: 0.7em 0;
}
.block-header-mobile > .sub-navigation.is-open ul.sub-menu {
  max-height: 100vh;
  opacity: 1;
  padding-bottom: 1em;
}
.block-header-mobile > .sub-navigation a {
  font: var(--font-headline);
  font-size: 100%;
  text-transform: uppercase;
  color: var(--fg);
  text-decoration: underline;
  text-underline-offset: 0.6em;
  text-decoration-thickness: 2px;
  text-decoration-color: transparent;
}
.block-header-mobile > .sub-navigation a.in-view {
  text-decoration: underline;
  text-decoration-color: var(--indicator);
}
.block-header-mobile > .mobile-menu {
  display: none;
  width: 100%;
  padding-left: calc(var(--padding) + 1.5em);
  padding-right: calc(var(--padding) + 1.5em);
  padding-top: 2em;
  box-sizing: border-box;
}
.block-header-mobile > .mobile-menu > .call-to-action {
  margin-top: 0.5em;
}
.block-header-mobile > .mobile-menu > .call-to-action > .btn {
  display: block;
}
.block-header-mobile > .mobile-menu > .address {
  margin-top: 30px;
}
.block-header-mobile > .mobile-menu > .menus {
  width: 100%;
}
.block-header-mobile > .mobile-menu > .menus .sub-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  opacity: 0;
  height: 0;
  transform: translateY(-1em) scale(0.8);
  overflow: hidden;
  interpolate-size: allow-keywords;
  transition: height var(--anim-speed) ease-in-out, opacity var(--anim-speed) ease-in-out, transform var(--anim-speed) ease-in-out, padding-bottom var(--anim-speed) ease-in-out;
}
.block-header-mobile > .mobile-menu > .menus .sub-menu a {
  font: var(--font-base);
  color: var(--fg);
  text-decoration: none;
  text-underline-offset: 0.2em;
  text-decoration-thickness: 2px;
  text-decoration-color: transparent;
  display: block;
  padding: 0.3em 0;
}
.block-header-mobile > .mobile-menu > .menus .sub-menu .current-menu-item > a {
  text-decoration-color: var(--indicator);
}
.block-header-mobile > .mobile-menu > .menus .sub-menu:focus-within,
.block-header-mobile > .mobile-menu > .menus .is-open > .sub-menu {
  display: block;
  opacity: 1;
  height: auto;
  padding-bottom: 2em;
  transform: translateY(0) scale(1);
}
.block-header-mobile > .mobile-menu > .menus > .menu {
  padding: 0;
  margin: 0;
  display: block;
  text-align: left;
  list-style: none;
}
.block-header-mobile > .mobile-menu > .menus > .menu > li {
  display: block;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.114);
}
.block-header-mobile > .mobile-menu > .menus > .menu > li::marker {
  content: "";
}
.block-header-mobile > .mobile-menu > .menus > .menu > li > button.open-submenu {
  -moz-appearance: none;
       appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  box-shadow: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 3em;
  height: 3em;
  font-size: 3vw;
  cursor: pointer;
  color: var(--fg);
}
.block-header-mobile > .mobile-menu > .menus > .menu > li > button.open-submenu > svg {
  fill: var(--fg);
  width: 30%;
  height: auto;
}
.block-header-mobile > .mobile-menu > .menus > .menu > li.is-open > button.open-submenu > svg {
  transform: rotate(180deg);
}
.block-header-mobile > .mobile-menu > .menus > .menu > li > a {
  font: var(--font-headline);
  text-transform: uppercase;
  color: var(--fg);
  text-decoration: none;
  display: block;
  font-size: 1.2em;
  padding: 0.8em 0;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-thickness: 2px;
  text-decoration-color: transparent;
}
.block-header-mobile > .mobile-menu > .menus > .menu > li.current-menu-item > a {
  text-decoration-color: var(--indicator);
}
.block-header-mobile > .mobile-menu > .menus > .menu > li:last-child > a {
  margin-bottom: 0;
}
.block-header-mobile .hamburger-button {
  display: block;
  width: 4em;
  height: 4em;
  position: relative;
  --mytheme-hamburger-color: var(--fg);
  --mytheme-hamburger-bar-height: 2px;
}
.block-header-mobile .hamburger-button .hamburger-button-wrapper {
  display: block;
  width: var(--mytheme-hamburger-width, 1.25em);
  height: var(--mytheme-hamburger-height, 0.75em);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.block-header-mobile .hamburger-button .hamburger-button-wrapper > i:nth-child(1) {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--mytheme-hamburger-bar-height, 1px);
  background-color: var(--mytheme-hamburger-color, currentColor);
  transition: all 0.2s ease-in-out;
}
.block-header-mobile .hamburger-button .hamburger-button-wrapper > i:nth-child(2) {
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  width: 100%;
  height: var(--mytheme-hamburger-bar-height, 1px);
  background-color: var(--mytheme-hamburger-color, currentColor);
  transition: all 0.2s ease-in-out;
}
.block-header-mobile.is-open {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: -1px;
  background: var(--bg);
  z-index: 2000;
  overflow: auto;
}
.block-header-mobile.is-open > .mobile-menu {
  display: block;
}
.block-header-mobile.is-open .hamburger-button > .hamburger-button-wrapper > i:nth-child(1) {
  top: 50%;
  transform: rotate(45deg);
}
.block-header-mobile.is-open .hamburger-button > .hamburger-button-wrapper > i:nth-child(2) {
  top: 50%;
  transform: rotate(-45deg);
}
body.is-menu-open {
  overflow: hidden;
}