:root {
  --alpha-bg: #ffffff;
  --alpha-surface: #f6f7f9;
  --alpha-surface-alt: #eef2f7;
  --alpha-text: #111827;
  --alpha-muted: #6b7280;
  --alpha-border: #e5e7eb;

  --alpha-primary: #2563eb;
  --alpha-primary-contrast: #ffffff;

  --alpha-header-bg: #ffffff;
  --alpha-header-text: #111827;
  --alpha-header-link: #2563eb;
  --alpha-header-link-hover: #1d4ed8;
  --alpha-header-border: #e5e7eb;
  --alpha-header-pad-top: 13px;
  --alpha-header-pad-bottom: 13px;

  --alpha-topbar-bg: #f8fafc;
  --alpha-topbar-text: #111827;
  --alpha-topbar-link: #2563eb;
  --alpha-topbar-link-hover: #1d4ed8;
  --alpha-topbar-border: #e5e7eb;
  --alpha-topbar-pad-top: 6px;
  --alpha-topbar-pad-bottom: 6px;

  --alpha-content-bg: #ffffff;
  --alpha-content-text: #111827;
  --alpha-content-link: #2563eb;
  --alpha-content-link-hover: #1d4ed8;
  --alpha-content-pad-y: 24px;
  --alpha-content-pad-top: 24px;
  --alpha-content-pad-bottom: 24px;

  --alpha-footer-bg: #0b1220;
  --alpha-footer-text: #e5e7eb;
  --alpha-footer-link: #93c5fd;
  --alpha-footer-link-hover: #bfdbfe;
  --alpha-footer-border: rgba(255, 255, 255, 0.08);
  --alpha-footer-pad-top: 32px;
  --alpha-footer-pad-bottom: 24px;

  --alpha-menu-bg: #ffffff;
  --alpha-menu-text: #111827;
  --alpha-menu-hover-bg: #eef2f7;
  --alpha-menu-hover-text: #111827;
  --alpha-menu-active-bg: #2563eb;
  --alpha-menu-active-text: #ffffff;
  --alpha-menu-dropdown-bg: #ffffff;
  --alpha-menu-dropdown-text: #111827;
  --alpha-menu-dropdown-hover-bg: #eef2f7;
  --alpha-menu-dropdown-hover-text: #111827;

  --alpha-module-bg: #ffffff;
  --alpha-module-border: #e5e7eb;
  --alpha-module-shadow: 0 2px 10px rgba(17, 24, 39, 0.04);
  --alpha-module-radius: 12px;
  --alpha-module-pad: 16px;
  --alpha-module-gap: 20px;
  --alpha-module-title-size: 13.5pt;
  --alpha-module-title-weight: 600;

  --alpha-radius: 12px;
  --alpha-gutter: 16px;
  --alpha-band-x: 16px;
  --alpha-band-y: 16px;
  --alpha-container-max: 1200px;
  --alpha-main-content-pad: 0px;
  --alpha-sidebar-left-pad: 0px;
  --alpha-sidebar-right-pad: 0px;

  --alpha-base-font-size: 12pt;
  --alpha-base-line-height: 1.6;
  --alpha-heading-h1-size: 24pt;
  --alpha-heading-h2-size: 21pt;
  --alpha-heading-h3-size: 18pt;
  --alpha-heading-h4-size: 15pt;
  --alpha-heading-h5-size: 13.5pt;
  --alpha-heading-h6-size: 12pt;
  --alpha-small-text-size: 10.5pt;

  --alpha-show-topbar-border: 1;
  --alpha-show-header-border: 1;
  --alpha-show-menu-border: 0;
  --alpha-show-footer-border: 1;
}

.alpha-site {
  background: var(--alpha-bg);
  color: var(--alpha-text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: var(--alpha-base-font-size);
  line-height: var(--alpha-base-line-height);
}

.alpha-site h1 { font-size: var(--alpha-heading-h1-size); }
.alpha-site h2 { font-size: var(--alpha-heading-h2-size); }
.alpha-site h3 { font-size: var(--alpha-heading-h3-size); }
.alpha-site h4 { font-size: var(--alpha-heading-h4-size); }
.alpha-site h5 { font-size: var(--alpha-heading-h5-size); }
.alpha-site h6 { font-size: var(--alpha-heading-h6-size); }

.alpha-skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 1100;
  transform: translateY(-200%);
  background: var(--alpha-primary);
  color: var(--alpha-primary-contrast);
  padding: 11px 16px;
  border-radius: calc(var(--alpha-radius) / 1.8);
  text-decoration: none;
}

