/*
 * Navigation V2 only.
 * The site sets html { font-size: 60%; }, so this component deliberately uses
 * pixel dimensions to keep its controls and typography predictable.
 */

#header.vg-nav-v2-enabled {
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

/* The legacy theme forces html { margin-top: 0 !important; }, which removes
 * WordPress' normal admin-bar offset. Restore it only for Navigation V2. */
body.admin-bar #header.vg-nav-v2-enabled {
  padding-top: 32px;
}

#header.vg-nav-v2-enabled .vg-nav,
#header.vg-nav-v2-enabled .vg-nav * {
  box-sizing: border-box;
}

#header.vg-nav-v2-enabled .vg-nav {
  --vg-nav-blue: #006eb8;
  --vg-nav-blue-dark: #00519c;
  --vg-nav-blue-900: #073f78;
  --vg-nav-text: #172033;
  --vg-nav-muted: #677487;
  --vg-nav-line: #e3e9f1;
  --vg-nav-soft: #f5f8fc;
  --vg-nav-soft-blue: #eaf4ff;
  --vg-nav-shadow: 0 22px 70px rgba(8, 40, 85, 0.16);
  --vg-nav-content-width: 1280px;
  --specialty-accent: var(--vg-nav-accent, #1f5aa6);
  position: relative;
  z-index: 1001;
  width: 100%;
  color: var(--vg-nav-text);
  font-family: Lato, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.35;
}

#header.vg-nav-v2-enabled .vg-nav a {
  color: inherit;
  text-decoration: none;
}

#header.vg-nav-v2-enabled .vg-nav button {
  margin: 0;
  border: 0;
  font: inherit;
  text-transform: none;
  cursor: pointer;
}

#header.vg-nav-v2-enabled .vg-nav__shell {
  position: relative;
  background: #fff;
  border-bottom: 1px solid var(--vg-nav-line);
  box-shadow: 0 6px 24px rgba(18, 36, 60, 0.05);
}

#header.vg-nav-v2-enabled .vg-nav__mainbar {
  display: grid;
  grid-template-columns: minmax(180px, 214px) minmax(0, 1fr) auto;
  align-items: stretch;
  width: 100%;
  max-width: var(--vg-nav-content-width);
  min-height: 60px;
  margin: 0 auto;
  gap: 10px;
  padding: 0 20px;
}

#header.vg-nav-v2-enabled .vg-nav__brand,
#header.vg-nav-v2-enabled .vg-nav-mobile__brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

#header.vg-nav-v2-enabled .vg-nav__brand img {
  display: block;
  width: auto;
  max-width: 214px;
  max-height: 44px;
}

#header.vg-nav-v2-enabled .vg-nav__primary {
  min-width: 0;
}

#header.vg-nav-v2-enabled .vg-nav__primary > ul {
  display: flex;
  justify-content: center;
  align-items: stretch;
  height: 60px;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}

#header.vg-nav-v2-enabled .vg-nav__primary > ul > li {
  display: flex;
  min-width: 0;
  margin: 0;
  padding: 0;
}

#header.vg-nav-v2-enabled .vg-nav__primary-link {
  --vg-nav-item-accent: var(--vg-nav-blue);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 0;
  min-height: 52px;
  margin-top: 8px;
  padding: 0 15px;
  background: transparent;
  border-radius: 9px 9px 0 0;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -0.1px;
  line-height: 1;
  text-transform: uppercase;
  transition: background-color 160ms ease, color 160ms ease;
  white-space: nowrap;
}

#header.vg-nav-v2-enabled .vg-nav__primary-link::after {
  position: absolute;
  right: 15px;
  bottom: 0;
  left: 15px;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: var(--vg-nav-item-accent);
  content: "";
  opacity: 0;
  transform: scaleX(0.3);
  transition: opacity 160ms ease, transform 160ms ease;
}

#header.vg-nav-v2-enabled .vg-nav__primary-link:hover,
#header.vg-nav-v2-enabled .vg-nav__primary-link:focus-visible {
  background-color: #f7f9fb;
  background-color: color-mix(in srgb, var(--vg-nav-item-accent) 4%, #fff);
}

#header.vg-nav-v2-enabled .vg-nav__primary-link.is-active,
#header.vg-nav-v2-enabled .vg-nav__primary-link.is-open {
  background-color: #f4f7fb;
  background-color: color-mix(in srgb, var(--vg-nav-item-accent) 8%, #fff);
}

#header.vg-nav-v2-enabled .vg-nav__primary-link:hover,
#header.vg-nav-v2-enabled .vg-nav__primary-link:focus-visible,
#header.vg-nav-v2-enabled .vg-nav__primary-link.is-active,
#header.vg-nav-v2-enabled .vg-nav__primary-link.is-open {
  color: var(--vg-nav-blue-dark);
  outline: 0;
}

#header.vg-nav-v2-enabled .vg-nav__primary-link:hover::after,
#header.vg-nav-v2-enabled .vg-nav__primary-link:focus-visible::after,
#header.vg-nav-v2-enabled .vg-nav__primary-link.is-active::after,
#header.vg-nav-v2-enabled .vg-nav__primary-link.is-open::after {
  opacity: 1;
  transform: scaleX(1);
}

#header.vg-nav-v2-enabled .vg-nav__primary-button {
  --vg-nav-item-accent: var(--vg-nav-blue);
  font-weight: 900 !important;
}

#header.vg-nav-v2-enabled .vg-nav__primary-button > span {
  font-weight: inherit;
}

#header.vg-nav-v2-enabled .vg-nav__utility {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  min-width: 0;
}

#header.vg-nav-v2-enabled .vg-nav__utility-button,
#header.vg-nav-v2-enabled .vg-nav__trip-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  background: transparent;
  color: #20314a;
  font-size: 16px;
  font-weight: 900;
}

