@media (min-width: 981px){

  #a1-stickybar{
    position: fixed;
    z-index: 9998;
    background: #fff;
    border-bottom: 1px solid rgba(15,23,42,.10);
    box-shadow: 0 10px 26px rgba(15,23,42,.08);
    border-radius: 0 0 14px 14px;
    overflow: hidden;
    will-change: transform, top, left, width;
    backface-visibility: hidden;
    transform: translateZ(0);
  }

  #a1-stickybar .a1-stickybar-inner{
    display: flex;
    align-items: center;
    width: max-content;
    will-change: transform;
  }

  /* ? FIX: add the missing divider line at the first red arrow */
  #a1-stickybar .a1-stickybar-spacer{
    height: 56px;
    flex: 0 0 auto;
    border-right: 1px solid rgba(15,23,42,.07);
    box-sizing: border-box;
    background: #fff;
  }

  #a1-stickybar .a1-stickybar-cell{
    height: 56px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-right: 1px solid rgba(15,23,42,.07);
    box-sizing: border-box;
    min-width: 0;
    background: #fff;
  }

  #a1-stickybar .a1-stickybar-cell:last-child{
    border-right: none;
  }

  #a1-stickybar .a1-stickybar-content{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    min-width: 0;
    max-width: 100%;
  }

  #a1-stickybar .a1-stickybar-logo{
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex: 0 0 28px;
  }

  #a1-stickybar .a1-stickybar-title{
    font-weight: 850;
    font-size: 14px;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
  }

  @media print{
    #a1-stickybar{ display:none !important; }
  }
}