.custom-header {
  height: fit-content;
  max-height: 132px;

  @media (max-width: 768px) {
    height: 80px;
  }

  .header__inner {
    padding: 12px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;

    @media (max-width: 768px) {
      padding: 16px 0;
    }

    .header__logo-wrapper {
      pointer-events: auto;
      display: flex;
      max-width: 188px;
      width: min(11%, 188px);
      height: 100%;

      @media (max-width: 768px) {
        width: 100px;
      }

      .header__logo-image {
        display: flex;
        width: 100%;
        height: 100%;
      }

      &.float {
        .header__logo-image {
          stroke: white;
          stroke-width: 1px;
        }
      }
    }
  }
}
