/*!*****************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[3].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[3].use[3]!./src/blocks/header/style.scss ***!
  \*****************************************************************************************************************************************************************************************************************************************************/
/* -------------------------------- 

File#: header
Title: Header
Descr: Header component including logo and navigation.

-------------------------------- */
:root {
  --bsaweb--header--height: 67px;
  --bsaweb--header--logo--max-height: 30px;
  --bsaweb--header--container--max-width: 100%;
  --bsaweb--header--container--margin-x: var(
  	--wp--style--root--padding-right,
  	1.5rem
  );
  --bsaweb--header--nav-inner--max-width: 100%;
  --bsaweb--header--nav-inner--margin-x: var(
  	--wp--style--root--padding-right,
  	1.5rem
  );
  --bsaweb--header--nav-inner--gap: 1rem;
}
@media (min-width: 64rem) {
  :root {
    --bsaweb--header--height: 96px;
    --bsaweb--header--logo--max-height: 46px;
    --bsaweb--header--nav-inner--gap: 2rem;
  }
}

.bsab4s-header {
  width: 100%;
}
.bsab4s-header::before {
  /* used in JS to detect menu style */
  display: none;
  content: "mobile";
}

.bsab4s-header,
.bsab4s-header__wrapper {
  position: relative;
  z-index: var(--bsaweb--header--z-index, 3);
  height: var(--bsaweb--header--height);
}

.bsab4s-header__wrapper {
  background-color: inherit;
  color: inherit;
}

.bsab4s-header__container {
  height: 100%;
  width: calc(100% - 2 * var(--bsaweb--header--container--margin-x));
  max-width: var(--bsaweb--header--container--max-width);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bsab4s-header__mobile-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.bsab4s-header__logo {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: var(--bsaweb--header--logo--padding-y, 0.75rem);
  padding-bottom: var(--bsaweb--header--logo--padding-y, 0.75rem);
}
.bsab4s-header__logo img,
.bsab4s-header__logo svg {
  display: block;
  width: auto;
  height: 100%;
  max-height: var(--bsaweb--header--logo--max-height);
}

.bsab4s-header__icon-btns {
  display: flex;
  align-items: center;
  gap: var(--space-3xs);
}

.bsab4s-header__icon-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: auto;
  min-width: 44px;
  height: 44px;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s;
}
.bsab4s-header__icon-btn .icon {
  font-size: 20px; /* icon size */
  display: block;
}
.bsab4s-header__icon-btn span {
  display: block;
  margin-top: var(--space-3xs);
}

.bsab4s-header__icon-btn--nav-control {
  --bsaweb--anim-menu-btn--size: 44px;
  --bsaweb--anim-menu-btn--icon--size: 27px;
  --bsaweb--anim-menu-btn--icon--stroke: 2px;
}

.bsab4s-header__nav {
  top: var(--bsaweb--header--height);
  left: 0;
  width: 100%;
  background-color: var(--color-base);
  z-index: var(--bsaweb--header--nav--z-index, 5);
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

.bsab4s-header__nav--is-visible {
  clip: auto;
  -webkit-clip-path: none;
          clip-path: none;
  height: 100dvh;
  max-height: calc(100dvh - var(--bsaweb--header--height));
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  visibility: visible;
}

.bsab4s-header__nav-inner {
  padding-top: var(--bsaweb--header--nav-inner--padding-top, 1rem);
  padding-bottom: var(--bsaweb--header--nav-inner--padding-bottom, 1rem);
  width: calc(100% - 2 * var(--bsaweb--header--nav-inner--margin-x));
  max-width: var(--bsaweb--header--nav-inner--max-width);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: var(--bsaweb--header--nav-inner--gap, 1rem);
}

@media not (prefers-reduced-motion) {
  .bsab4s-header[data-animation=on] .bsab4s-header__wrapper--is-fixed {
    position: fixed;
    top: calc(-1 * var(--bsaweb--header--height));
    left: 0;
    width: 100%;
    height: var(--bsaweb--header--height);
    z-index: var(--bsaweb--header--z-index--fixed, 10);
    transition: transform 0.2s;
  }
  .bsab4s-header[data-animation=on] .bsab4s-header__wrapper--slides-down {
    transform: translateY(100%);
    box-shadow: var(--bsaweb--header--wrapper--shadow--slides-down, "none");
  }
}
@media not all and (min-width: 64rem) {
  .bsab4s-header__hide\@mobile {
    display: none !important;
  }
}
@media (min-width: 64rem) {
  .bsab4s-header::before {
    content: "desktop";
  }
  .bsab4s-header__hide\@desktop {
    display: none !important;
  }
  .bsab4s-header__logo {
    flex-shrink: 0;
  }
  .bsab4s-header__nav {
    position: static;
    top: initial;
    left: initial;
    clip: auto;
    -webkit-clip-path: none;
            clip-path: none;
    height: auto;
    max-height: none;
    overflow: visible;
    overscroll-behavior: auto;
    visibility: visible;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
  }
  .bsab4s-header__nav-inner {
    height: 100%;
    width: 100%;
    padding: 0;
    flex-direction: row;
    justify-content: space-between;
    gap: var(--bsaweb--header--nav-inner--gap, 2rem);
  }
}
/**
 * The following styles get applied both on the front of your site
 * and in the editor.
 *
 * Replace them with your own styles or remove the file completely.
 */

/*# sourceMappingURL=style-index.css.map*/