#header.vg-nav-v2-enabled .vg-nav__utility-button {
  width: 38px;
  border-radius: 999px;
}

#header.vg-nav-v2-enabled .vg-nav__utility-button:hover,
#header.vg-nav-v2-enabled .vg-nav__utility-button:focus-visible {
  background: #f1f6fb;
  color: var(--vg-nav-blue-dark);
  outline: 0;
}

#header.vg-nav-v2-enabled .vg-nav__trip-button {
  gap: 8px;
  padding: 0 13px;
  border: 1px solid #cfe0f4;
  border-radius: 999px;
  background: #fff;
  color: var(--vg-nav-blue-dark);
  white-space: nowrap;
  box-shadow: 0 7px 18px rgba(0, 110, 184, 0.07);
}

#header.vg-nav-v2-enabled .vg-nav__trip-button:hover,
#header.vg-nav-v2-enabled .vg-nav__trip-button:focus-visible,
#header.vg-nav-v2-enabled .vg-nav__trip-button.is-open {
  border-color: rgba(0, 110, 184, 0.36);
  background: #f3f9ff;
  outline: 0;
}

#header.vg-nav-v2-enabled .vg-nav__badge {
  position: absolute;
  top: -4px;
  right: -3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #ef3b54;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  line-height: 18px;
  box-shadow: 0 4px 12px rgba(239, 59, 84, 0.32);
}

#header.vg-nav-v2-enabled .vg-nav__cart-button .vg-nav__badge,
#header.vg-nav-v2-enabled .vg-nav__mobile-cart .vg-nav__badge {
  top: -7px;
  right: -8px;
}

#header.vg-nav-v2-enabled .vg-nav__mobile-cart,
#header.vg-nav-v2-enabled .vg-nav__mobile-toggle {
  display: none;
}

#header.vg-nav-v2-enabled .vg-nav__context {
  height: 40px;
  border-top: 1px solid #f0f3f7;
  border-bottom: 1px solid #e8edf3;
  border-bottom-color: color-mix(in srgb, var(--vg-nav-accent) 18%, #e8edf3);
  background-color: #f7f9fb;
  background-color: color-mix(in srgb, var(--vg-nav-accent) 5%, #fff);
  box-shadow: 0 4px 12px rgba(18, 36, 60, 0.04);
}

#header.vg-nav-v2-enabled .vg-nav__context-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: var(--vg-nav-content-width);
  height: 40px;
  margin: 0 auto;
  padding: 0 20px;
  overflow: visible;
}

#header.vg-nav-v2-enabled .vg-nav__context-links {
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-width: 0;
  height: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: visible;
}

#header.vg-nav-v2-enabled .vg-nav__context-item {
  position: relative;
  display: flex;
  align-items: stretch;
  min-width: 0;
  margin: 0;
}

#header.vg-nav-v2-enabled .vg-nav__context-item > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 0;
  height: 40px;
  padding: 0 13px;
  color: #22324a;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

#header.vg-nav-v2-enabled .vg-nav__context-item > a::after {
  position: absolute;
  right: 13px;
  bottom: 0;
  left: 13px;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: transparent;
  content: "";
}

#header.vg-nav-v2-enabled .vg-nav__context-item > a:hover,
#header.vg-nav-v2-enabled .vg-nav__context-item > a:focus-visible {
  color: var(--vg-nav-blue-dark);
  outline: 0;
}

#header.vg-nav-v2-enabled .vg-nav__context-item > a:hover::after,
#header.vg-nav-v2-enabled .vg-nav__context-item > a:focus-visible::after {
  background: var(--vg-nav-accent);
}

#header.vg-nav-v2-enabled .vg-nav__context-item > button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  min-height: 40px;
  margin-left: -9px;
  padding: 0;
  background: transparent;
  color: #536176;
}

#header.vg-nav-v2-enabled .vg-nav__context-item > button:hover,
#header.vg-nav-v2-enabled .vg-nav__context-item > button:focus-visible,
#header.vg-nav-v2-enabled .vg-nav__context-item > button.is-open {
  color: var(--vg-nav-blue-dark);
  outline: 0;
}

#header.vg-nav-v2-enabled .vg-nav__panel {
  position: absolute;
  z-index: 60;
  top: 60px;
  overflow: hidden;
  border: 1px solid var(--vg-nav-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--vg-nav-shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

#header.vg-nav-v2-enabled .vg-nav__panel.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

#header.vg-nav-v2-enabled .vg-nav__customer-panel {
  width: 370px;
}

#header.vg-nav-v2-enabled .vg-nav__trips-panel {
  right: 76px;
}

#header.vg-nav-v2-enabled .vg-nav__cart-panel {
  right: 26px;
  width: 390px;
}

#header.vg-nav-v2-enabled .vg-nav__panel-header {
  display: block;
  margin: 0;
  padding: 18px 20px 12px;
  border-bottom: 1px solid var(--vg-nav-line);
  background: #fff;
}

#header.vg-nav-v2-enabled .vg-nav__panel-header h2,
#header.vg-nav-v2-enabled .vg-nav__more-column h2,
#header.vg-nav-v2-enabled .vg-nav__more-highlight h2 {
  margin: 0;
  color: var(--vg-nav-text);
  font-family: Lato, Arial, sans-serif;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.4px;
}

#header.vg-nav-v2-enabled .vg-nav__panel-header p {
  margin: 5px 0 0;
  color: var(--vg-nav-muted);
  font-size: 14px;
  line-height: 1.4;
}

#header.vg-nav-v2-enabled .vg-nav__panel-body {
  padding: 10px;
}

#header.vg-nav-v2-enabled .vg-nav__panel-link {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 11px;
  border-radius: 14px;
}

