:root {
  --vx-accent: #3b82f6;
  --vx-accent-2: #8b5cf6;
  --vx-tint: rgba(59, 130, 246, .10);
  --vx-tint-2: rgba(139, 92, 246, .08);

  --vx-bg: #000;
  --vx-bg-1: #07090c;
  --vx-bg-2: #0b0f17;

  --vx-surface: rgba(255, 255, 255, .035);
  --vx-surface-2: rgba(255, 255, 255, .055);

  --vx-border: rgba(255, 255, 255, .10);
  --vx-border-2: rgba(255, 255, 255, .16);
  --vx-border-cool: rgba(59, 130, 246, .20);

  --vx-text: rgba(255, 255, 255, .92);
  --vx-muted: rgba(255, 255, 255, .62);

  --vx-radius: 12px;
  --vx-radius-lg: 16px;
  --vx-focus: 0 0 0 3px rgba(59, 130, 246, .22);

  --vx-hairline: rgba(255, 255, 255, .08);
  --vx-hairline-2: rgba(255, 255, 255, .12);
  --vx-surface-3: rgba(255, 255, 255, .02);

  --bs-body-bg: var(--vx-bg);
  --bs-body-color: var(--vx-text);
  --bs-secondary-color: var(--vx-muted);
  --bs-border-color: var(--vx-border);
  --bs-border-radius: var(--vx-radius);
  --bs-border-radius-lg: var(--vx-radius-lg);
  --bs-link-color: var(--vx-text);
  --bs-link-hover-color: #fff;
  --bs-primary: #fff;
  --bs-primary-rgb: 255, 255, 255;
}

:root[data-bs-theme="dark"],
[data-bs-theme="dark"] {
  --bs-body-bg: var(--vx-bg-2);
  --bs-body-color: var(--vx-text);
  --bs-secondary-color: var(--vx-muted);
  --bs-border-color: var(--vx-border);
  --bs-link-color: var(--vx-text);
  --bs-link-hover-color: #fff;
  --bs-primary: #fff;
  --bs-primary-rgb: 255, 255, 255;
  --bs-btn-border-color: var(--vx-border) !important;
  --bs-card-bg: color-mix(in srgb, var(--vx-bg-2) 86%, white 14%);
  --bs-card-cap-bg: color-mix(in srgb, var(--vx-bg-2) 92%, white 8%) !important;
  --bs-accordion-btn-bg: var(--vx-bg-1);
  --bs-body-line-height: 1.4;
}

.btn {
  line-height: var(--bs-body-line-height);
  --bs-btn-padding-x: 1rem;
}

.fa {
  transform: translateY(1px)
}

h1,
h2,
h3,
h4,
h5 {
  letter-spacing: -0.03em;
  line-height: 1.4 !important;
}

.fw-black {
  font-weight: 900;
}

.navbar.vx-nav {
  background: var(--vx-bg-2);
  border-bottom: 1px solid color-mix(in srgb, var(--vx-border) 55%, var(--vx-border) 45%);
  /* backdrop-filter: blur(16px) saturate(140%); */
  /* box-shadow: 0 12px 50px rgba(0, 0, 0, .35); */
  z-index: 1025 !important;
}

.navbar .navbar-brand {
  font-weight: 900;
  letter-spacing: -0.02em;
}

.navbar .nav-link {
  color: var(--vx-muted);
  font-weight: 700;
  border-radius: 10px;
  padding: .5rem .75rem;
}

.navbar .nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, .04);
}

.navbar .nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, .06);
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
  color: #000;
  background-color: #fff;
  border-color: #fff;
}

.btn {
  font-weight: 800;
  letter-spacing: -0.01em;
  border-radius: var(--vx-radius);
}

.btn:focus {
  outline: none;
  box-shadow: var(--vx-focus) !important;
}

.btn-primary {
  background: #fff;
  color: #000;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--bs-border-radius-xxl) !important;
}

.btn-primary:hover {
  background: rgba(255, 255, 255, .92);
  border-color: rgba(255, 255, 255, .20);
  color: #000;
}

.btn-outline-light {
  --bs-btn-border-color: var(--vx-border);
  border-radius: var(--bs-border-radius-xxl) !important;
  background-color: rgba(255, 255, 255, .03);
  border-color: color-mix(in srgb, var(--vx-border) 70%, var(--vx-border-cool) 30%) !important;
}

.form-control,
.form-select,
.input-group-text {
  background: rgba(255, 255, 255, .03) !important;
  border: 1px solid color-mix(in srgb, var(--vx-border) 70%, rgba(59, 130, 246, .18) 30%) !important;
  color: var(--vx-text) !important;
  border-radius: var(--vx-radius);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, .42);
}

