/*
  Kernex navbar shift-middle patch.
  Scope: desktop/tablet header only.
  Strategy: shift existing nav block and actions block together to the right.
  No layout rebuild.
*/

@media screen and (min-width: 901px) {
  :root {
    --kx-navbar-shift-x: 165px;
  }

  .kx-nav-frame,
  .kx-actions {
    position: relative !important;
    transform: translateX(var(--kx-navbar-shift-x)) !important;
  }
}

/* Slightly smaller shift on medium desktop widths */
@media screen and (min-width: 901px) and (max-width: 1280px) {
  :root {
    --kx-navbar-shift-x: 120px;
  }
}

/* Keep mobile untouched */
@media screen and (max-width: 900px) {
  .kx-nav-frame,
  .kx-actions {
    transform: none !important;
  }
}