#header.vg-nav-v2-enabled .vg-nav__panel-link:hover,
#header.vg-nav-v2-enabled .vg-nav__panel-link:focus-visible {
  background: #f5f9fd;
  outline: 0;
}

#header.vg-nav-v2-enabled .vg-nav__panel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 13px;
  background: var(--vg-nav-soft-blue);
  color: var(--vg-nav-blue-dark);
}

#header.vg-nav-v2-enabled .vg-nav__panel-link strong,
#header.vg-nav-v2-enabled .vg-nav__panel-link small {
  display: block;
}

#header.vg-nav-v2-enabled .vg-nav__panel-link strong {
  color: var(--vg-nav-text);
  font-size: 15px;
  line-height: 1.25;
}

#header.vg-nav-v2-enabled .vg-nav__panel-link small {
  margin-top: 2px;
  color: var(--vg-nav-muted);
  font-size: 13px;
  line-height: 1.3;
}

#header.vg-nav-v2-enabled .vg-nav__panel-link > .fa {
  color: #8c98aa;
}

#header.vg-nav-v2-enabled .vg-nav__panel-actions {
  display: flex;
  gap: 10px;
  padding: 12px;
  border-top: 1px solid var(--vg-nav-line);
  background: #fbfdff;
}

#header.vg-nav-v2-enabled .vg-nav__button {
  display: inline-flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

#header.vg-nav-v2-enabled .vg-nav__button--primary,
#header.vg-nav-v2-enabled .vg-nav__button--secondary {
  border: 1px solid #cfe0f4;
  background: #fff;
  color: var(--vg-nav-blue-dark);
}

#header.vg-nav-v2-enabled .vg-nav__button:hover,
#header.vg-nav-v2-enabled .vg-nav__button:focus-visible {
  border-color: rgba(0, 110, 184, 0.36);
  background: #f3f9ff;
  color: var(--vg-nav-blue-dark);
  outline: 2px solid rgba(0, 110, 184, 0.25);
  outline-offset: 2px;
}

#header.vg-nav-v2-enabled .vg-nav__cart-item {
  padding: 14px 16px;
  border-bottom: 1px solid var(--vg-nav-line);
}

#header.vg-nav-v2-enabled .vg-nav__cart-item:last-child {
  border-bottom: 0;
}

#header.vg-nav-v2-enabled .vg-nav__cart-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--vg-nav-text);
  font-size: 15px;
}

#header.vg-nav-v2-enabled .vg-nav__cart-item > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--vg-nav-muted);
  font-size: 13px;
}

#header.vg-nav-v2-enabled .vg-nav__cart-price {
  color: var(--vg-nav-blue-dark);
  font-weight: 900;
  white-space: nowrap;
}

#header.vg-nav-v2-enabled .vg-nav__empty-cart {
  padding: 28px 20px;
  color: var(--vg-nav-muted);
  text-align: center;
}

#header.vg-nav-v2-enabled .vg-nav__empty-cart > .fa {
  margin-bottom: 8px;
  color: #9aabc0;
  font-size: 28px;
}

#header.vg-nav-v2-enabled .vg-nav__empty-cart p {
  margin: 0;
  font-size: 14px;
}

#header.vg-nav-v2-enabled .vg-nav__more-panel {
  right: 24px;
  left: 210px;
  border-radius: 0 0 22px 22px;
}

#header.vg-nav-v2-enabled .vg-nav__more-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 26px;
  padding: 30px 36px 34px;
}

#header.vg-nav-v2-enabled .vg-nav__more-column h2,
#header.vg-nav-v2-enabled .vg-nav__more-highlight h2 {
  margin-bottom: 12px;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: uppercase;
}

#header.vg-nav-v2-enabled .vg-nav-submenu {
  margin: 0;
  padding: 0;
  list-style: none;
}

#header.vg-nav-v2-enabled .vg-nav-submenu li {
  margin: 0;
  padding: 0;
}

#header.vg-nav-v2-enabled .vg-nav-submenu a,
#header.vg-nav-v2-enabled .vg-nav__more-standalone {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 7px 0;
  color: #3e4b5d;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}

#header.vg-nav-v2-enabled .vg-nav-submenu a:hover,
#header.vg-nav-v2-enabled .vg-nav-submenu a:focus-visible,
#header.vg-nav-v2-enabled .vg-nav__more-standalone:hover,
#header.vg-nav-v2-enabled .vg-nav__more-standalone:focus-visible {
  color: var(--vg-nav-blue-dark);
  outline: 0;
}

#header.vg-nav-v2-enabled .vg-nav-submenu--nested {
  margin: 0 0 5px 12px;
  padding-left: 10px;
  border-left: 2px solid var(--vg-nav-line);
}

#header.vg-nav-v2-enabled .vg-nav-submenu--nested a {
  padding: 5px 0;
  font-size: 13px;
  font-weight: 600;
}

#header.vg-nav-v2-enabled .vg-nav__more-highlight {
  align-self: start;
  padding: 18px;
  border: 1px solid #dcecff;
  border-radius: 18px;
  background: linear-gradient(135deg, #eff8ff, #fff);
}

#header.vg-nav-v2-enabled .vg-nav__more-highlight h2 {
  color: var(--vg-nav-blue-dark);
  font-size: 18px;
  text-transform: none;
}

#header.vg-nav-v2-enabled .vg-nav__more-highlight p {
  margin: 8px 0 12px;
  color: var(--vg-nav-muted);
  font-size: 14px;
  line-height: 1.4;
}

#header.vg-nav-v2-enabled .vg-nav__more-highlight a {
  display: inline-flex;
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--vg-nav-blue);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

#header.vg-nav-v2-enabled .vg-nav__context-panel {
  top: 40px;
  left: 50%;
  width: 310px;
  padding: 12px 16px;
  transform: translate(-50%, -8px);
}