.form-control:focus,
.form-select:focus,
.btn:focus {
  border-color: none;
  box-shadow: none;
}

.card-body {
  background: rgba(255, 255, 255, .02);
}

.vx-panel {
  border: 1px solid var(--vx-border);
  border-radius: var(--vx-radius-lg);
}

.vx-panel:hover {
  border-color: var(--vx-border-2);
}

.vx-kicker {
  color: var(--vx-muted);
  font-weight: 700;
  font-size: .9rem;
}

.vx-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem .6rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--vx-border) 70%, rgba(59, 130, 246, .22) 30%);
  background: rgba(255, 255, 255, .025);
  color: rgba(255, 255, 255, .72);
  font-weight: 800;
  font-size: .82rem;
}

.vx-pill i {
  color: rgba(255, 255, 255, .55);
}

.vx-divider {
  border-top: 1px solid var(--vx-border);
}

.vx-card {
  background: var(--vx-bg-2);
  border: 1px solid var(--vx-border);
  border-radius: var(--vx-radius);
}

.vx-card-hover {
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}

.vx-card-hover:hover {
  border-color: var(--vx-border-2);
  background: var(--vx-bg-2);
}

.vx-glass-card {
  border: none;
  background-color: transparent;
}

.vx-glass-card .card-header {
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.vx-glass-card .card-body {
  background: transparent;
}

.vx-hero-row {
  border-radius: var(--vx-radius);
  overflow: hidden;
  min-height: 92px;
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06);
}

.vx-hero-row::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(900px 520px at 15% 0%, rgba(59, 130, 246, .10), transparent 60%),
    radial-gradient(900px 520px at 85% 8%, rgba(139, 92, 246, .08), transparent 55%),
    linear-gradient(90deg, rgba(0, 0, 0, .80) 0%, rgba(0, 0, 0, .55) 45%, rgba(0, 0, 0, .35) 100%);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  opacity: 1;
  pointer-events: none;
}

.vx-hero-row::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .06),
    inset 0 0 140px rgba(0, 0, 0, .70),
    inset 0 -80px 160px rgba(0, 0, 0, .85);
  pointer-events: none;
}

.vx-logo {
  height: auto;
  max-width: 180px;
}

.vx-artwork {
  opacity: .85;
  max-width: 320px;
}

@media (max-width: 576px) {
  .vx-artwork {
    max-width: 100%;
  }
}

.vx-banner {
  height: 92px;
  border-top-left-radius: var(--vx-radius);
  border-top-right-radius: var(--vx-radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  background-size: cover;
  background-position: center;
  /* border-bottom: 1px solid var(--vx-border); */
}

.vx-badge {
  color: var(--vx-muted);
  font-weight: 600;
  border-radius: 999px;
  padding: .35rem .55rem;
  border: 1px solid rgba(255, 255, 255, .0);
}

.vx-badge-warn {
  color: rgba(245, 158, 11, .95);
}

.vx-badge-success {
  color: rgba(34, 197, 94, .95);
}

.vx-badge-accent {
  border-color: rgba(59, 130, 246, .35);
  color: rgba(191, 219, 254, .95);
  background: rgba(59, 130, 246, .12);
}

.vx-input-addon {
  background: rgba(255, 255, 255, .03);
  border-color: var(--vx-border);
  color: var(--vx-muted);
}

.vx-input {
  background: rgba(255, 255, 255, .02);
  border-color: var(--vx-border);
  color: var(--vx-text);
}

.vx-input:focus {
  box-shadow: var(--vx-focus);
  border-color: rgba(59, 130, 246, .45);
}

.vx-masonry {
  column-gap: 1rem;
  column-count: 1;
  /* margin-bottom: -1rem; */
}

@media (min-width: 768px) {
  .vx-masonry {
    column-count: 2;
  }
}

@media (min-width: 1200px) {
  .vx-masonry {
    column-count: 3;
  }
}

.vx-masonry-item {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  margin-bottom: 1rem;
}

.vx-masonry .card {
  height: auto;
  position: relative;
  border-radius: var(--vx-radius-lg);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .02) inset;
  overflow: hidden;
}

.vx-masonry .card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(59, 130, 246, .55),
      rgba(139, 92, 246, .35),
      transparent);
  background-size: 200% 100%;
  animation: lineFlow 3s linear infinite;
  opacity: .45;
  pointer-events: none;
}

@keyframes lineFlow {
  from {
    background-position: -200% 0;
  }

  to {
    background-position: 200% 0;
  }
}