.alpha-skip-link:focus {
  transform: translateY(0);
}

.alpha-header {
  background: var(--alpha-header-bg);
  color: var(--alpha-header-text);
  border-bottom: 0;
  padding-top: var(--alpha-header-pad-top);
  padding-bottom: var(--alpha-header-pad-bottom);
}

.alpha-header a {
  color: var(--alpha-header-link);
}

.alpha-header a:hover,
.alpha-header a:focus-visible {
  color: var(--alpha-header-link-hover);
}

.alpha-content {
  background: var(--alpha-content-bg);
  color: var(--alpha-content-text);
  padding-top: var(--alpha-content-pad-top);
  padding-bottom: var(--alpha-content-pad-bottom);
  flex: 1 0 auto;
}

.alpha-content a {
  color: var(--alpha-content-link);
}

.alpha-content a:hover,
.alpha-content a:focus-visible {
  color: var(--alpha-content-link-hover);
}

.alpha-footer {
  background: var(--alpha-footer-bg);
  color: var(--alpha-footer-text);
  border-top: 0;
  padding-top: var(--alpha-footer-pad-top);
  padding-bottom: var(--alpha-footer-pad-bottom);
}

.alpha-footer a {
  color: var(--alpha-footer-link);
}

.alpha-footer a:hover,
.alpha-footer a:focus-visible {
  color: var(--alpha-footer-link-hover);
}

.alpha-header-inner,
.alpha-content-inner,
.alpha-footer-inner {
  padding-left: var(--alpha-band-x);
  padding-right: var(--alpha-band-x);
}

.alpha-mode-contained .alpha-header-inner,
.alpha-mode-contained .alpha-content-inner,
.alpha-mode-contained .alpha-footer-inner {
  max-width: var(--alpha-container-max);
  margin-left: auto;
  margin-right: auto;
}

.alpha-scheme-dark {
  --alpha-bg: #0f172a;
  --alpha-surface: #172036;
  --alpha-surface-alt: #24324d;
  --alpha-text: #e5e7eb;
  --alpha-muted: #94a3b8;
  --alpha-border: #334155;
}

@media (prefers-color-scheme: dark) {
  .alpha-scheme-auto {
    --alpha-bg: #0f172a;
    --alpha-surface: #172036;
    --alpha-surface-alt: #24324d;
    --alpha-text: #e5e7eb;
    --alpha-muted: #94a3b8;
    --alpha-border: #334155;
  }
}

.alpha-topbar {
  background: var(--alpha-topbar-bg);
  color: var(--alpha-topbar-text);
  font-size: var(--alpha-small-text-size);
  padding-top: var(--alpha-topbar-pad-top);
  padding-bottom: var(--alpha-topbar-pad-bottom);
}

.alpha-topbar a {
  color: var(--alpha-topbar-link);
}

.alpha-topbar a:hover,
.alpha-topbar a:focus-visible {
  color: var(--alpha-topbar-link-hover);
}

.alpha-header {
  border-bottom: calc(var(--alpha-show-header-border) * 1px) solid var(--alpha-header-border);
}

.alpha-topbar {
  border-bottom: calc(var(--alpha-show-topbar-border) * 1px) solid var(--alpha-topbar-border);
}

.alpha-footer {
  border-top: calc(var(--alpha-show-footer-border) * 1px) solid var(--alpha-footer-border);
}

.alpha-row {
  margin-top: 0;
  margin-bottom: 0;
}

.alpha-row:last-child {
  margin-bottom: 0;
}

.alpha-region {
  display: flex;
  flex-direction: column;
  height: auto;
  max-height: none;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  overflow: visible;
}

.alpha-region > * {
  max-width: 100%;
}