#header.vg-nav-v2-enabled .vg-nav__context-panel.is-open {
  transform: translate(-50%, 0);
}

#header.vg-nav-v2-enabled .vg-nav__context-item--destinations {
  position: static;
}

#header.vg-nav-v2-enabled .vg-nav__context-panel--destinations {
  left: 0;
  right: 0;
  width: auto;
  padding: 0;
  overflow: hidden;
  transform: translate(0, -8px);
}

#header.vg-nav-v2-enabled .vg-nav__context-panel--destinations.is-open {
  transform: translate(0, 0);
}

#header.vg-nav-v2-enabled .vg-nav__destinations-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 15px 24px;
  border-bottom: 1px solid var(--vg-nav-line);
  background: #fff;
}

#header.vg-nav-v2-enabled .vg-nav__destinations-header strong {
  color: var(--vg-nav-text);
  font-size: 15px;
  font-weight: 900;
}

#header.vg-nav-v2-enabled .vg-nav__destinations-header a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--vg-nav-blue-dark);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

#header.vg-nav-v2-enabled .vg-nav__destinations-header a:hover,
#header.vg-nav-v2-enabled .vg-nav__destinations-header a:focus-visible {
  color: var(--vg-nav-blue);
  outline: 0;
}

#header.vg-nav-v2-enabled .vg-nav__destination-browser {
  display: grid;
  grid-template-columns: minmax(180px, 0.75fr) minmax(260px, 1fr) minmax(0, 1.65fr);
  height: min(430px, calc(100vh - 184px));
  min-height: 310px;
  background: #fff;
}

#header.vg-nav-v2-enabled .vg-nav__destination-column {
  min-width: 0;
  padding: 18px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
}

#header.vg-nav-v2-enabled .vg-nav__destination-column--roots,
#header.vg-nav-v2-enabled .vg-nav__destination-column--branches {
  border-right: 1px solid var(--vg-nav-line);
}

#header.vg-nav-v2-enabled .vg-nav__destination-column--roots {
  background: #f8fafc;
}

#header.vg-nav-v2-enabled .vg-nav__destination-eyebrow,
#header.vg-nav-v2-enabled .vg-nav__destination-column-header > span {
  display: block;
  margin: 0 0 10px;
  color: var(--vg-nav-muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.35px;
  text-transform: uppercase;
}

#header.vg-nav-v2-enabled .vg-nav__destination-root-list,
#header.vg-nav-v2-enabled .vg-nav__destination-branch-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

#header.vg-nav-v2-enabled .vg-nav__destination-root-list li,
#header.vg-nav-v2-enabled .vg-nav__destination-branch-list li {
  margin: 0 0 4px;
  padding: 0;
}

#header.vg-nav-v2-enabled .vg-nav__destination-root,
#header.vg-nav-v2-enabled .vg-nav__destination-branch-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 40px;
  gap: 12px;
  padding: 9px 11px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--vg-nav-text);
  font-family: Lato, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
}

#header.vg-nav-v2-enabled .vg-nav__destination-root:hover,
#header.vg-nav-v2-enabled .vg-nav__destination-root:focus-visible,
#header.vg-nav-v2-enabled .vg-nav__destination-root.is-active,
#header.vg-nav-v2-enabled .vg-nav__destination-branch-trigger:hover,
#header.vg-nav-v2-enabled .vg-nav__destination-branch-trigger:focus-visible,
#header.vg-nav-v2-enabled .vg-nav__destination-branch-trigger.is-active {
  background: var(--vg-nav-soft-blue);
  color: var(--vg-nav-blue-dark);
  outline: 0;
}

#header.vg-nav-v2-enabled .vg-nav__destination-root.is-active,
#header.vg-nav-v2-enabled .vg-nav__destination-branch-trigger.is-active {
  box-shadow: inset 3px 0 0 var(--vg-nav-accent);
  font-weight: 900;
}

#header.vg-nav-v2-enabled .vg-nav__destination-root .fa,
#header.vg-nav-v2-enabled .vg-nav__destination-branch-trigger .fa {
  flex: 0 0 auto;
  color: #76869b;
}

#header.vg-nav-v2-enabled .vg-nav__destination-branch,
#header.vg-nav-v2-enabled .vg-nav__destination-leaves,
#header.vg-nav-v2-enabled .vg-nav__destination-empty {
  display: none;
}

#header.vg-nav-v2-enabled .vg-nav__destination-branch.is-active,
#header.vg-nav-v2-enabled .vg-nav__destination-leaves.is-active,
#header.vg-nav-v2-enabled .vg-nav__destination-empty.is-active {
  display: block;
}

#header.vg-nav-v2-enabled .vg-nav__destination-column-header {
  margin: 0 0 12px;
  padding: 0 2px 12px;
  border-bottom: 1px solid var(--vg-nav-line);
}

#header.vg-nav-v2-enabled .vg-nav__destination-column-header > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

#header.vg-nav-v2-enabled .vg-nav__destination-column-header strong {
  color: var(--vg-nav-text);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}

#header.vg-nav-v2-enabled .vg-nav__destination-column-header a {
  color: var(--vg-nav-blue-dark);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

#header.vg-nav-v2-enabled .vg-nav__destination-column-header a:hover,
#header.vg-nav-v2-enabled .vg-nav__destination-column-header a:focus-visible {
  color: var(--vg-nav-blue);
  outline: 0;
  text-decoration: underline;
}

#header.vg-nav-v2-enabled .vg-nav__destination-leaf-list > .vg-nav-submenu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3px 18px;
}

#header.vg-nav-v2-enabled .vg-nav__destination-leaf-list .vg-nav-submenu a {
  min-height: 38px;
  padding: 8px 10px;
  border-radius: 8px;
}