.badge.bg-light.text-dark {
  background: rgba(255, 255, 255, .92) !important;
  color: #000 !important;
}

.nav-pills .nav-link {
  background: rgba(255, 255, 255, .02);
  border: 1px solid var(--vx-border);
  color: var(--vx-muted);
  font-weight: 800;
}

.nav-pills .nav-link:hover {
  background: rgba(255, 255, 255, .05);
  border-color: var(--vx-border-2);
  color: #fff;
}

.nav-pills .nav-link.active {
  background: rgba(255, 255, 255, .10);
  border-color: var(--vx-border-2);
  color: #fff;
}

.card:not(.vx-glass-card):not(.vx-timeline-bg),
.vx-card,
.list-group-item,
.modal-content,
.accordion-button:not(.collapsed),
.accordion-button,
.accordion-item {
  background: var(--vx-bg-2) !important;
}

.accordion-button:focus {
  box-shadow: none;
}

footer {
  border-top: 1px solid var(--vx-border);
  background: var(--vx-bg-2);
  color: var(--vx-muted);
}

footer .logo-accent {
  color: rgba(255, 255, 255, .88);
  font-weight: 900;
  height: auto !important;
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }

  .vx-marquee-track {
    animation: none;
  }
}

.vx-month {
  position: sticky;
  top: 12px;
  z-index: 5;
  display: inline-flex;
  margin: 10px 0 2px 0;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: .02em;
  width: fit-content;
  color: rgba(255, 255, 255, .90);
}

.vx-badge {
  border-radius: 999px;
}

.vx-badge.is-success {
  background: rgba(34, 197, 94, .25);
  border-color: rgba(34, 197, 94, .50);
}

.vx-badge.is-warning {
  background: rgba(59, 130, 246, .25);
  border-color: rgba(59, 130, 246, .50);
}

.vx-badge.is-error {
  background: rgba(239, 68, 68, .25);
  border-color: rgba(239, 68, 68, .50);
}

.vx-badge.is-new {
  background: rgba(59, 130, 246, .25);
  border-color: rgba(59, 130, 246, .50);
}

.vx-badge.is-update {
  background: rgba(34, 197, 94, .25);
  border-color: rgba(34, 197, 94, .50);
}

.vx-muted {
  color: var(--vx-muted);
  font-size: .75rem;
}

.accordion {
  --bs-accordion-bg: transparent;
  --bs-accordion-color: var(--vx-text);

  --bs-accordion-border-color: var(--vx-border);
  --bs-accordion-border-width: 1px;
  --bs-accordion-border-radius: var(--vx-radius-lg);
  --bs-accordion-inner-border-radius: calc(var(--vx-radius-lg) - 1px);

  --bs-accordion-btn-padding-x: 1rem;
  --bs-accordion-btn-padding-y: .95rem;

  --bs-accordion-btn-color: var(--vx-text);
  --bs-accordion-btn-bg: transparent;

  --bs-accordion-active-color: #fff;
  --bs-accordion-active-bg: transparent;

  --bs-accordion-body-padding-x: 1rem;
  --bs-accordion-body-padding-y: .95rem;

  --bs-accordion-btn-focus-box-shadow: var(--vx-focus);

  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3e%3cpath d='M2 5l6 6 6-6' stroke='rgba(255,255,255,0.72)' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3e%3cpath d='M2 5l6 6 6-6' stroke='rgba(255,255,255,0.92)' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
}

.accordion-item {
  background: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .015)) !important;
  overflow: hidden;
  transition: border-color .15s ease, background .15s ease, transform .12s ease;
}

.accordion-item:hover {
  border-color: var(--vx-border-2) !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .02)) !important;
}

.accordion-button {
  background: transparent !important;
  color: var(--vx-text) !important;
  font-weight: 800;
  letter-spacing: -.01em;
  box-shadow: none !important;
}

.accordion-button::after {
  opacity: .9;
  transform-origin: center;
}

.accordion-button.collapsed {
  color: rgba(255, 255, 255, .80) !important;
}

.accordion-button:not(.collapsed) {
  color: #fff !important;
  background:
    radial-gradient(700px 140px at 10% 0%, rgba(59, 130, 246, .10), transparent 55%),
    radial-gradient(700px 140px at 80% 0%, rgba(139, 92, 246, .08), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .01)) !important;
}

.accordion-button:focus {
  box-shadow: none;
  position: relative;
  z-index: 2;
}

.accordion-body {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .12), rgba(0, 0, 0, .00)) !important;
  color: rgba(255, 255, 255, .86) !important;
}