.alpha-align-fill {
  width: 100%;
}

.alpha-align-h-left {
  text-align: left;
  align-items: flex-start;
}

.alpha-align-h-center {
  text-align: center;
  align-items: center;
}

.alpha-align-h-right {
  text-align: right;
  align-items: flex-end;
}

.alpha-align-h-left > :not(.alpha-align-fill),
.alpha-align-h-center > :not(.alpha-align-fill),
.alpha-align-h-right > :not(.alpha-align-fill) {
  width: min(100%, max-content);
}

.alpha-align-h-left > .alpha-module,
.alpha-align-h-center > .alpha-module,
.alpha-align-h-right > .alpha-module,
.alpha-align-h-left > .alpha-component-output,
.alpha-align-h-center > .alpha-component-output,
.alpha-align-h-right > .alpha-component-output {
  width: 100%;
}

.alpha-align-v-top {
  justify-content: flex-start;
}

.alpha-align-v-middle {
  justify-content: center;
}

.alpha-align-v-bottom {
  justify-content: flex-end;
}

.alpha-main.row,
.alpha-footer-band.row,
.alpha-header-main.row {
  --bs-gutter-x: var(--alpha-gutter);
  --bs-gutter-y: var(--alpha-gutter);
}

.alpha-sidebar-left,
.alpha-sidebar-right {
  display: flex;
  flex-direction: column;
}

.alpha-main-content {
  padding: var(--alpha-main-content-pad);
}

.alpha-sidebar-left {
  padding: var(--alpha-sidebar-left-pad);
}

.alpha-sidebar-right {
  padding: var(--alpha-sidebar-right-pad);
}

.alpha-module {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: var(--alpha-module-bg);
  border: 1px solid var(--alpha-module-border);
  border-radius: var(--alpha-module-radius);
  box-shadow: var(--alpha-module-shadow);
  padding: var(--alpha-module-pad);
  margin-bottom: var(--alpha-module-gap);
}

.alpha-module:last-child {
  margin-bottom: 0;
}

.alpha-module-title {
  font-size: var(--alpha-module-title-size);
  font-weight: var(--alpha-module-title-weight);
  margin: 0 0 12px;
}

.alpha-module-body > *:first-child {
  margin-top: 0;
}

.alpha-module-body > *:last-child {
  margin-bottom: 0;
}

.alpha-module-body {
  min-width: 0;
}