#header.vg-nav-v2-enabled .vg-nav__destination-leaf-list .vg-nav-submenu a:hover,
#header.vg-nav-v2-enabled .vg-nav__destination-leaf-list .vg-nav-submenu a:focus-visible {
  background: var(--vg-nav-soft-blue);
}

#header.vg-nav-v2-enabled .vg-nav__destination-leaf-list .vg-nav-submenu--nested {
  margin: 0 0 6px;
  padding-left: 10px;
  border-left-color: var(--vg-nav-accent);
}

#header.vg-nav-v2-enabled .vg-nav__destination-empty {
  max-width: 360px;
  margin: 82px auto 0;
  color: var(--vg-nav-muted);
  text-align: center;
}

#header.vg-nav-v2-enabled .vg-nav__destination-empty strong {
  display: block;
  color: var(--vg-nav-text);
  font-size: 16px;
}

#header.vg-nav-v2-enabled .vg-nav__destination-empty p {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.45;
}

#header.vg-nav-v2-enabled .vg-nav-mobile {
  display: none;
}

html.vg-nav-lock,
body.vg-nav-lock {
  overflow: hidden;
}

@media (max-width: 1280px) {
  #header.vg-nav-v2-enabled .vg-nav__mainbar {
    grid-template-columns: minmax(170px, 196px) minmax(0, 1fr) auto;
    padding: 0 22px;
  }

  #header.vg-nav-v2-enabled .vg-nav__brand img {
    max-width: 196px;
    max-height: 42px;
  }

  #header.vg-nav-v2-enabled .vg-nav__destination-browser {
    grid-template-columns: minmax(170px, 0.7fr) minmax(240px, 0.95fr) minmax(0, 1.55fr);
  }

  #header.vg-nav-v2-enabled .vg-nav__primary-link {
    padding: 0 11px;
    font-size: 12px;
  }

  #header.vg-nav-v2-enabled .vg-nav__primary-link::after {
    right: 11px;
    left: 11px;
  }

  #header.vg-nav-v2-enabled .vg-nav__more-panel {
    left: 150px;
  }
}

@media (max-width: 1120px) {
  #header.vg-nav-v2-enabled .vg-nav__mainbar {
    grid-template-columns: minmax(154px, 172px) minmax(0, 1fr) auto;
    padding: 0 16px;
  }

  #header.vg-nav-v2-enabled .vg-nav__brand img {
    max-width: 172px;
    max-height: 40px;
  }

  #header.vg-nav-v2-enabled .vg-nav__primary-link {
    padding: 0 8px;
    font-size: 12px;
  }

  #header.vg-nav-v2-enabled .vg-nav__primary-link::after {
    right: 8px;
    left: 8px;
  }

  #header.vg-nav-v2-enabled .vg-nav__language,
  #header.vg-nav-v2-enabled .vg-nav__trip-label {
    display: none;
  }

  #header.vg-nav-v2-enabled .vg-nav__trip-button {
    width: 38px;
    padding: 0;
  }

  #header.vg-nav-v2-enabled .vg-nav__context-item > a {
    padding: 0 9px;
    font-size: 12px;
  }

  #header.vg-nav-v2-enabled .vg-nav__more-panel {
    right: 18px;
    left: 18px;
  }
}

