:root {
  --vm-site-header-height: 68px;
  --vm-site-breadcrumb-height: 40px;
  --vm-site-offset: calc(var(--vm-site-header-height) + var(--vm-site-breadcrumb-height));
  --vm-site-ink: #101828;
  --vm-site-muted: #566176;
  --vm-site-line: #d9e2ee;
  --vm-site-blue: #1558d6;
  --vm-site-blue-dark: #0e429f;
  --vm-site-soft: #f4f7fb;
  --vm-site-max: 1180px;
}

.vm-site-header,
.vm-site-header *,
.vm-breadcrumbs,
.vm-breadcrumbs *,
.vm-page-nav,
.vm-page-nav * {
  box-sizing: border-box;
}

.skip-link:focus {
  z-index: 10001 !important;
}

.vm-shell-container {
  width: min(calc(100% - 34px), var(--vm-site-max));
  margin-inline: auto;
}

.vm-site-header {
  position: sticky;
  top: 0;
  z-index: 9000;
  min-height: var(--vm-site-header-height);
  color: var(--vm-site-ink);
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid var(--vm-site-line);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  backdrop-filter: blur(10px);
}

.vm-header-row {
  min-height: var(--vm-site-header-height);
  display: flex;
  align-items: center;
  gap: 22px;
}

.vm-site-brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.vm-site-brand img {
  display: block;
  width: 190px;
  height: auto;
}

.vm-site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}

.vm-site-nav > a,
.vm-site-nav details > summary {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 11px;
  border-radius: 8px;
  color: #253149;
  font-size: .93rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.vm-site-nav > a:hover,
.vm-site-nav > a:focus-visible,
.vm-site-nav details > summary:hover,
.vm-site-nav details > summary:focus-visible {
  color: var(--vm-site-blue);
  background: #eaf1ff;
  outline: none;
}

.vm-site-nav details {
  position: relative;
}

.vm-site-nav summary {
  list-style: none;
}

.vm-site-nav summary::-webkit-details-marker {
  display: none;
}

.vm-site-nav summary::after {
  content: "";
  width: 7px;
  height: 7px;
  margin: -4px 0 0 7px;
  border: solid currentColor;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.vm-nav-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 286px;
  padding: 7px;
  background: #fff;
  border: 1px solid var(--vm-site-line);
  border-radius: 11px;
  box-shadow: 0 14px 32px rgba(16, 24, 40, .14);
}

.vm-nav-menu a {
  display: block;
  padding: 10px 11px;
  border-radius: 7px;
  color: #253149;
  text-decoration: none;
}

.vm-nav-menu a:hover,
.vm-nav-menu a:focus-visible {
  color: var(--vm-site-blue);
  background: var(--vm-site-soft);
  outline: none;
}

.vm-nav-menu strong,
.vm-nav-menu span {
  display: block;
}

.vm-nav-menu strong {
  font-size: .9rem;
}

.vm-nav-menu span {
  color: var(--vm-site-muted);
  font-size: .78rem;
  font-weight: 500;
}

.vm-site-nav .vm-nav-button {
  min-height: 42px;
  margin-left: 4px;
  padding-inline: 15px;
  color: #fff;
  background: var(--vm-site-blue);
  border: 1px solid transparent;
  border-radius: 9px;
  font-weight: 800;
}

.vm-site-nav .vm-nav-button:hover,
.vm-site-nav .vm-nav-button:focus-visible {
  color: #fff;
  background: var(--vm-site-blue-dark);
  outline: 3px solid rgba(21, 88, 214, .2);
}

.vm-site-menu-toggle {
  display: none;
  width: 43px;
  height: 42px;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--vm-site-line);
  border-radius: 8px;
  color: var(--vm-site-ink);
  background: #fff;
  cursor: pointer;
}

.vm-site-menu-toggle svg {
  display: block;
  width: 22px;
  height: 22px;
  margin: auto;
}

.vm-breadcrumbs {
  position: relative;
  z-index: 100;
  min-height: var(--vm-site-breadcrumb-height);
  display: flex;
  align-items: center;
  color: #526077;
  background: #f6f8fb;
  border-bottom: 1px solid var(--vm-site-line);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: .82rem;
  line-height: 1.35;
}

.vm-breadcrumbs ol {
  min-height: var(--vm-site-breadcrumb-height);
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  list-style: none;
  white-space: nowrap;
}

.vm-breadcrumbs li {
  display: inline-flex;
  min-width: 0;
  align-items: center;
}

.vm-breadcrumbs li + li::before {
  content: "/";
  margin: 0 9px;
  color: #98a2b3;
}

.vm-breadcrumbs a {
  color: var(--vm-site-blue);
  font-weight: 750;
  text-decoration: none;
}

.vm-breadcrumbs a:hover,
.vm-breadcrumbs a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.vm-breadcrumbs [aria-current="page"] {
  overflow: hidden;
  color: #344054;
  font-weight: 750;
  text-overflow: ellipsis;
}

.vm-page-nav {
  color: #344054;
  background: #fff;
  border-bottom: 1px solid var(--vm-site-line);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.vm-page-nav .vm-shell-container {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 9px 18px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.vm-page-nav strong {
  flex: 0 0 auto;
  color: #667085;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.vm-page-nav a {
  flex: 0 0 auto;
  color: #344054;
  font-size: .82rem;
  font-weight: 750;
  text-decoration: none;
}

.vm-page-nav a:hover,
.vm-page-nav a:focus-visible {
  color: var(--vm-site-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 930px) {
  .vm-site-menu-toggle {
    display: grid;
    place-items: center;
  }

  .vm-site-nav {
    position: absolute;
    top: var(--vm-site-header-height);
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - var(--vm-site-header-height));
    overflow-y: auto;
    margin: 0;
    padding: 10px 17px 15px;
    background: #fff;
    border-bottom: 1px solid var(--vm-site-line);
    box-shadow: 0 14px 25px rgba(16, 24, 40, .11);
  }

  .vm-site-nav.is-open {
    display: grid;
  }

  .vm-site-nav > a,
  .vm-site-nav details > summary {
    width: 100%;
    min-height: 43px;
  }

  .vm-site-nav .vm-nav-button {
    margin: 5px 0 0;
  }

  .vm-nav-menu {
    position: static;
    width: auto;
    margin: 0 4px 5px;
    box-shadow: none;
  }
}

@media (max-width: 680px) {
  :root {
    --vm-site-header-height: 62px;
  }

  .vm-shell-container {
    width: min(calc(100% - 24px), var(--vm-site-max));
  }

  .vm-site-brand img {
    width: 165px;
  }

  .vm-breadcrumbs li + li::before {
    margin-inline: 7px;
  }
}

@media print {
  .vm-site-header,
  .vm-breadcrumbs,
  .vm-page-nav {
    display: none !important;
  }
}
