/* Sticky header without layout jump */
#t-header{
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
  background: #fff;              /* important so content doesn't show through */
}

/* Optional: prevent tiny 1px wobble on some browsers */
#t-header{
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.t-store__filter__controls-wrapper{
  display: flex !important;
  justify-content: flex-start !important;
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: auto !important;
}

.t-store__filter__controls{
  justify-content: flex-start !important;
}