.alpha-module-cards-off .alpha-module {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.alpha-component-output {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.alpha-component-card {
  display: block;
  box-sizing: border-box;
  padding: var(--alpha-component-card-pad);
  background: var(--alpha-component-card-bg);
  border: 1px solid var(--alpha-component-card-border);
  border-radius: var(--alpha-component-card-radius);
  box-shadow: var(--alpha-component-card-shadow);
}

.alpha-component-card > *:first-child {
  margin-top: 0;
}

.alpha-component-card > *:last-child {
  margin-bottom: 0;
}

.alpha-special-page {
  position: relative;
}

.alpha-special-content {
  display: flex;
  align-items: center;
}

.alpha-special-main {
  width: 100%;
}

.alpha-special-card {
  max-width: 704px;
  margin: 0 auto;
  padding: clamp(24px, 3vw, 48px);
  background: linear-gradient(180deg, var(--alpha-surface) 0%, var(--alpha-content-bg) 100%);
  border: 1px solid var(--alpha-border);
  border-radius: calc(var(--alpha-radius) * 1.2);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.alpha-special-header-row,
.alpha-special-footer-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}

.alpha-special-brand {
  color: inherit;
  font-size: 15pt;
  font-weight: 700;
  text-decoration: none;
}

.alpha-special-brand:hover,
.alpha-special-brand:focus-visible {
  text-decoration: underline;
}

.alpha-special-kicker,
.alpha-special-code {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 9.36pt;
  font-weight: 700;
  color: var(--alpha-muted);
}

.alpha-special-code {
  font-size: 48pt;
  line-height: 0.95;
  color: var(--alpha-primary);
}

.alpha-special-summary {
  font-size: 13pt;
  color: var(--alpha-text);
}

.alpha-special-detail {
  color: var(--alpha-muted);
}

.alpha-special-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.alpha-special-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: calc(var(--alpha-radius) / 1.6);
  background: var(--alpha-primary);
  color: var(--alpha-primary-contrast);
  font-weight: 600;
  text-decoration: none;
}

.alpha-special-button:hover,
.alpha-special-button:focus-visible {
  background: color-mix(in srgb, var(--alpha-primary) 88%, black);
  color: var(--alpha-primary-contrast);
}

.alpha-special-footer-copy {
  margin: 0;
  font-size: var(--alpha-small-text-size);
  color: inherit;
}

.alpha-offline-card .alpha-offline-messages,
.alpha-offline-card .alpha-offline-component {
  margin-top: 20px;
}

.alpha-offline-page .alpha-content {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.alpha-offline-page .alpha-content-inner {
  width: 100%;
  max-width: 640px;
}

.alpha-offline-page .alpha-special-card {
  text-align: center;
}

.alpha-offline-image-wrap {
  margin: 0 0 24px;
}

.alpha-offline-image {
  display: block;
  width: 100%;
  max-width: 224px;
  height: auto;
  margin: 0 auto;
  border-radius: calc(var(--alpha-radius) / 1.5);
}

.alpha-offline-form {
  width: 100%;
  max-width: 384px;
  margin: 0 auto;
}

.alpha-offline-form-row {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
  text-align: left;
}

.alpha-offline-form-row:last-of-type {
  margin-bottom: 0;
}

.alpha-offline-label {
  font-size: var(--alpha-small-text-size);
  font-weight: 600;
  color: var(--alpha-text);
}

.alpha-offline-input {
  width: 100%;
  min-height: 46px;
  padding: 11px 14px;
  border: 1px solid var(--alpha-border);
  border-radius: calc(var(--alpha-radius) / 1.8);
  background: var(--alpha-bg);
  color: var(--alpha-text);
}

.alpha-offline-input:focus {
  outline: 2px solid color-mix(in srgb, var(--alpha-primary) 35%, transparent);
  outline-offset: 2px;
  border-color: var(--alpha-primary);
}

.alpha-offline-form-row-submit {
  text-align: center;
}

.alpha-offline-submit {
  width: 100%;
}

@media (max-width: 767.98px) {
  .alpha-special-content {
    align-items: stretch;
  }

  .alpha-special-card {
    padding: 24px;
  }
}

.alpha-menu {
  background: var(--alpha-menu-bg);
  color: var(--alpha-menu-text);
  border: calc(var(--alpha-show-menu-border) * 1px) solid var(--alpha-border);
  border-radius: var(--alpha-radius);
  width: 100%;
}

.alpha-menu-row > .alpha-menu {
  width: 100%;
}

.alpha-menu-toggle {
  display: none;
  width: 100%;
  padding: 12px 16px;
  border: 0;
  border-bottom: 1px solid var(--alpha-border);
  background: transparent;
  color: inherit;
  text-align: left;
  font-weight: 600;
}

.alpha-menu-nav {
  padding: 4px;
}

.alpha-menu-module {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  overflow: visible;
}

.alpha-menu-offcanvas-panel {
  background: var(--alpha-menu-bg);
  color: var(--alpha-menu-text);
}

.alpha-menu-offcanvas-title {
  font-weight: 700;
}

.alpha-menu-offcanvas-panel .btn-close {
  flex: 0 0 auto;
}

.alpha-menu-offcanvas-body {
  padding: 12px;
}

.alpha-menu ul.menu,
.alpha-menu ul.mod-menu,
.alpha-menu ul.nav,
.alpha-menu ul.navbar-nav,
.alpha-menu .mod-menu,
.alpha-menu-module > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.alpha-menu-row.alpha-align-h-center .alpha-menu ul.menu,
.alpha-menu-row.alpha-align-h-center .alpha-menu ul.mod-menu,
.alpha-menu-row.alpha-align-h-center .alpha-menu ul.nav,
.alpha-menu-row.alpha-align-h-center .alpha-menu ul.navbar-nav,
.alpha-menu-row.alpha-align-h-center .alpha-menu .mod-menu,
.alpha-menu-row.alpha-align-h-center .alpha-menu-module > ul {
  justify-content: center;
}

.alpha-menu-row.alpha-align-h-right .alpha-menu ul.menu,
.alpha-menu-row.alpha-align-h-right .alpha-menu ul.mod-menu,
.alpha-menu-row.alpha-align-h-right .alpha-menu ul.nav,
.alpha-menu-row.alpha-align-h-right .alpha-menu ul.navbar-nav,
.alpha-menu-row.alpha-align-h-right .alpha-menu .mod-menu,
.alpha-menu-row.alpha-align-h-right .alpha-menu-module > ul {
  justify-content: flex-end;
}

.alpha-menu ul.menu a,
.alpha-menu ul.mod-menu a,
.alpha-menu ul.nav a,
.alpha-menu ul.navbar-nav a,
.alpha-menu-module > ul a,
.alpha-menu ul.menu button,
.alpha-menu ul.mod-menu button,
.alpha-menu ul.nav button,
.alpha-menu ul.navbar-nav button,
.alpha-menu-module > ul button,
.alpha-menu .nav-link,
.alpha-menu .mod-menu__link,
.alpha-menu .mod-menu__heading,
.alpha-menu .separator,
.alpha-menu .dropdown-item {
  color: var(--alpha-menu-text);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border: 0;
  background: transparent;
  border-radius: calc(var(--alpha-radius) / 1.8);
  padding: 9px 13px;
  white-space: nowrap;
}

.alpha-menu ul.menu a:hover,
.alpha-menu ul.mod-menu a:hover,
.alpha-menu ul.nav a:hover,
.alpha-menu ul.navbar-nav a:hover,
.alpha-menu-module > ul a:hover,
.alpha-menu ul.menu a:focus-visible,
.alpha-menu ul.mod-menu a:focus-visible,
.alpha-menu ul.nav a:focus-visible,
.alpha-menu ul.navbar-nav a:focus-visible,
.alpha-menu-module > ul a:focus-visible,
.alpha-menu .nav-link:hover,
.alpha-menu .nav-link:focus-visible,
.alpha-menu .mod-menu__link:hover,
.alpha-menu .mod-menu__link:focus-visible,
.alpha-menu .mod-menu__heading:hover,
.alpha-menu .mod-menu__heading:focus-visible,
.alpha-menu .separator:hover,
.alpha-menu .separator:focus-visible,
.alpha-menu .dropdown-item:hover,
.alpha-menu .dropdown-item:focus-visible {
  background: var(--alpha-menu-hover-bg);
  color: var(--alpha-menu-hover-text);
}

.alpha-menu li.current > a,
.alpha-menu li.active > a,
.alpha-menu li.current > .nav-link,
.alpha-menu li.active > .nav-link,
.alpha-menu li.current > .mod-menu__link,
.alpha-menu li.active > .mod-menu__link,
.alpha-menu .nav-link.active,
.alpha-menu .mod-menu__link.active,
.alpha-menu a[aria-current="page"] {
  background: var(--alpha-menu-active-bg);
  color: var(--alpha-menu-active-text);
}

.alpha-menu li,
.alpha-menu .nav-item,
.alpha-menu .mod-menu__item,
.alpha-menu-module > ul > li {
  position: relative;
}

.alpha-menu li.deeper,
.alpha-menu li.parent,
.alpha-menu .mod-menu__item.parent {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}

.alpha-menu .mod-menu__toggle-sub {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 18px;
  min-height: 24px;
  gap: 3px;
  margin: 0;
  padding: 0 2px;
  border: 0;
  border-radius: calc(var(--alpha-radius) / 1.8);
  background: transparent;
  color: var(--alpha-menu-text);
  white-space: nowrap;
}

.alpha-menu .mod-menu__toggle-sub:hover,
.alpha-menu .mod-menu__toggle-sub:focus-visible {
  background: var(--alpha-menu-hover-bg);
  color: var(--alpha-menu-hover-text);
}

.alpha-menu .mod-menu__toggle-sub .icon-chevron-down,
.alpha-menu li.parent:not(:has(> .mod-menu__toggle-sub)) > a::after,
.alpha-menu li.deeper:not(:has(> .mod-menu__toggle-sub)) > a::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 6px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
}

.alpha-menu .mod-menu__toggle-sub .icon-chevron-down::before {
  content: none;
}

.alpha-menu .mod-menu__sub li.parent > .mod-menu__heading::after,
.alpha-menu .mod-menu__sub li.deeper > .mod-menu__heading::after,
.alpha-menu li > ul:not(.dropdown-menu) li.parent > .mod-menu__heading::after,
.alpha-menu li > ul:not(.dropdown-menu) li.deeper > .mod-menu__heading::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 8px;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 5px solid currentColor;
}

