.it-header-wrapper {
  &.it-header-sticky {
    &.is-sticky {
      @include media-breakpoint-up(lg) {
        .it-header-center-wrapper {
          //queste regole, fanno in modo che se il sito non ha il menu, quando l'header è sticky mostra comunque l'header center, altrimenti non si vedrebbe nulla.
          display: block;
          &:has(~ .it-header-navbar-wrapper:not(:empty)) {
            display: none;
          }
          &:has(~ .it-header-navbar-wrapper:empty) {
            height: auto;
          }
        }
      }

      @media (max-width: #{map-get($grid-breakpoints, ml)}) {
        .it-nav-wrapper .it-brand-wrapper {
          padding-left: 1.2rem;
        }
      }
    }
  }
}