.accordion-body p {
  margin-bottom: .6rem;
}

.accordion-body code {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  padding: .12rem .45rem;
  color: rgba(255, 255, 255, .92);
}

.accordion-button .faq-hash {
  transition: opacity .12s ease;
}

.accordion-item:hover .accordion-button .faq-hash {
  opacity: .8 !important;
}

@media (max-width: 576px) {
  .accordion {
    --bs-accordion-btn-padding-x: .9rem;
    --bs-accordion-body-padding-x: .9rem;
  }
}

.vx-faq-sticky {
  position: sticky;
  top: 84px;
  z-index: 1020;
}

.vx-minirow {
  border: 1px solid var(--vx-border);
  border-radius: var(--vx-radius-lg);
  background: rgba(255, 255, 255, .02);
  transition: border-color .15s ease, transform .12s ease;
}

@media (max-width: 576px) {
  .vx-faq-sticky {
    top: 72px;
  }
}

.unselectable {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  pointer-events: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  user-select: none;
}

.list-group-item {
  padding-right: 0px;
}

.vx-404-card {
  max-width: 810px;
  border: 1px solid var(--vx-border);
  border-radius: var(--vx-radius-lg);
  padding: 1.25rem;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .02) inset;
}

@media (min-width: 768px) {
  .vx-404-card {
    padding: 1.75rem;
  }
}

.vx-404-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      rgba(59, 130, 246, .55),
      rgba(139, 92, 246, .35),
      transparent);
  background-size: 200% 100%;
  animation: vx404Flow 3s linear infinite;
  opacity: .55;
  pointer-events: none;
}

@keyframes vx404Flow {
  from {
    background-position: -200% 0;
  }

  to {
    background-position: 200% 0;
  }
}

.vx-404-code {
  font-size: clamp(64px, 8vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  color: rgba(255, 255, 255, .92);
  text-shadow: 0 0 30px rgba(59, 130, 246, .10);
}

.vx-404-kicker {
  display: inline-block;
  padding: .35rem .6rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--vx-border) 70%, rgba(59, 130, 246, .22) 30%);
  background: rgba(255, 255, 255, .025);
  color: rgba(255, 255, 255, .72);
  font-weight: 800;
  font-size: .82rem;
  transform: translateY(-6px);
}

.vx-404-title {
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.vx-404-code-inline {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  padding: .12rem .45rem;
  color: rgba(255, 255, 255, .92);
}

.vx-404-hero {
  border-radius: var(--vx-radius-lg);
  background:
    radial-gradient(900px 420px at 85% 10%, rgba(59, 130, 246, .08), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .015));
  overflow: hidden;
}

.vx-404-grid {
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: .25;
  pointer-events: none;
}

.vx-404-link {
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--vx-border);
  border-radius: var(--vx-radius-lg);
  background: rgba(255, 255, 255, .02);
  padding: .95rem 1rem;
  transition: transform .12s ease, border-color .15s ease, background .15s ease;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .02) inset;
  display: block;
}

.vx-404-link:hover {
  border-color: var(--vx-border-2);
  background: rgba(255, 255, 255, .04);
  transform: translateY(-1px);
}

.vx-404-link:focus-visible {
  outline: none;
  box-shadow: var(--vx-focus);
}

.vx-404-arrow {
  font-weight: 900;
  opacity: .7;
}

.vx-404-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .75);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, .12);
}

.vx-404-glow {
  position: absolute;
  inset: -40px;
  background:
    radial-gradient(520px 240px at 20% 10%, rgba(59, 130, 246, .10), transparent 70%),
    radial-gradient(520px 240px at 85% 18%, rgba(139, 92, 246, .08), transparent 70%);
  filter: blur(14px);
  opacity: .9;
  pointer-events: none;
  z-index: 0;
}

.error-hero {
  padding: 0;
}

.error-code {
  margin: 0;
}

.tooltip-left .tooltip-inner {
  text-align: left;
}

.vx-marquee {
  position: relative;
  overflow: hidden;
  padding: .25rem 0;
}

.vx-marquee::before,
.vx-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.vx-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--vx-bg-2), rgba(10, 10, 12, 0));
}

.vx-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--vx-bg-2), rgba(10, 10, 12, 0));
}

.vx-marquee-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: vx-marquee-scroll 35s linear infinite;
}

.vx-marquee:hover .vx-marquee-track {
  animation-play-state: paused;
}

@keyframes vx-marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.vx-marquee-item {
  width: 260px;
  flex: 0 0 auto;
}

.vx-creator-card {
  height: 100%;
}