.alpha-menu-dropdown,
.alpha-menu li > ul:not(.dropdown-menu),
.alpha-menu .dropdown-menu,
.alpha-menu .mod-menu__sub,
.alpha-menu .navbar-nav .dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 6px;
  background: var(--alpha-menu-dropdown-bg);
  color: var(--alpha-menu-dropdown-text);
  border: 1px solid var(--alpha-border);
  border-radius: calc(var(--alpha-radius) / 1.5);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.16);
  min-width: 220px;
  z-index: 1000;
}

.alpha-menu li > ul:not(.dropdown-menu) a,
.alpha-menu-dropdown a,
.alpha-menu .mod-menu__sub a,
.alpha-menu .dropdown-menu a,
.alpha-menu .navbar-nav .dropdown-menu a,
.alpha-menu .dropdown-menu .dropdown-item {
  color: var(--alpha-menu-dropdown-text);
}

.alpha-menu li > ul:not(.dropdown-menu) a:hover,
.alpha-menu li > ul:not(.dropdown-menu) a:focus-visible,
.alpha-menu-dropdown a:hover,
.alpha-menu-dropdown a:focus-visible,
.alpha-menu .mod-menu__sub a:hover,
.alpha-menu .mod-menu__sub a:focus-visible,
.alpha-menu .dropdown-menu a:hover,
.alpha-menu .dropdown-menu a:focus-visible,
.alpha-menu .navbar-nav .dropdown-menu a:hover,
.alpha-menu .navbar-nav .dropdown-menu a:focus-visible,
.alpha-menu .dropdown-menu .dropdown-item:hover,
.alpha-menu .dropdown-menu .dropdown-item:focus-visible {
  background: var(--alpha-menu-dropdown-hover-bg);
  color: var(--alpha-menu-dropdown-hover-text);
}