@media (max-width: 1024px) {
  #header.vg-nav-v2-enabled .vg-nav__mainbar {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 64px;
    padding: 0 18px;
  }

  #header.vg-nav-v2-enabled .vg-nav__brand img {
    max-width: 200px;
    max-height: 42px;
  }

  #header.vg-nav-v2-enabled .vg-nav__primary,
  #header.vg-nav-v2-enabled .vg-nav__context,
  #header.vg-nav-v2-enabled .vg-nav__trip-button,
  #header.vg-nav-v2-enabled .vg-nav__cart-button,
  #header.vg-nav-v2-enabled .vg-nav__account-button,
  #header.vg-nav-v2-enabled .vg-nav__language,
  #header.vg-nav-v2-enabled .vg-nav__panel {
    display: none;
  }

  #header.vg-nav-v2-enabled .vg-nav__mobile-cart,
  #header.vg-nav-v2-enabled .vg-nav__mobile-toggle {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 13px;
    background: #f2f7fb;
    color: var(--vg-nav-blue-dark);
  }

  #header.vg-nav-v2-enabled .vg-nav__mobile-cart:hover,
  #header.vg-nav-v2-enabled .vg-nav__mobile-cart:focus-visible,
  #header.vg-nav-v2-enabled .vg-nav__mobile-toggle:hover,
  #header.vg-nav-v2-enabled .vg-nav__mobile-toggle:focus-visible {
    background: #e6f0f9;
  }

  #header.vg-nav-v2-enabled .vg-nav-mobile {
    position: fixed;
    z-index: 100001;
    inset: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  }

  #header.vg-nav-v2-enabled .vg-nav-mobile.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  body.admin-bar #header.vg-nav-v2-enabled .vg-nav-mobile {
    top: 32px;
    height: calc(100vh - 32px);
    height: calc(100dvh - 32px);
  }

  #header.vg-nav-v2-enabled .vg-nav-mobile__header {
    display: flex;
    flex: 0 0 76px;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    padding: 0 18px;
    border-bottom: 1px solid var(--vg-nav-line);
    background: #fff;
  }

  #header.vg-nav-v2-enabled .vg-nav-mobile__brand img {
    display: block;
    width: auto;
    max-width: 190px;
    max-height: 42px;
  }

  #header.vg-nav-v2-enabled .vg-nav-mobile__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 14px;
    background: #f3f7fb;
    color: var(--vg-nav-blue-dark);
    font-size: 22px;
  }

  #header.vg-nav-v2-enabled .vg-nav-mobile__close:hover,
  #header.vg-nav-v2-enabled .vg-nav-mobile__close:focus-visible {
    background: #e7f0f8;
    outline: 2px solid rgba(0, 110, 184, 0.25);
    outline-offset: 2px;
  }

  #header.vg-nav-v2-enabled .vg-nav-mobile__panes {
    position: relative;
    flex: 1;
    min-height: 0;
    overflow: hidden;
    background: #fff;
  }

  #header.vg-nav-v2-enabled .vg-nav-mobile__pane {
    position: absolute;
    inset: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 18px 18px 32px;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: opacity 240ms ease, transform 240ms ease, visibility 240ms ease;
    overscroll-behavior: contain;
  }

  #header.vg-nav-v2-enabled .vg-nav-mobile__pane.is-current {
    z-index: 2;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  #header.vg-nav-v2-enabled .vg-nav-mobile__pane.is-left {
    z-index: 1;
    opacity: 1;
    visibility: visible;
    transform: translateX(-100%);
  }

  #header.vg-nav-v2-enabled .vg-nav-mobile__help {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    margin-bottom: 10px;
    padding: 15px;
    border: 1px solid #d9ebff;
    border-radius: 18px;
    background: #f4f9ff;
    color: var(--vg-nav-blue-dark);
  }

  #header.vg-nav-v2-enabled .vg-nav-mobile__help > .fa:first-child {
    font-size: 26px;
    text-align: center;
  }

  #header.vg-nav-v2-enabled .vg-nav-mobile__help strong,
  #header.vg-nav-v2-enabled .vg-nav-mobile__help small {
    display: block;
  }

  #header.vg-nav-v2-enabled .vg-nav-mobile__help strong {
    font-size: 18px;
    line-height: 1.15;
  }

  #header.vg-nav-v2-enabled .vg-nav-mobile__help small {
    margin-top: 3px;
    color: var(--vg-nav-muted);
    font-size: 13px;
  }

  #header.vg-nav-v2-enabled .vg-nav-mobile__phones {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    margin: 0 0 18px;
  }

  #header.vg-nav-v2-enabled .vg-nav-mobile__phones a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-width: 0;
    min-height: 34px;
    color: var(--vg-nav-blue-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: -0.1px;
    white-space: nowrap;
  }

  #header.vg-nav-v2-enabled .vg-nav-mobile__eyebrow {
    margin: 22px 2px 9px;
    color: #627084;
    font-family: Lato, Arial, sans-serif;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.6px;
    line-height: 1.2;
    text-transform: uppercase;
  }

  #header.vg-nav-v2-enabled .vg-nav-mobile__space-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 17px;
    border-radius: 18px;
    background: var(--vg-nav-blue-900);
    color: #fff;
    box-shadow: 0 12px 28px rgba(7, 63, 120, 0.2);
  }

  #header.vg-nav-v2-enabled .vg-nav-mobile__space-card strong,
  #header.vg-nav-v2-enabled .vg-nav-mobile__space-card small {
    display: block;
  }

  #header.vg-nav-v2-enabled .vg-nav-mobile__space-card strong {
    font-size: 18px;
    color: rgba(255, 255, 255);
  }

  #header.vg-nav-v2-enabled .vg-nav-mobile__space-card small {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
  }

  #header.vg-nav-v2-enabled .vg-nav-mobile__quick-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 9px;
  }

  #header.vg-nav-v2-enabled .vg-nav-mobile__quick-actions > a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 76px;
    padding: 9px 5px;
    border: 1px solid var(--vg-nav-line);
    border-radius: 14px;
    background: #fff;
    color: #31425a;
    font-size: 12px;
    font-weight: 900;
    text-align: center;
  }

  #header.vg-nav-v2-enabled .vg-nav-mobile__quick-actions > a > .fa,
  #header.vg-nav-v2-enabled .vg-nav-mobile__quick-icon > .fa {
    color: var(--vg-nav-blue-dark);
    font-size: 20px;
  }

  #header.vg-nav-v2-enabled .vg-nav-mobile__quick-icon {
    position: relative;
    display: inline-flex;
  }

  #header.vg-nav-v2-enabled .vg-nav-mobile__quick-icon .vg-nav__badge {
    top: -9px;
    right: -14px;
  }

  #header.vg-nav-v2-enabled .vg-nav-mobile__list {
    overflow: hidden;
    border: 1px solid var(--vg-nav-line);
    border-radius: 16px;
    background: #fff;
  }

  #header.vg-nav-v2-enabled .vg-nav-mobile__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    width: 100%;
    min-height: 54px;
    margin: 0;
    padding: 13px 15px;
    border-bottom: 1px solid var(--vg-nav-line);
    background: #fff;
    color: #26364d;
    font-size: 16px;
    font-weight: 800;
    text-align: left;
  }

  #header.vg-nav-v2-enabled .vg-nav-mobile__row:last-child {
    border-bottom: 0;
  }

  #header.vg-nav-v2-enabled .vg-nav-mobile__row:hover,
  #header.vg-nav-v2-enabled .vg-nav-mobile__row:focus-visible,
  #header.vg-nav-v2-enabled .vg-nav-mobile__row--split:focus-within {
    background: #f6f9fc;
    outline: 0;
  }

  #header.vg-nav-v2-enabled .vg-nav-mobile__row small,
  #header.vg-nav-v2-enabled .vg-nav-mobile__row strong {
    display: block;
  }

  #header.vg-nav-v2-enabled .vg-nav-mobile__row small {
    margin-top: 3px;
    color: var(--vg-nav-muted);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
  }

  #header.vg-nav-v2-enabled .vg-nav-mobile__universe {
    position: relative;
    min-height: 66px;
    padding-left: 20px;
  }

  #header.vg-nav-v2-enabled .vg-nav-mobile__universe::before {
    position: absolute;
    top: 13px;
    bottom: 13px;
    left: 0;
    width: 4px;
    border-radius: 0 4px 4px 0;
    background: var(--vg-nav-item-accent, var(--vg-nav-blue));
    content: "";
  }

  #header.vg-nav-v2-enabled .vg-nav-mobile__row--split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 50px;
    gap: 0;
    padding: 0;
  }

  #header.vg-nav-v2-enabled .vg-nav-mobile__row--split > a {
    display: flex;
    align-items: center;
    min-height: 54px;
    padding: 13px 15px;
  }

  #header.vg-nav-v2-enabled .vg-nav-mobile__row--split > button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    min-height: 54px;
    padding: 0;
    border-left: 1px solid var(--vg-nav-line);
    background: transparent;
    color: var(--vg-nav-blue-dark);
  }

  #header.vg-nav-v2-enabled .vg-nav-mobile__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    margin: -5px 0 8px;
    padding: 0 8px;
    border-radius: 10px;
    background: transparent;
    color: var(--vg-nav-blue-dark);
    font-size: 14px;
    font-weight: 900;
  }

  #header.vg-nav-v2-enabled .vg-nav-mobile__back:hover,
  #header.vg-nav-v2-enabled .vg-nav-mobile__back:focus-visible {
    background: #f2f7fb;
    outline: 0;
  }

  #header.vg-nav-v2-enabled .vg-nav-mobile__title {
    margin: 2px 0 7px;
    color: var(--vg-nav-text);
    font-family: Lato, Arial, sans-serif;
    font-size: 30px;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.8px;
  }

  #header.vg-nav-v2-enabled .vg-nav-mobile__title:focus {
    outline: 0;
  }

  #header.vg-nav-v2-enabled .vg-nav-mobile__lead {
    margin: 0 0 16px;
    color: var(--vg-nav-muted);
    font-size: 14px;
    line-height: 1.45;
  }

  #header.vg-nav-v2-enabled .vg-nav-mobile__landing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 58px;
    margin-bottom: 14px;
    padding: 15px 17px;
    border: 1px solid #d9ebff;
    border-radius: 16px;
    background: #f4f9ff;
    color: var(--vg-nav-blue-dark);
    font-size: 15px;
    font-weight: 900;
  }

  #header.vg-nav-v2-enabled .vg-nav-mobile__footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin: 20px 2px 0;
  }

  #header.vg-nav-v2-enabled .vg-nav-mobile__footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 40px;
    color: #506077;
    font-size: 13px;
    font-weight: 800;
  }
}

