.orbiblox-container {
  width: 90%;
  max-width: var(--orbi-container-default);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
}
.orbiblox-header {
  position: relative;
  width: 100%;
  background-color: var(--orbi-header-bg);
  transition: all 0.4s linear;
  z-index: 901;
}
.orbiblox-header p, .orbiblox-header ul, .orbiblox-header ol {
  color: var(--orbi-header-text);
}
.orbiblox-header a {
  color: var(--orbi-header-text);
  text-decoration: none;
}
.orbiblox-header a:hover {
  color: var(--orbi-header-text-hover);
}
.orbiblox-header-sticky {
  position: fixed;
  left: 0;
  top: 0;
}
.orbiblox-header-sticky + main > *:first-child:not(section, article) {
  margin-top: var(--orbi-header-height);
}
.orbiblox-header-logo-wrapper {
  width: 55%;
  max-width: 300px;
  max-height: 60px;
  margin: 0.75rem 2rem 0.75rem 0;
}
.orbiblox-header-logo-wrapper .orbiblox-header-logo-link {
  display: grid;
  grid-template-areas: "stack";
  width: auto;
  max-height: 100%;
  margin-right: 1rem;
}
.orbiblox-header-logo-wrapper .orbiblox-header-logo-link:hover {
  opacity: 0.8;
}
.orbiblox-header-logo-wrapper .orbiblox-header-logo-link .orbiblox-header-logo {
  display: block;
  max-width: 100%;
  height: auto;
  grid-area: stack;
  transition: all 0.4s ease;
}
.orbiblox-header-logo-wrapper .orbiblox-header-logo-link .orbiblox-header-logo-sticky {
  visibility: hidden;
  opacity: 0;
}
.orbiblox-header-navigation {
  flex-shrink: 0;
}
.orbiblox-header-navigation > div {
  height: 100%;
}
.orbiblox-header-navigation .menu {
  display: flex;
  list-style: none;
  height: 100%;
  margin: 0;
  padding: 0;
}
.orbiblox-header-navigation .menu > ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style-type: none;
}
.orbiblox-header-navigation .menu > .menu-item,
.orbiblox-header-navigation .menu > ul .page_item {
  margin: 0 2rem 0 0;
}
.orbiblox-header-navigation .menu > .menu-item:last-child,
.orbiblox-header-navigation .menu > ul .page_item:last-child {
  margin-right: 0;
}
.orbiblox-header-navigation .menu > .menu-item > a,
.orbiblox-header-navigation .menu > ul .page_item > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  height: 100%;
  padding-block: 1rem;
}
.orbiblox-header-navigation .menu > .menu-item > a:before,
.orbiblox-header-navigation .menu > ul .page_item > a:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 70%;
  translate: -50% 100%;
  width: 2rem;
  max-width: 0;
  height: 3px;
  background-color: var(--orbi-header-text);
  transition: max-width 0.4s linear;
}
.orbiblox-header-navigation .menu > .menu-item > a:hover:before,
.orbiblox-header-navigation .menu > ul .page_item > a:hover:before {
  background-color: var(--orbi-header-text-hover);
}
@media only screen and (min-width: 1080px) {
  .orbiblox-header-navigation .menu > .menu-item > a:hover:before,
  .orbiblox-header-navigation .menu > ul .page_item > a:hover:before {
    max-width: 60%;
  }
}
.orbiblox-header-navigation .menu > .menu-item.current-menu-item > a:before,
.orbiblox-header-navigation .menu > ul .page_item.current-menu-item > a:before {
  max-width: 60%;
}
.orbiblox-header-navigation .menu .menu-item-has-children {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.orbiblox-header-navigation .menu .menu-item-has-children.current-menu-ancestor > a:hover {
  opacity: 0.8;
}
.orbiblox-header-navigation .menu .menu-item-has-children.current-menu-ancestor > a:before {
  max-width: 60%;
}
.orbiblox-header-navigation .menu .menu-item-has-children > a {
  padding-right: 0.5rem;
}
.orbiblox-header-navigation .menu .menu-item-has-children > a:hover ~ .submenu-mobile-toggler {
  background-color: var(--orbi-header-text-hover);
}
.orbiblox-header-navigation .menu .menu-item-has-children .submenu-mobile-toggler {
  display: block;
  width: 12px;
  height: 100%;
  background-color: var(--orbi-header-text);
  mask: url(../../icons/icon-caret-down.svg) center/100% auto no-repeat;
  mask-size: contain;
  -webkit-mask: url(../../icons/icon-caret-down.svg) center/100% auto no-repeat;
  -webkit-mask-size: contain;
  line-height: 0;
  cursor: pointer;
  transition: rotate 0.4s 0.2s linear, background-color 0.4s ease;
}
.orbiblox-header-navigation .menu .menu-item-has-children > .sub-menu {
  display: flex;
  flex-direction: column;
  transition: all 0.4s 0.2s linear;
  list-style: none;
  max-height: 0;
  margin: 0;
  overflow: hidden;
}
.orbiblox-header-navigation .menu .menu-item-has-children > .sub-menu > .menu-item {
  margin: 0.5rem 1.25rem 0;
}
.orbiblox-header-navigation .menu .menu-item-has-children > .sub-menu > .menu-item:first-child {
  margin-top: 1.25rem;
}
.orbiblox-header-navigation .menu .menu-item-has-children > .sub-menu > .menu-item:last-child {
  margin-bottom: 1.25rem;
}
.orbiblox-header-navigation .menu .menu-item-has-children > .sub-menu > .menu-item > a {
  font-size: 95%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.orbiblox-header-navigation .menu .menu-item-has-children > .sub-menu > .menu-item > a:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 3px;
  margin-right: 0;
  background-color: var(--orbi-header-text);
  transition: all 0.2s linear;
}
.orbiblox-header-navigation .menu .menu-item-has-children > .sub-menu > .menu-item > a:hover::before {
  background-color: var(--orbi-header-text-hover);
}
.orbiblox-header-navigation .menu .menu-item-has-children > .sub-menu > .current-menu-item a:before {
  width: 0.75rem;
  margin-right: 0.5rem;
}
@media only screen and (min-width: 1080px) {
  .orbiblox-header-navigation .menu .menu-item-has-children > .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-left: -1.25rem;
    min-width: 260px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 10px 10px;
    opacity: 0;
    background-color: var(--orbi-header-dropdown-bg, transparent);
    backdrop-filter: blur(80px);
  }
  .orbiblox-header-navigation .menu .menu-item-has-children > .sub-menu.orbi-dropdown-flip {
    left: auto;
    right: 0;
  }
  .orbiblox-header-navigation .menu .menu-item-has-children > .sub-menu > .menu-item > a:hover:before {
    width: 0.75rem;
    margin-right: 0.5rem;
  }
}
@media only screen and (min-width: 1080px) {
  .orbiblox-header-navigation .menu .menu-item-has-children:has(> a:hover, .sub-menu:hover, .submenu-mobile-toggler:hover) .sub-menu, .orbiblox-header-navigation .menu .menu-item-has-children:has(a:focus-visible) .sub-menu {
    max-height: var(--max-submenu-height, 300px);
    opacity: 1;
  }
  .orbiblox-header-navigation .menu .menu-item-has-children:has(> a:hover, .sub-menu:hover, .submenu-mobile-toggler:hover) > a:before, .orbiblox-header-navigation .menu .menu-item-has-children:has(a:focus-visible) > a:before {
    max-width: 60%;
  }
  .orbiblox-header-navigation .menu .menu-item-has-children:has(> a:hover, .sub-menu:hover, .submenu-mobile-toggler:hover) .submenu-mobile-toggler, .orbiblox-header-navigation .menu .menu-item-has-children:has(a:focus-visible) .submenu-mobile-toggler {
    rotate: 180deg;
  }
}
@media only screen and (max-width: 1079.98px) {
  .orbiblox-header-navigation {
    position: fixed;
    width: 100%;
    max-width: 360px;
    height: 100svh;
    right: -360px;
    top: 0;
    overflow: auto;
    padding: calc(var(--orbi-header-height) + 5%) 5%;
    background-color: var(--orbi-header-dropdown-bg, transparent);
    backdrop-filter: blur(80px);
    transition: all 0.4s 0.4s linear;
    z-index: 905;
  }
  .orbiblox-header-navigation > div,
  .orbiblox-header-navigation > div.menu {
    height: auto;
  }
  .orbiblox-header-navigation ul.menu,
  .orbiblox-header-navigation div.menu > ul {
    flex-direction: column;
    align-items: stretch;
    height: auto;
  }
  .orbiblox-header-navigation ul.menu > .menu-item,
  .orbiblox-header-navigation div.menu > ul > .menu-item {
    margin: 0 0 1.8rem 0;
  }
  .orbiblox-header-navigation ul.menu > .menu-item > a,
  .orbiblox-header-navigation div.menu > ul > .menu-item > a {
    height: auto;
    padding: 0;
  }
  .orbiblox-header-navigation ul.menu > .menu-item.current-menu-item > a:before, .orbiblox-header-navigation ul.menu > .menu-item.current-menu-ancestor > a:before,
  .orbiblox-header-navigation div.menu > ul > .menu-item.current-menu-item > a:before,
  .orbiblox-header-navigation div.menu > ul > .menu-item.current-menu-ancestor > a:before {
    left: 0;
    top: 100%;
    translate: 0 100%;
  }
  .orbiblox-header-navigation ul.menu > .menu-item.menu-item-has-children,
  .orbiblox-header-navigation div.menu > ul > .menu-item.menu-item-has-children {
    flex-wrap: wrap;
  }
  .orbiblox-header-navigation ul.menu > .menu-item.menu-item-has-children.current-menu-ancestor .sub-menu > li:first-child,
  .orbiblox-header-navigation div.menu > ul > .menu-item.menu-item-has-children.current-menu-ancestor .sub-menu > li:first-child {
    margin-top: 1.5rem;
  }
  .orbiblox-header-navigation ul.menu > .menu-item.menu-item-has-children .sub-menu,
  .orbiblox-header-navigation div.menu > ul > .menu-item.menu-item-has-children .sub-menu {
    order: 3;
    width: 100%;
  }
  .orbiblox-header-navigation ul.menu > .menu-item.menu-item-has-children .sub-menu > li,
  .orbiblox-header-navigation div.menu > ul > .menu-item.menu-item-has-children .sub-menu > li {
    margin: 0.75rem 0 0 1.5rem;
  }
  .orbiblox-header-navigation ul.menu > .menu-item.menu-item-has-children .sub-menu > li:first-child,
  .orbiblox-header-navigation div.menu > ul > .menu-item.menu-item-has-children .sub-menu > li:first-child {
    margin-top: 1rem;
  }
  .orbiblox-header-navigation ul.menu > .menu-item.menu-item-has-children .sub-menu > li:last-child,
  .orbiblox-header-navigation div.menu > ul > .menu-item.menu-item-has-children .sub-menu > li:last-child {
    margin-bottom: 0.5rem;
  }
  .orbiblox-header-navigation ul.menu > .menu-item.menu-item-has-children .submenu-mobile-toggler,
  .orbiblox-header-navigation div.menu > ul > .menu-item.menu-item-has-children .submenu-mobile-toggler {
    width: 16px;
    height: 16px;
  }
  .orbiblox-header-navigation ul.menu > .menu-item.menu-item-has-children.orbi-mobile-submenu-expanded .sub-menu,
  .orbiblox-header-navigation div.menu > ul > .menu-item.menu-item-has-children.orbi-mobile-submenu-expanded .sub-menu {
    max-height: var(--max-submenu-height);
  }
  .orbiblox-header-navigation ul.menu > .menu-item.menu-item-has-children.orbi-mobile-submenu-expanded .submenu-mobile-toggler,
  .orbiblox-header-navigation div.menu > ul > .menu-item.menu-item-has-children.orbi-mobile-submenu-expanded .submenu-mobile-toggler {
    rotate: 180deg;
  }
}
@media only screen and (max-width: 579.98px) {
  .orbiblox-header-navigation {
    padding: calc(var(--orbi-header-height) + 10%) 8%;
  }
}
@media (max-width: 360px) {
  .orbiblox-header-navigation {
    right: -100%;
  }
}
.orbiblox-header-mobile-menu-toggle {
  all: unset;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  width: 32px;
  height: 24px;
  align-self: center;
  flex-shrink: 0;
  cursor: pointer;
  z-index: 910;
}
.orbiblox-header-mobile-menu-toggle:focus-visible {
  outline: 2px solid;
  outline-offset: 6px;
}
.orbiblox-header-mobile-menu-toggle span {
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background-color: var(--orbi-header-text);
  transition: all 0.4s ease;
}
@media only screen and (min-width: 1080px) {
  .orbiblox-header-mobile-menu-toggle {
    display: none;
  }
}
.orbiblox-header-fixed, .orbiblox-header-fixed-mobile {
  background-color: var(--orbi-header-bg-sticky);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.orbiblox-header-fixed .orbiblox-header-logo:has(+ .orbiblox-header-logo-sticky), .orbiblox-header-fixed-mobile .orbiblox-header-logo:has(+ .orbiblox-header-logo-sticky) {
  visibility: hidden;
  opacity: 0;
}
.orbiblox-header-fixed .orbiblox-header-logo:has(+ .orbiblox-header-logo-sticky) + .orbiblox-header-logo-sticky, .orbiblox-header-fixed-mobile .orbiblox-header-logo:has(+ .orbiblox-header-logo-sticky) + .orbiblox-header-logo-sticky {
  visibility: visible;
  opacity: 1;
}
.orbiblox-header-fixed ul, .orbiblox-header-fixed ol, .orbiblox-header-fixed a, .orbiblox-header-fixed-mobile ul, .orbiblox-header-fixed-mobile ol, .orbiblox-header-fixed-mobile a {
  color: var(--orbi-header-text-sticky);
}
.orbiblox-header-fixed .orbiblox-header-navigation ul.menu > .menu-item > a:before,
.orbiblox-header-fixed .orbiblox-header-navigation ul.menu > .menu-item-has-children .submenu-mobile-toggler,
.orbiblox-header-fixed .orbiblox-header-navigation ul.menu .menu-item-has-children > .sub-menu > .menu-item > a:before,
.orbiblox-header-fixed .orbiblox-header-navigation ul.header-menu > .menu-item > a:before,
.orbiblox-header-fixed .orbiblox-header-navigation ul.header-menu .menu-item-has-children > .sub-menu > .menu-item > a:before,
.orbiblox-header-fixed .orbiblox-header-mobile-menu-toggle span, .orbiblox-header-fixed-mobile .orbiblox-header-navigation ul.menu > .menu-item > a:before,
.orbiblox-header-fixed-mobile .orbiblox-header-navigation ul.menu > .menu-item-has-children .submenu-mobile-toggler,
.orbiblox-header-fixed-mobile .orbiblox-header-navigation ul.menu .menu-item-has-children > .sub-menu > .menu-item > a:before,
.orbiblox-header-fixed-mobile .orbiblox-header-navigation ul.header-menu > .menu-item > a:before,
.orbiblox-header-fixed-mobile .orbiblox-header-navigation ul.header-menu .menu-item-has-children > .sub-menu > .menu-item > a:before,
.orbiblox-header-fixed-mobile .orbiblox-header-mobile-menu-toggle span {
  background-color: var(--orbi-header-text-sticky);
  transition: all 0.4s ease;
}
.orbiblox-header-fixed a:hover, .orbiblox-header-fixed-mobile a:hover {
  color: var(--orbi-header-text-sticky-hover);
}
.orbiblox-header-fixed .orbiblox-header-navigation ul.menu > .menu-item > a:hover:before,
.orbiblox-header-fixed .orbiblox-header-navigation ul.menu > .menu-item-has-children > a:hover ~ .submenu-mobile-toggler,
.orbiblox-header-fixed .orbiblox-header-navigation ul.menu .menu-item-has-children > .sub-menu > .menu-item > a:hover:before,
.orbiblox-header-fixed .orbiblox-header-navigation ul.header-menu > .menu-item > a:hover:before,
.orbiblox-header-fixed .orbiblox-header-navigation ul.header-menu .menu-item-has-children > .sub-menu > .menu-item > a:hover:before,
.orbiblox-header-fixed .orbiblox-header-mobile-menu-toggle:hover span,
.orbiblox-header-fixed .orbiblox-header-navigation ul.menu > .menu-item-has-children .submenu-mobile-toggler:hover, .orbiblox-header-fixed-mobile .orbiblox-header-navigation ul.menu > .menu-item > a:hover:before,
.orbiblox-header-fixed-mobile .orbiblox-header-navigation ul.menu > .menu-item-has-children > a:hover ~ .submenu-mobile-toggler,
.orbiblox-header-fixed-mobile .orbiblox-header-navigation ul.menu .menu-item-has-children > .sub-menu > .menu-item > a:hover:before,
.orbiblox-header-fixed-mobile .orbiblox-header-navigation ul.header-menu > .menu-item > a:hover:before,
.orbiblox-header-fixed-mobile .orbiblox-header-navigation ul.header-menu .menu-item-has-children > .sub-menu > .menu-item > a:hover:before,
.orbiblox-header-fixed-mobile .orbiblox-header-mobile-menu-toggle:hover span,
.orbiblox-header-fixed-mobile .orbiblox-header-navigation ul.menu > .menu-item-has-children .submenu-mobile-toggler:hover {
  background-color: var(--orbi-header-text-sticky-hover);
}
.orbiblox-header-fixed .orbiblox-header-navigation ul.menu .menu-item-has-children > .sub-menu, .orbiblox-header-fixed-mobile .orbiblox-header-navigation ul.menu .menu-item-has-children > .sub-menu {
  background-color: var(--orbi-header-bg-sticky);
}
@media only screen and (max-width: 1079.98px) {
  .orbiblox-header-fixed .orbiblox-header-navigation, .orbiblox-header-fixed-mobile .orbiblox-header-navigation {
    background-color: var(--orbi-header-dropdown-bg-sticky, #fff);
  }
}
.orbiblox-header-fixed .orbiblox-header-navigation ul.menu .menu-item-has-children > .sub-menu {
  background-color: var(--orbi-header-dropdown-bg-sticky, #fff);
}
@media only screen and (max-width: 1079.98px) {
  .orbiblox-header.mobile-nav-open .orbiblox-header-navigation {
    right: 0;
    box-shadow: -4px 0 6px rgba(0, 0, 0, 0.25);
  }
  .orbiblox-header.mobile-nav-open .orbiblox-header-mobile-menu-toggle span {
    position: absolute;
    top: 50%;
    left: 0;
  }
  .orbiblox-header.mobile-nav-open .orbiblox-header-mobile-menu-toggle span:nth-child(1) {
    rotate: -45deg;
  }
  .orbiblox-header.mobile-nav-open .orbiblox-header-mobile-menu-toggle span:nth-of-type(2) {
    opacity: 0;
  }
  .orbiblox-header.mobile-nav-open .orbiblox-header-mobile-menu-toggle span:nth-child(3) {
    rotate: 45deg;
  }
}

body:has(.mobile-nav-open):after {
  right: 360px;
}
@media (max-width: 360px) {
  body:has(.mobile-nav-open):after {
    right: 100%;
  }
}

.admin-bar .orbiblox-header-sticky {
  top: 32px;
}
@media only screen and (max-width: 782px) {
  .admin-bar .orbiblox-header-sticky {
    top: 46px;
  }
}
@media only screen and (max-width: 1079.98px) {
  .admin-bar .orbiblox-header-sticky .orbiblox-header-navigation {
    top: 32px;
    height: calc(100svh - 32px);
  }
}
@media only screen and (max-width: 600px) {
  .admin-bar #wpadminbar {
    position: fixed;
  }
}