.alpha-menu li > ul:not(.dropdown-menu),
.alpha-menu .mod-menu__item > .mod-menu__sub {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  width: max-content;
}

.alpha-menu .mod-menu__sub li > ul:not(.dropdown-menu),
.alpha-menu .mod-menu__sub .mod-menu__item > .mod-menu__sub,
.alpha-menu li > ul:not(.dropdown-menu) li > ul:not(.dropdown-menu) {
  top: 0;
  left: 100%;
}

.alpha-menu li:hover > ul:not(.dropdown-menu),
.alpha-menu li:focus-within > ul:not(.dropdown-menu),
.alpha-menu li.alpha-open > ul:not(.dropdown-menu),
.alpha-menu .mod-menu__item:hover > .mod-menu__sub,
.alpha-menu .mod-menu__item:focus-within > .mod-menu__sub,
.alpha-menu .mod-menu__item.alpha-open > .mod-menu__sub {
  display: block;
}

.alpha-menu li > ul:not(.dropdown-menu) li,
.alpha-menu .dropdown-menu li,
.alpha-menu .mod-menu__sub li {
  width: 100%;
}

.alpha-menu li > ul:not(.dropdown-menu) a,
.alpha-menu .dropdown-menu a,
.alpha-menu .mod-menu__sub a,
.alpha-menu .dropdown-menu .dropdown-item {
  display: block;
}

.alpha-menu .dropdown-menu {
  min-width: 220px;
}

.alpha-menu .dropdown-menu.show {
  display: block;
}

.alpha-menu .dropdown-submenu {
  position: relative;
}

