/*
 * DO NOT EDIT THIS FILE.
 * See the following change record for more information,
 * https://www.drupal.org/node/3084859
 * @preserve
 */

/**
 * @file
 * Site header.
 */

.site-header {
  position: relative;
  /**
   * Ensure mobile site header is always above other elements including
   * contextual links, and Tour.
   */
  z-index: 101;
}

@media (min-width: 75rem) {
  .site-header {
    /* Necessary to keep the content from jumping up when header transitions to fixed. */
    min-height: var(--site-header-height-wide);
    border-block-end: solid 1px transparent; /* Will show in Windows high contrast mode. */
    position: sticky;
    top: 0;
  }
}

.site-header__initial {
  position: relative;
  z-index: 102;
  display: flex;
  align-items: flex-end;
  align-self: stretch;
  background-color: transparent;
}

.site-header__fixable {
  display: flex;
  align-items: flex-end;
  transition: all 0.5s;
  width: 100vw;
  max-width: 100%;
}

@media (--md) {
  .site-header__fixable.is-fixed:not(.allways-expanded) {
    pointer-events: none;
  }
}

@media (min-width: 75rem) {
  body:not(.is-always-mobile-nav) .site-header__fixable.is-fixed {
    position: fixed;
    z-index: 102; /* Appear above body content that is position: relative */
  }

  body:not(.is-always-mobile-nav).user-logged-in
    .site-header__fixable.is-fixed {
    inset-block-start: 53px;
  }
}

.site-header__inner {
  position: relative;
  z-index: 1;
  flex-grow: 1;
  width: calc(
    100vw - var(--content-left) - var(--drupal-displace-offset-left, 0px) -
      var(--drupal-displace-offset-right, 0px)
  );
}
@media (min-width: 75rem) {
  /* .site-header__inner {
    background-image: linear-gradient(#fff calc(100% - 3rem), transparent 0%);
  } */

  .site-header__fixable .site-header__inner {
    background-image: linear-gradient(#fff calc(100% - 2.5rem), transparent 0%);
  }

  .site-header__fixable.scrolled .site-header__inner {
    background-image: linear-gradient(#fff calc(100% - 2.5rem), transparent 0%), linear-gradient(rgba(151,151,151,0.1) calc(100% - 2.5rem), transparent calc(100% - 2.1rem));
  }
}
.site-header__inner__container {
  display: flex;
  justify-content: space-between;
}