@media (max-width: 782px) {
  body.admin-bar #header.vg-nav-v2-enabled {
    padding-top: 46px;
  }

  body.admin-bar #header.vg-nav-v2-enabled .vg-nav-mobile {
    top: 46px;
    height: calc(100vh - 46px);
    height: calc(100dvh - 46px);
  }
}

@media (max-width: 520px) {
  #header.vg-nav-v2-enabled .vg-nav__mainbar {
    padding: 0 12px;
  }

  #header.vg-nav-v2-enabled .vg-nav__brand img {
    max-width: 162px;
    max-height: 38px;
  }

  #header.vg-nav-v2-enabled .vg-nav__utility {
    gap: 7px;
  }

  #header.vg-nav-v2-enabled .vg-nav-mobile__header {
    padding: 0 14px;
  }

  #header.vg-nav-v2-enabled .vg-nav-mobile__brand img {
    max-width: 170px;
  }

  #header.vg-nav-v2-enabled .vg-nav-mobile__pane {
    padding-right: 14px;
    padding-left: 14px;
  }
}

/* Desktop V2 visual treatment. The mobile presentation remains untouched. */
@media (min-width: 1025px) {
  #header.vg-nav-v2-enabled .vg-nav--desktop-signature .vg-nav__shell {
    border-bottom: 0;
  }

  #header.vg-nav-v2-enabled .vg-nav--desktop-signature .vg-nav__mainbar {
    min-height: 66px;
  }

  #header.vg-nav-v2-enabled .vg-nav--desktop-signature .vg-nav__primary > ul,
  #header.vg-nav-v2-enabled .vg-nav--desktop-signature .vg-nav__context-links {
    flex-wrap: nowrap;
  }

  #header.vg-nav-v2-enabled .vg-nav--desktop-signature .vg-nav__primary > ul {
    height: 66px;
  }

  #header.vg-nav-v2-enabled .vg-nav--desktop-signature .vg-nav__primary-link {
    height: 66px;
    min-height: 66px;
    margin-top: 0;
    padding-right: 22px;
    padding-left: 22px;
    font-size: 15px;
    font-weight: 700;
  }

  #header.vg-nav-v2-enabled .vg-nav--desktop-signature .vg-nav__primary-link.is-active {
    border-radius: 0;
    background: var(--vg-nav-item-accent);
    color: #fff;
    font-weight: 800;
  }

  #header.vg-nav-v2-enabled .vg-nav--desktop-signature .vg-nav__primary-link.is-active::after {
    height: 3px;
    background: transparent;
    opacity: 0;
    transform: scaleX(0.3);
  }

  #header.vg-nav-v2-enabled .vg-nav--desktop-signature .vg-nav__primary-button {
    top: 0;
    align-self: flex-start;
    height: 66px;
    min-height: 66px;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 15px;
    font-weight: 700 !important;
    vertical-align: top;
  }

  #header.vg-nav-v2-enabled .vg-nav--desktop-signature .vg-nav__trip-button {
    margin-right: 5px;
    margin-left: 4px;
    padding-right: 17px;
    padding-left: 17px;
    border-color: #c2d6e9;
    background: #fbfdff;
    color: #064f93;
    font-weight: 700;
    box-shadow: 0 6px 17px rgba(7, 63, 120, 0.14), 0 1px 3px rgba(7, 63, 120, 0.1), inset 0 1px 0 #fff;
  }

  #header.vg-nav-v2-enabled .vg-nav--desktop-signature .vg-nav__trip-button:hover,
  #header.vg-nav-v2-enabled .vg-nav--desktop-signature .vg-nav__trip-button:focus-visible,
  #header.vg-nav-v2-enabled .vg-nav--desktop-signature .vg-nav__trip-button.is-open {
    border-color: #8fb8dd;
    background: #f6faff;
    box-shadow: 0 8px 21px rgba(7, 63, 120, 0.18), 0 2px 5px rgba(7, 63, 120, 0.12), inset 0 1px 0 #fff;
  }

  #header.vg-nav-v2-enabled .vg-nav--desktop-signature .vg-nav__more-panel {
    z-index: 80;
    top: 69px;
  }

  #header.vg-nav-v2-enabled .vg-nav--desktop-signature .vg-nav__customer-panel {
    top: 69px;
  }

  #header.vg-nav-v2-enabled .vg-nav--desktop-signature .vg-nav__context {
    position: absolute;
    z-index: 2;
    top: 72px;
    right: 0;
    left: 0;
    height: 42px;
    padding-top: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  #header.vg-nav-v2-enabled .vg-nav--desktop-signature .vg-nav__context-inner {
    display: flex;
    align-items: stretch;
    justify-content: center;
    height: 42px;
  }

  #header.vg-nav-v2-enabled .vg-nav--desktop-signature .vg-nav__context-links {
    justify-content: center;
    width: 100%;
    height: 42px;
  }

  #header.vg-nav-v2-enabled .vg-nav--desktop-signature .vg-nav__context-item {
    flex: 0 0 auto;
    border-radius: 4px 4px 0 0;
    transition: background-color 140ms ease, box-shadow 140ms ease, color 140ms ease;
  }

  #header.vg-nav-v2-enabled .vg-nav--desktop-signature .vg-nav__context-item:hover,
  #header.vg-nav-v2-enabled .vg-nav--desktop-signature .vg-nav__context-item:focus-within {
    background: transparent;
    box-shadow: none;
  }

  #header.vg-nav-v2-enabled .vg-nav--desktop-signature .vg-nav__context-item > a {
    height: 42px;
    padding: 0 16px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    transition: color 140ms ease, text-shadow 140ms ease;
  }

  #header.vg-nav-v2-enabled .vg-nav--desktop-signature .vg-nav__context-item > a::after {
    display: none;
    content: none;
  }

  #header.vg-nav-v2-enabled .vg-nav--desktop-signature .vg-nav__context-item > a:hover,
  #header.vg-nav-v2-enabled .vg-nav--desktop-signature .vg-nav__context-item > a:focus-visible,
  #header.vg-nav-v2-enabled .vg-nav--desktop-signature .vg-nav__context-item.is-active > a {
    color: #fff;
    text-shadow: 0 1px 5px rgba(4, 28, 55, 0.86);
  }

  #header.vg-nav-v2-enabled .vg-nav--desktop-signature .vg-nav__context-item > button {
    width: 27px;
    min-height: 42px;
    color: #fff;
    text-shadow: 0 1px 4px rgba(4, 28, 55, 0.72);
    transition: color 140ms ease;
  }

  #header.vg-nav-v2-enabled .vg-nav--desktop-signature .vg-nav__context-item > button:hover,
  #header.vg-nav-v2-enabled .vg-nav--desktop-signature .vg-nav__context-item > button:focus-visible,
  #header.vg-nav-v2-enabled .vg-nav--desktop-signature .vg-nav__context-item > button.is-open {
    color: #fff;
  }

  #header.vg-nav-v2-enabled .vg-nav--desktop-signature .vg-nav__context-panel {
    top: 42px;
    text-shadow: none;
  }
}