.alpha-menu .dropdown-submenu > .dropdown-menu {
  top: -6px;
  left: calc(100% + 6px);
  margin-top: 0;
}

.alpha-menu .dropdown-submenu > .dropdown-toggle::after {
  transform: rotate(-90deg);
  margin-left: auto;
}

.alpha-menu-text-only .alpha-menu {
  background: transparent !important;
  border: 0 !important;
}

.alpha-menu-text-only .alpha-menu-nav {
  padding: 0;
}

.alpha-menu-text-only .alpha-menu ul.menu,
.alpha-menu-text-only .alpha-menu ul.mod-menu,
.alpha-menu-text-only .alpha-menu ul.nav,
.alpha-menu-text-only .alpha-menu ul.navbar-nav,
.alpha-menu-text-only .alpha-menu .mod-menu {
  gap: 16px;
}

.alpha-menu-text-only .alpha-menu ul.menu a,
.alpha-menu-text-only .alpha-menu ul.mod-menu a,
.alpha-menu-text-only .alpha-menu ul.nav a,
.alpha-menu-text-only .alpha-menu ul.navbar-nav a,
.alpha-menu-text-only .alpha-menu .nav-link,
.alpha-menu-text-only .alpha-menu .mod-menu__link,
.alpha-menu-text-only .alpha-menu .mod-menu__heading,
.alpha-menu-text-only .alpha-menu .separator,
.alpha-menu-text-only .alpha-menu .dropdown-item {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
}

.alpha-menu-text-only .alpha-menu li.current > a,
.alpha-menu-text-only .alpha-menu li.active > a,
.alpha-menu-text-only .alpha-menu li.current > .nav-link,
.alpha-menu-text-only .alpha-menu li.active > .nav-link,
.alpha-menu-text-only .alpha-menu .nav-link.active,
.alpha-menu-text-only .alpha-menu a[aria-current="page"] {
  background: transparent !important;
}

.alpha-menu-text-only .alpha-menu-dropdown,
.alpha-menu-text-only .alpha-menu li > ul,
.alpha-menu-text-only .alpha-menu .dropdown-menu,
.alpha-menu-text-only .alpha-menu .mod-menu__sub {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 4px 0 0;
}

.alpha-copyright {
  font-size: var(--alpha-small-text-size);
  color: var(--alpha-muted);
}

.alpha-skip-link {
  position: absolute;
  left: 0;
  top: -100%;
  z-index: 2000;
  padding: 12px 16px;
  background: var(--alpha-primary);
  color: var(--alpha-primary-contrast);
  text-decoration: none;
}

.alpha-skip-link:focus {
  top: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--alpha-primary);
  outline-offset: 2px;
}

.alpha-sticky-header .alpha-header {
  position: sticky;
  top: 0;
  z-index: 1030;
}

