.Header {
  position: sticky;
  top: 0;
  z-index: var(--layerHeaderZIndex);
  padding: 0.5rem 0;
  background: white;
  border-bottom: 1px solid var(--colorBrand);
  transition: var(--animationBase);
}

@media (min-width: 36.01rem) {
  .Header {
    padding: 1rem 0;
  }
}

@media (min-width: 64.01rem) {
  .Header {
    padding: 1.5rem 0;
  }
}

.Header.is-up {
  transform: translateY(-100%);
}

.Header:not(.is-up).is-sticked {
  box-shadow: 0 0 0.5rem var(--colorShadeBg);
}

.Header-main {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  column-gap: var(--spaceXxs);
}

@media (min-width: 48.01rem) {
  .Header-main {
    flex-direction: column;
    width: calc(100% - 13.5rem);
  }
}

.Header-frame {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 36.01rem) {
  .Header-frame {
    gap: 2.5rem;
  }
}

.Header-row {
  display: flex;
  justify-content: space-between;
}

.Header-row:first-of-type {
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 0;
  border-bottom: none;
}

@media (min-width: 48.01rem) {
  .Header-row:first-of-type {
    padding-bottom: 0.5rem;
  }
}

@media (min-width: 64.01rem) {
  .Header-row:first-of-type {
    justify-content: space-between;
    border-bottom: 1px solid var(--colorText);
  }
}

.Header-row:last-of-type {
  min-height: 3.25rem;
  align-items: center;
  margin-left: auto;
  padding-top: 0;
}

@media (min-width: 48.01rem) {
  .Header-row:last-of-type {
    padding-top: 0.5rem;
  }
}

@media (min-width: 75.01rem) {
  .Header-row:last-of-type {
    margin-left: 0;
  }
}

.Header-rowWrapper {
  display: flex;
  gap: var(--spaceSm);
}

.Header-logo {
  margin-right: auto;
  width: 13.5rem;
}

@media (min-width: 48.01rem) {
  .Header-logo {
    min-width: 13.5rem;
  }
}

.Header-logo img,
.Header-logo svg {
  max-width: 100%;
  height: auto;
}

.Header-boxes {
  display: none;
  position: relative;
  font-size: 1rem;
  gap: 1.5rem;
}

@media (min-width: 64.01rem) {
  .Header-boxes {
    display: flex;
  }
}

.Header-box {
  display: flex;
}

.Header-hmb {
  display: flex;
  flex-direction: column;
  font-size: 0.5rem;
  font-weight: 700;
  margin: auto;
  padding-left: var(--spaceLg);
  cursor: pointer;
}

.Header-hmb svg {
  width: 1.6rem;
  height: auto;
}

@media (max-width: 36rem) {
  .Header-hmb {
    margin-right: var(--spaceMd);
  }
}

@media (max-width: 48rem) {
  .Header-hmb {
    margin-left: 0;
    margin-right: var(--spaceMd);
    padding-left: var(--spaceMd);
  }
}

@media (min-width: 75.01rem) {
  .Header-hmb {
    display: none;
  }
}

.Header-contact {
  color: var(--colorText);
}

.Header-contactLabel {
  margin: 0 0.5rem;
}

.Header-contactLabel:first-of-type {
  margin: 0 0.5rem 0 0;
}

.Header-contactLabel:first-letter {
  text-transform: uppercase;
}

.Header-contactFlex {
  display: flex;
  flex-direction: row;
}

@media (max-width: 90rem) {
  .Header-contactFlex {
    flex-direction: column;
  }
}

.Header-contactDivider {
  color: var(--colorBrand);
  margin: 0 0.5rem;
}

@media (max-width: 90rem) {
  .Header-contactDivider {
    display: none;
  }
}

.Header-contact.StyledText p a {
  color: var(--colorText);
  text-decoration: underline;
}

.Header-button {
  display: inline-flex;
  margin-left: auto;
  padding: 0.5rem;
  font-size: var(--textXs);
  text-align: center;
}

@media (min-width: 36.01rem) {
  .Header-button {
    font-size: var(--textSm);
    padding: 0.5rem 1.5rem;
  }
}

@media (min-width: 75.01rem) {
  .Header-button {
    font-size: 1.125rem;
  }
}

.Header-button svg {
  display: none;
  width: 1.5rem;
  height: 1.5rem;
  margin: 0 0.5rem 0 0;
}

@media (min-width: 36.01rem) {
  .Header-button svg {
    display: block;
  }
}

.Header-wrapper {
  display: flex;
  gap: var(--spaceMd);
}

.Header-socials {
  display: none;
  gap: var(--spaceXs);
  align-items: center;
}

@media (min-width: 48.01rem) {
  .Header-socials {
    display: flex;
  }
}

.Header-socials a {
  height: 2rem;
}

.Header-quicksearch {
  width: 22.5rem;
}

.Header-quicksearch .QuickSearch-icon {
  color: var(--colorText);
}

.Header-quicksearch .QuickSearch-input {
  font-size: 1rem;
  background: var(--colorShadeBgLight);
  border: 1px solid var(--colorOutlines);
  border-radius: var(--sizeButtonBorderRadius);
}

.Header .AppNavigation-closer {
  z-index: var(--layerPageSecondaryZIndex);
}

.HeaderBox {
  position: relative;
  display: flex;
}

.HeaderBox-content {
  color: currentColor;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: var(--animationBase);
  position: relative;
  white-space: nowrap;
  font-size: .7em;
  line-height: 1;
}

.HeaderBox-content.is-active, .HeaderBox-content:hover, .HeaderBox-content:focus {
  color: var(--colorBrand);
  text-decoration: none;
}

.HeaderBox-content svg {
  font-size: .86em;
  height: 1.5rem;
  width: 1.5rem;
}

.HeaderBox-label {
  display: none;
}

@media (min-width: 48.01rem) {
  .HeaderBox-label {
    display: inline;
    font-size: clamp(0.8rem, 2vw, 1.5rem);
  }
}

.HeaderBox-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(50%, 50%);
  background: var(--colorThemeAccent);
  color: var(--colorText);
  font-weight: 700;
  font-size: .5em;
  width: 1.6em;
  height: 1.6em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--animationBase);
}

.HeaderBox-badge:empty {
  opacity: 0;
}

.HeaderBox--phone {
  display: flex;
  justify-content: flex-end;
}

/*# sourceMappingURL=header.min.css.map */