@media (min-width: 1025px) and (max-width: 1440px) {
  #header.vg-nav-v2-enabled .vg-nav--desktop-signature .vg-nav__primary-link {
    padding-right: 17px;
    padding-left: 17px;
  }

  #header.vg-nav-v2-enabled .vg-nav--desktop-signature .vg-nav__primary-link::after {
    right: 17px;
    left: 17px;
  }

  #header.vg-nav-v2-enabled .vg-nav--desktop-signature .vg-nav__context-item > a {
    padding-right: 12px;
    padding-left: 12px;
  }
}

@media (min-width: 1025px) and (max-width: 1280px) {
  #header.vg-nav-v2-enabled .vg-nav--desktop-signature .vg-nav__mainbar,
  #header.vg-nav-v2-enabled .vg-nav--desktop-signature .vg-nav__context-inner {
    padding-right: 20px;
    padding-left: 20px;
  }

  #header.vg-nav-v2-enabled .vg-nav--desktop-signature .vg-nav__primary-link {
    padding-right: 12px;
    padding-left: 12px;
  }

  #header.vg-nav-v2-enabled .vg-nav--desktop-signature .vg-nav__primary-link::after {
    right: 12px;
    left: 12px;
  }

  #header.vg-nav-v2-enabled .vg-nav--desktop-signature .vg-nav__context-item > a {
    padding-right: 8px;
    padding-left: 8px;
  }
}

@media (min-width: 1025px) and (max-width: 1120px) {
  #header.vg-nav-v2-enabled .vg-nav--desktop-signature .vg-nav__mainbar,
  #header.vg-nav-v2-enabled .vg-nav--desktop-signature .vg-nav__context-inner {
    padding-right: 16px;
    padding-left: 16px;
  }

  #header.vg-nav-v2-enabled .vg-nav--desktop-signature .vg-nav__context-item > a {
    padding-right: 6px;
    padding-left: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #header.vg-nav-v2-enabled .vg-nav *,
  #header.vg-nav-v2-enabled .vg-nav *::before,
  #header.vg-nav-v2-enabled .vg-nav *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