@media (min-width: 992px) {
  .alpha-menu-offcanvas-panel.offcanvas {
    position: static;
    z-index: auto;
    visibility: visible !important;
    display: block;
    width: auto;
    max-width: none;
    height: auto;
    transform: none !important;
    transition: none;
    border: 0;
    box-shadow: none;
  }

  .alpha-menu-offcanvas-panel .offcanvas-header {
    display: none;
  }

  .alpha-menu-offcanvas-panel .offcanvas-body {
    display: block;
    padding: 4px;
    overflow: visible;
  }

  .alpha-menu-offcanvas-panel .offcanvas-backdrop {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .alpha-menu-toggle {
    display: block;
  }

  .alpha-menu:not(.alpha-menu-offcanvas) .alpha-menu-nav {
    display: none;
  }

  .alpha-menu:not(.alpha-menu-offcanvas) .alpha-menu-nav.is-open {
    display: block;
  }

  .alpha-menu-offcanvas {
    background: transparent;
    border: 0;
  }

  .alpha-menu-offcanvas .alpha-menu-toggle {
    border: calc(var(--alpha-show-menu-border) * 1px) solid var(--alpha-border);
    border-radius: var(--alpha-radius);
    background: var(--alpha-menu-bg);
    color: var(--alpha-menu-text);
  }

  .alpha-menu-offcanvas-panel {
    width: min(352px, calc(100vw - 48px));
    border-color: var(--alpha-border);
  }

  .alpha-menu ul.menu,
  .alpha-menu ul.mod-menu,
  .alpha-menu ul.nav,
  .alpha-menu ul.navbar-nav,
  .alpha-menu .mod-menu,
  .alpha-menu-module > ul {
    flex-direction: column;
    align-items: stretch;
  }

  .alpha-menu li.deeper,
  .alpha-menu li.parent,
  .alpha-menu .mod-menu__item.parent {
    flex-wrap: wrap;
  }

  .alpha-menu ul.menu a,
  .alpha-menu ul.mod-menu a,
  .alpha-menu ul.nav a,
  .alpha-menu ul.navbar-nav a,
  .alpha-menu-module > ul a,
  .alpha-menu .nav-link,
  .alpha-menu .mod-menu__link,
  .alpha-menu .mod-menu__heading,
  .alpha-menu .separator,
  .alpha-menu .dropdown-item {
    width: 100%;
  }

  .alpha-menu li > ul:not(.dropdown-menu),
  .alpha-menu .dropdown-menu,
  .alpha-menu .mod-menu__sub {
    position: static;
    display: block;
    width: auto;
    flex-basis: 100%;
    margin-left: 8px;
    margin-top: 4px;
    box-shadow: none;
  }

  .alpha-menu .dropdown-submenu > .dropdown-menu {
    left: 0;
    margin-left: 8px;
  }

  .alpha-menu .dropdown-submenu > .dropdown-toggle::after {
    transform: none;
  }

  .alpha-header-right {
    text-align: left;
  }
}

/* Override Bootstrap/Joomla nav defaults so template menu color settings always win. */
.alpha-menu ul.menu a,
.alpha-menu ul.mod-menu a,
.alpha-menu ul.nav a,
.alpha-menu ul.navbar-nav a,
.alpha-menu-module > ul a,
.alpha-menu .nav-link,
.alpha-menu .mod-menu__link,
.alpha-menu .mod-menu__heading,
.alpha-menu .separator,
.alpha-menu .dropdown-item {
  color: var(--alpha-menu-text) !important;
}

.alpha-menu ul.menu a:hover,
.alpha-menu ul.mod-menu a:hover,
.alpha-menu ul.nav a:hover,
.alpha-menu ul.navbar-nav a:hover,
.alpha-menu-module > ul a:hover,
.alpha-menu ul.menu a:focus-visible,
.alpha-menu ul.mod-menu a:focus-visible,
.alpha-menu ul.nav a:focus-visible,
.alpha-menu ul.navbar-nav a:focus-visible,
.alpha-menu-module > ul a:focus-visible,
.alpha-menu .nav-link:hover,
.alpha-menu .nav-link:focus-visible,
.alpha-menu .mod-menu__link:hover,
.alpha-menu .mod-menu__link:focus-visible,
.alpha-menu .mod-menu__heading:hover,
.alpha-menu .mod-menu__heading:focus-visible,
.alpha-menu .separator:hover,
.alpha-menu .separator:focus-visible,
.alpha-menu .dropdown-item:hover,
.alpha-menu .dropdown-item:focus-visible {
  background: var(--alpha-menu-hover-bg) !important;
  color: var(--alpha-menu-hover-text) !important;
}

.alpha-menu li.current > a,
.alpha-menu li.active > a,
.alpha-menu li.current > .nav-link,
.alpha-menu li.active > .nav-link,
.alpha-menu li.current > .mod-menu__link,
.alpha-menu li.active > .mod-menu__link,
.alpha-menu .nav-link.active,
.alpha-menu .mod-menu__link.active,
.alpha-menu a[aria-current="page"] {
  background: var(--alpha-menu-active-bg) !important;
  color: var(--alpha-menu-active-text) !important;
}

@media (max-width: 991.98px) {
  .alpha-footer-stack-lg .alpha-footer-band > [class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .alpha-footer-stack-md .alpha-footer-band > [class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 575.98px) {
  .alpha-footer-stack-sm .alpha-footer-band > [class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
