.site-navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: transparent;
  transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1040;
}
.is-scrolled .site-navbar {
  background-color: rgba(11, 17, 32, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
.site-navbar__brand {
  display: flex;
  align-items: center;
  padding: 0;
}
.site-navbar__logo {
  height: 32px;
  width: auto;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-navbar__logo--light {
  display: block;
}
.site-navbar__logo--dark {
  display: none;
}
.is-scrolled .site-navbar__logo--light {
  display: block;
}
.is-scrolled .site-navbar__logo--dark {
  display: none;
}
.site-navbar__link {
  color: #94A3B8 !important;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-navbar__link::after {
  content: "";
  position: absolute;
  bottom: 0.25rem;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background-color: #22C55E;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-navbar__link:hover, .site-navbar__link:focus-visible {
  color: #FFFFFF !important;
}
.site-navbar__link:hover::after, .site-navbar__link:focus-visible::after {
  transform: scaleX(1);
}
.site-navbar__cta {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-navbar__cta--outline {
  border-color: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
}
.site-navbar__cta--outline:hover, .site-navbar__cta--outline:focus-visible {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}
.site-navbar__cta--primary {
  background-color: #22C55E;
  border-color: #22C55E;
  color: #0B1120;
}
.site-navbar__cta--primary:hover, .site-navbar__cta--primary:focus-visible {
  background-color: #16A34A;
  border-color: #16A34A;
  color: #0B1120;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3);
}
.site-navbar__toggler {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}
.site-navbar__toggler:focus-visible {
  outline: 2px solid #22C55E;
  outline-offset: 2px;
  border-radius: 0.25rem;
}
.site-navbar__toggler-bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #FFFFFF;
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-navbar__toggler-bar + .site-navbar__toggler-bar {
  margin-top: 5px;
}
.is-open .site-navbar__toggler-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.is-open .site-navbar__toggler-bar:nth-child(2) {
  opacity: 0;
}
.is-open .site-navbar__toggler-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1050;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-mobile-menu.is-open {
  pointer-events: auto;
  visibility: visible;
  transition: visibility 0s 0s;
}
.site-mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.is-open .site-mobile-menu__overlay {
  background-color: rgba(0, 0, 0, 0.5);
}
.site-mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 360px;
  height: 100%;
  background-color: #FFFFFF;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.is-open .site-mobile-menu__panel {
  transform: translateX(0);
}
.site-mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #E2E8F0;
}
.site-mobile-menu__brand img {
  height: 28px;
  width: auto;
}
.site-mobile-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid #E2E8F0;
  border-radius: 0.5rem;
  color: #475569;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-mobile-menu__close:hover, .site-mobile-menu__close:focus-visible {
  background-color: #F1F5F9;
  color: #0B1120;
}
.site-mobile-menu__nav {
  flex: 1;
  padding: 1.5rem;
}
.site-mobile-menu__list {
  margin: 0;
  padding: 0;
}
.site-mobile-menu__link {
  display: block;
  padding: 0.875rem 0;
  font-size: 1.125rem;
  font-weight: 500;
  color: #0B1120;
  text-decoration: none;
  border-bottom: 1px solid #F1F5F9;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-mobile-menu__link:hover, .site-mobile-menu__link:focus-visible {
  color: #16A34A;
}
.site-mobile-menu__actions {
  padding: 1.5rem;
  border-top: 1px solid #E2E8F0;
}

.site-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 8rem 0 5rem;
  background-color: #0B1120;
  color: #FFFFFF;
  overflow: hidden;
}
.site-hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.site-hero__bg::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.12) 0%, rgba(34, 197, 94, 0.04) 40%, transparent 70%);
  pointer-events: none;
}
.site-hero__bg::after {
  content: "";
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.site-hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.site-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 2rem;
  padding: 0.375rem 1rem 0.375rem 0.375rem;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  font-size: 0.875rem;
}
.site-hero__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  background-color: #22C55E;
  color: #0B1120;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 100px;
}
.site-hero__eyebrow-text {
  color: #94A3B8;
}
.site-hero__title {
  font-size: clamp(2.25rem, 5vw + 1rem, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
}
.site-hero__title-accent {
  background: linear-gradient(135deg, #22C55E, #38BDF8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.site-hero__subtitle {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  line-height: 1.6;
  color: #94A3B8;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}
.site-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
}
.site-hero__cta {
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 0.875rem 2rem;
  border-radius: 0.625rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-hero__cta--primary {
  background-color: #22C55E;
  border-color: #22C55E;
  color: #0B1120;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.site-hero__cta--primary:hover, .site-hero__cta--primary:focus-visible {
  background-color: #16A34A;
  border-color: #16A34A;
  color: #0B1120;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(34, 197, 94, 0.3);
}
.site-hero__cta--outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-color: rgba(255, 255, 255, 0.08);
}
.site-hero__cta--outline:hover, .site-hero__cta--outline:focus-visible {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}
.site-hero__cta-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-hero__cta-icon--left {
  order: -1;
}
.site-hero__cta--primary:hover .site-hero__cta-icon {
  transform: translateX(3px);
}
.site-hero__proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
}
.site-hero__avatars {
  display: flex;
}
.site-hero__avatar {
  position: relative;
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2.5px solid #0B1120;
  background-color: #1E293B;
  overflow: hidden;
  flex-shrink: 0;
}
.site-hero__avatar + .site-hero__avatar {
  margin-left: -10px;
}
.site-hero__avatar .img-placeholder {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  line-height: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.site-hero__avatar .img-placeholder.loaded {
  opacity: 1;
}
.site-hero__avatar picture {
  display: block;
  width: 100%;
  height: 100%;
}
.site-hero__avatar img, .site-hero__avatar-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50% !important;
  margin: 0 !important;
}
.site-hero__proof-text {
  margin: 0;
  font-size: 0.875rem;
  color: #94A3B8;
}
.site-hero__proof-text strong {
  color: #FFFFFF;
}

@media (max-width: 575.98px) {
  .site-hero {
    padding: 7rem 0 3.5rem;
    min-height: auto;
  }
  .site-hero__eyebrow {
    font-size: 0.8125rem;
  }
  .site-hero__actions {
    flex-direction: column;
    align-items: stretch;
    padding: 0 1rem;
  }
  .site-hero__cta {
    justify-content: center;
  }
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .site-hero {
    padding: 8rem 0 4rem;
  }
}
@media (min-width: 992px) {
  .site-mobile-menu {
    display: none !important;
  }
}
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.site-hero__eyebrow,
.site-hero__title,
.site-hero__subtitle,
.site-hero__actions,
.site-hero__proof {
  animation: heroFadeUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.site-hero__eyebrow {
  animation-delay: 0.1s;
}

.site-hero__title {
  animation-delay: 0.2s;
}

.site-hero__subtitle {
  animation-delay: 0.35s;
}

.site-hero__actions {
  animation-delay: 0.5s;
}

.site-hero__proof {
  animation-delay: 0.65s;
}

@media (prefers-reduced-motion: reduce) {
  .site-navbar,
  .site-navbar__link::after,
  .site-navbar__cta,
  .site-mobile-menu,
  .site-mobile-menu__overlay,
  .site-mobile-menu__panel,
  .site-hero__cta,
  .site-hero__cta-icon {
    transition: none !important;
  }
  .site-hero__eyebrow,
  .site-hero__title,
  .site-hero__subtitle,
  .site-hero__actions,
  .site-hero__proof {
    animation: none !important;
    opacity: 1;
  }
}
.base-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 320px;
  padding: 7rem 0 4.5rem;
  background-color: #0B1120;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #FFFFFF;
  overflow: hidden;
}

.base-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 17, 32, 0.75) 0%, rgba(11, 17, 32, 0.6) 40%, rgba(11, 17, 32, 0.8) 100%);
  z-index: 1;
}

.base-hero__grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  pointer-events: none;
}

.base-hero__divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
  transform: scaleX(1.01);
}
.base-hero__divider svg {
  display: block;
  width: 100%;
  height: 60px;
}
.base-hero__divider path {
  fill: var(--bs-body-bg, #FFFFFF);
}

.base-hero__container {
  position: relative;
  z-index: 4;
}

.base-hero__breadcrumb {
  margin-bottom: 1.25rem;
  animation: baseHeroFadeUp 0.5s 0.3s cubic-bezier(0.4, 0, 0.2, 1) both;
  animation-delay: 0.05s;
}
.base-hero__breadcrumb .breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
  font-size: 0.8125rem;
  letter-spacing: 0.01em;
}
.base-hero__breadcrumb .breadcrumb-item {
  color: rgba(255, 255, 255, 0.5);
}
.base-hero__breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.base-hero__breadcrumb .breadcrumb-item a:hover, .base-hero__breadcrumb .breadcrumb-item a:focus-visible {
  color: #FFFFFF;
}
.base-hero__breadcrumb .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.5);
}
.base-hero__breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.3);
}

.base-hero__title {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: #FFFFFF;
  animation: baseHeroFadeUp 0.6s 0.3s cubic-bezier(0.4, 0, 0.2, 1) both;
  animation-delay: 0.1s;
}

.base-hero__accent-bar {
  width: 48px;
  height: 3px;
  border-radius: 2px;
  background-color: #22C55E;
  margin-bottom: 1.25rem;
  animation: baseHeroFadeUp 0.6s 0.3s cubic-bezier(0.4, 0, 0.2, 1) both;
  animation-delay: 0.18s;
}

.base-hero__subline {
  font-size: clamp(1rem, 1.25vw + 0.5rem, 1.1875rem);
  font-weight: 400;
  line-height: 1.65;
  color: #94A3B8;
  max-width: 560px;
  margin-bottom: 0;
  animation: baseHeroFadeUp 0.6s 0.3s cubic-bezier(0.4, 0, 0.2, 1) both;
  animation-delay: 0.25s;
}

@media (max-width: 767.98px) {
  .base-hero {
    min-height: 260px;
    padding: 6rem 0 3.5rem;
  }
  .base-hero__divider svg {
    height: 40px;
  }
  .base-hero__accent-bar {
    width: 40px;
  }
}
@media (max-width: 575.98px) {
  .base-hero {
    min-height: 220px;
    padding: 5.5rem 0 3rem;
  }
  .base-hero__divider svg {
    height: 28px;
  }
  .base-hero__breadcrumb .breadcrumb {
    font-size: 0.75rem;
  }
}
@media (min-width: 1200px) {
  .base-hero {
    min-height: 360px;
    padding: 8rem 0 5rem;
  }
  .base-hero__divider svg {
    height: 80px;
  }
}
@keyframes baseHeroFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .base-hero__breadcrumb,
  .base-hero__title,
  .base-hero__accent-bar,
  .base-hero__subline {
    animation: none !important;
    opacity: 1;
  }
}
.section-heading {
  margin-bottom: 1rem;
}
.section-heading .section-title {
  font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #0F172A;
}
.section-heading .lead {
  font-size: clamp(1rem, 1.1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: #64748B;
  max-width: 640px;
}
.section-heading.text-center .lead {
  margin-left: auto;
  margin-right: auto;
}

.feature-card {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.feature-card .card {
  position: relative;
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-card .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #22C55E;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-card:hover .card, .feature-card:focus-visible .card {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -8px rgba(0, 0, 0, 0.1), 0 6px 16px -4px rgba(0, 0, 0, 0.06);
  border-color: rgba(34, 197, 94, 0.2);
}
.feature-card:hover .card::before, .feature-card:focus-visible .card::before {
  transform: scaleX(1);
}
.feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-size: 1.25rem;
  border-radius: 0.625rem;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-card:hover .feature-card__icon {
  transform: scale(1.08);
}
.feature-card .card-body h3 {
  font-size: 1.125rem;
  letter-spacing: -0.01em;
}
.feature-card .card-body p {
  font-size: 0.9375rem;
  line-height: 1.65;
}
.feature-card .card-footer .fw-medium {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.9375rem;
  transition: gap 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-card .card-footer .bi-arrow-right {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-card:hover .card-footer .fw-medium, .feature-card:focus-visible .card-footer .fw-medium {
  gap: 0.5rem;
}
.feature-card:hover .card-footer .bi-arrow-right {
  transform: translateX(3px);
}

.hover-lift {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.1), 0 4px 12px -2px rgba(0, 0, 0, 0.06);
}

.section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 5rem 0;
  }
}
@media (min-width: 1200px) {
  .section {
    padding: 6rem 0;
  }
}
.benefit-list li,
.list-unstyled li {
  display: flex;
  align-items: baseline;
  gap: 0.625rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #0F172A;
}
.benefit-list li .bi-check-circle-fill,
.list-unstyled li .bi-check-circle-fill {
  font-size: 1.125rem;
  flex-shrink: 0;
}
.benefit-list li + li,
.list-unstyled li + li {
  margin-top: 0.75rem;
}

.cta-banner {
  background-color: #0F172A;
  border-radius: 1rem;
  padding: 3rem 2rem;
  color: #FFFFFF;
}
.cta-banner__title {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.cta-banner__text {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .cta-banner {
    padding: 3.5rem 3rem;
  }
}

@keyframes featureCardFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.row > [class*=col-] > .feature-card {
  animation: featureCardFadeUp 0.5s 0.3s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.row > [class*=col-] > .feature-card:nth-child(1) {
  animation-delay: 0.12s;
}
.row > [class*=col-] > .feature-card:nth-child(2) {
  animation-delay: 0.19s;
}
.row > [class*=col-] > .feature-card:nth-child(3) {
  animation-delay: 0.26s;
}
.row > [class*=col-] > .feature-card:nth-child(4) {
  animation-delay: 0.33s;
}
.row > [class*=col-] > .feature-card:nth-child(5) {
  animation-delay: 0.4s;
}
.row > [class*=col-] > .feature-card:nth-child(6) {
  animation-delay: 0.47s;
}
.row > [class*=col-] > .feature-card:nth-child(7) {
  animation-delay: 0.54s;
}
.row > [class*=col-] > .feature-card:nth-child(8) {
  animation-delay: 0.61s;
}
.row > [class*=col-] > .feature-card:nth-child(9) {
  animation-delay: 0.68s;
}

.feature-card {
  animation: featureCardFadeUp 0.5s 0.3s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.row > [class*=col-]:nth-child(1) .feature-card {
  animation-delay: 0.12s;
}

.row > [class*=col-]:nth-child(2) .feature-card {
  animation-delay: 0.19s;
}

.row > [class*=col-]:nth-child(3) .feature-card {
  animation-delay: 0.26s;
}

.row > [class*=col-]:nth-child(4) .feature-card {
  animation-delay: 0.33s;
}

.row > [class*=col-]:nth-child(5) .feature-card {
  animation-delay: 0.4s;
}

.row > [class*=col-]:nth-child(6) .feature-card {
  animation-delay: 0.47s;
}

.row > [class*=col-]:nth-child(7) .feature-card {
  animation-delay: 0.54s;
}

.row > [class*=col-]:nth-child(8) .feature-card {
  animation-delay: 0.61s;
}

.row > [class*=col-]:nth-child(9) .feature-card {
  animation-delay: 0.68s;
}

@media (prefers-reduced-motion: reduce) {
  .feature-card,
  .feature-card .card,
  .feature-card .card::before,
  .feature-card__icon,
  .hover-lift {
    animation: none !important;
    transition: none !important;
    opacity: 1;
  }
}
.device-showcase {
  position: relative;
  padding: 5rem 0;
  background-color: #FFFFFF;
  overflow: hidden;
}
.device-showcase::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.06) 0%, rgba(34, 197, 94, 0.02) 40%, transparent 70%);
  pointer-events: none;
}
.device-showcase__grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  pointer-events: none;
}

.device-showcase__content {
  position: relative;
  z-index: 2;
}

.device-showcase__title {
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: #0F172A;
}

.device-showcase__title-accent {
  display: block;
  background: linear-gradient(135deg, #22C55E, #0EA5E9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.device-showcase__lead {
  font-size: clamp(1rem, 1.25vw + 0.5rem, 1.1875rem);
  line-height: 1.7;
  color: #64748B;
  margin-bottom: 1.25rem;
}

.device-showcase__body {
  font-size: 1rem;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 2rem;
}
.device-showcase__body strong {
  color: #0F172A;
  font-weight: 600;
}

.device-showcase__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: 0.625rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.device-showcase__cta:hover, .device-showcase__cta:focus-visible {
  box-shadow: 0 8px 30px rgba(34, 197, 94, 0.25);
}

.device-showcase__store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.device-showcase__store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 1.25rem;
  background-color: #0F172A;
  color: #FFFFFF;
  border-radius: 0.625rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.device-showcase__store-badge:hover, .device-showcase__store-badge:focus-visible {
  background-color: #1a2748;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.device-showcase__store-badge svg {
  flex-shrink: 0;
}

.device-showcase__store-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.device-showcase__store-badge-label {
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  opacity: 0.8;
}

.device-showcase__store-badge-name {
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.device-showcase__devices {
  position: relative;
  z-index: 1;
}

.device-showcase__stage {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  perspective: 1200px;
}

.device-desktop {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  transform: rotateY(-2deg) rotateX(1deg);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.device-desktop__body {
  position: relative;
  background-color: #1E293B;
  border-radius: 12px 12px 0 0;
  padding: 10px 10px 0;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08), 0 25px 60px -10px rgba(0, 0, 0, 0.18), 0 10px 20px -5px rgba(0, 0, 0, 0.1);
}
.device-desktop__bezel-top {
  display: flex;
  justify-content: center;
  padding: 5px 0 6px;
}
.device-desktop__bezel-top::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #334155;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.device-desktop__screen {
  position: relative;
  background-color: #111827;
  border-radius: 3px 3px 0 0;
  overflow: hidden;
}
.device-desktop__screen .img-placeholder {
  margin: 0;
  padding: 0;
  border-radius: 0;
  line-height: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.device-desktop__screen .img-placeholder.loaded {
  opacity: 1;
}
.device-desktop__screen picture {
  display: block;
  width: 100%;
  line-height: 0;
}
.device-desktop__screen img,
.device-desktop__screen .device-screen__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0 !important;
  margin-bottom: 0 !important;
}
.device-desktop__screen::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
}
.device-desktop__chin {
  height: 16px;
  background-color: #1E293B;
  border-radius: 0 0 2px 2px;
}
.device-desktop__stand-neck {
  width: 64px;
  height: 32px;
  margin: 0 auto;
  background: linear-gradient(180deg, #1E293B 0%, #17202d 100%);
  border-radius: 0 0 4px 4px;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.04);
}
.device-desktop__stand-base {
  width: 128px;
  height: 7px;
  margin: 0 auto;
  background-color: #1E293B;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.device-phone {
  position: absolute;
  right: -5%;
  bottom: 0;
  z-index: 2;
  width: 130px;
  transform: translateY(8%) rotateY(4deg) rotateX(-1deg);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.device-phone__body {
  position: relative;
  background-color: #1E293B;
  border-radius: 20px;
  padding: 7px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08), 0 20px 50px -10px rgba(0, 0, 0, 0.2), 0 8px 16px -4px rgba(0, 0, 0, 0.12), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.device-phone__screen {
  position: relative;
  background-color: #111827;
  border-radius: 14px;
  overflow: hidden;
}
.device-phone__screen .img-placeholder {
  margin: 0;
  padding: 0;
  border-radius: 0;
  line-height: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.device-phone__screen .img-placeholder.loaded {
  opacity: 1;
}
.device-phone__screen picture {
  display: block;
  width: 100%;
  line-height: 0;
}
.device-phone__screen img,
.device-phone__screen .device-screen__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0 !important;
  margin-bottom: 0 !important;
}
.device-phone__screen::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, transparent 40%);
  pointer-events: none;
}
.device-phone__notch {
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 60%;
  height: 16px;
  background-color: #1E293B;
  border-radius: 0 0 12px 12px;
}
.device-phone__notch::before {
  content: "";
  position: absolute;
  top: 4px;
  right: 20%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #334155;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}
.device-phone__home-indicator {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 36%;
  height: 3px;
  border-radius: 3px;
  background-color: rgba(255, 255, 255, 0.2);
}
.device-phone__btn-power {
  position: absolute;
  top: 70px;
  right: -2px;
  width: 2px;
  height: 24px;
  background-color: #151d2a;
  border-radius: 0 2px 2px 0;
}
.device-phone__btn-volume-up {
  position: absolute;
  top: 60px;
  left: -2px;
  width: 2px;
  height: 18px;
  background-color: #151d2a;
  border-radius: 2px 0 0 2px;
}
.device-phone__btn-volume-down {
  position: absolute;
  top: 85px;
  left: -2px;
  width: 2px;
  height: 18px;
  background-color: #151d2a;
  border-radius: 2px 0 0 2px;
}

.device-showcase__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.8125rem;
  color: #64748B;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.device-showcase__label-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #22C55E;
}

@media (max-width: 991.98px) {
  .device-showcase {
    padding: 3.5rem 0;
  }
  .device-showcase__content {
    margin-bottom: 3rem;
  }
  .device-showcase__store-badges {
    justify-content: center;
  }
  .device-showcase__stage {
    max-width: 520px;
    margin: 0 auto;
  }
  .device-desktop {
    max-width: 100%;
  }
}
@media (max-width: 575.98px) {
  .device-showcase {
    padding: 2.5rem 0;
  }
  .device-desktop__body {
    padding: 6px 6px 0;
    border-radius: 8px 8px 0 0;
  }
  .device-desktop__bezel-top {
    padding: 3px 0 4px;
  }
  .device-desktop__bezel-top::before {
    width: 3px;
    height: 3px;
  }
  .device-desktop__chin {
    height: 10px;
  }
  .device-desktop__stand-neck {
    width: 44px;
    height: 22px;
  }
  .device-desktop__stand-base {
    width: 88px;
    height: 5px;
  }
  .device-phone {
    width: 90px;
    right: -3%;
  }
  .device-phone__body {
    padding: 5px;
    border-radius: 14px;
  }
  .device-phone__screen {
    border-radius: 10px;
  }
  .device-phone__notch {
    height: 12px;
    border-radius: 0 0 8px 8px;
    top: 5px;
  }
  .device-phone__notch::before {
    width: 3px;
    height: 3px;
    top: 3px;
  }
  .device-phone__home-indicator {
    bottom: 7px;
    height: 2px;
  }
}
@media (min-width: 1200px) {
  .device-desktop {
    max-width: 620px;
  }
  .device-phone {
    width: 150px;
  }
}
@keyframes mockupSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes mockupFadeIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.device-showcase__content {
  animation: mockupFadeIn 0.7s cubic-bezier(0.4, 0, 0.2, 1) both;
  animation-delay: 0.1s;
}

.device-desktop,
.device-phone {
  animation: mockupSlideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.device-desktop {
  animation-delay: 0.2s;
}

.device-phone {
  animation-delay: 0.4s;
}

@media (prefers-reduced-motion: reduce) {
  .device-showcase__content,
  .device-desktop,
  .device-phone {
    animation: none !important;
    opacity: 1;
    transition: none !important;
  }
  .device-showcase__cta,
  .device-showcase__store-badge {
    transition: none !important;
  }
}
.admin-login-body {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #212529;
}

.admin-login__card {
  border-radius: 0.625rem;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
}
.admin-login__icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #0f3460;
  color: #ffffff;
}
.admin-login__icon-badge svg {
  width: 24px;
  height: 24px;
}
.admin-login__btn {
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  color: #ffffff;
  background: #0f3460;
  border: none;
  border-radius: 0.375rem;
  transition: background 0.15s ease-in-out;
}
.admin-login__btn:hover, .admin-login__btn:focus-visible {
  background: #0b2848;
  color: #ffffff;
}
.admin-login__btn:active {
  transform: translateY(1px);
}
.admin-login__back-link {
  color: #6c757d;
  transition: color 0.15s ease-in-out;
}
.admin-login__back-link:hover {
  color: #0f3460;
}

.admin-login__card .form-control {
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  border-radius: 0.375rem;
  border-color: #dee2e6;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.admin-login__card .form-control:focus {
  border-color: #0f3460;
  box-shadow: 0 0 0 3px rgba(15, 52, 96, 0.2);
}
.admin-login__card .alert {
  border-radius: 0.375rem;
  font-size: 0.8rem;
}

.deploy-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 1.5rem;
}
.deploy-page__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bs-dark, #212529);
}

.deploy-results {
  border-left: 4px solid var(--bs-info, #0dcaf0);
}
.deploy-results__output summary {
  cursor: pointer;
  font-size: 0.8125rem;
}
.deploy-results__pre {
  max-height: 200px;
  overflow-y: auto;
  font-size: 0.8125rem;
  line-height: 1.5;
  white-space: pre-wrap;
  word-break: break-word;
}

.deploy-form {
  border-left: 4px solid var(--bs-primary, #0d6efd);
}

.deploy-targets__check-col {
  width: 70px;
  text-align: center;
}
.deploy-targets tbody tr:has(input:checked) {
  background-color: rgba(var(--bs-primary-rgb, 13, 110, 253), 0.06);
}
.deploy-targets tbody tr {
  transition: background-color 0.15s ease-in-out;
}
.deploy-targets code {
  font-size: 0.85em;
  color: var(--bs-secondary, #6c757d);
}

.btn-primary[disabled] {
  cursor: not-allowed;
  opacity: 0.75;
}

@font-face {
  font-family: "Figtree";
  src: url("../fonts/static/Figtree-Regular-EqTL88j.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Figtree";
  src: url("../fonts/static/Figtree-Bold-PWhGhTD.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
:root {
  --bs-body-font-family: Figtree, "Adjusted Arial Fallback", sans-serif;
  --dc-body-font-family: Figtree, "Adjusted Arial Fallback", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
}

.bg-image {
  position: absolute;
  inset: 0;
}
.bg-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .bg-image img {
    width: 100vw !important;
    height: 500px;
  }
}
.img-placeholder {
  background-size: cover;
  background-position: center;
  filter: blur(3px);
  transition: filter 0.5s ease-out;
}
.img-placeholder.loaded {
  filter: blur(0);
  background-image: unset !important;
}

.cta-card {
  transform: translateY(0);
  transition: transform 0.3s ease-in-out;
}
.cta-card:hover {
  transform: translateY(-3px);
}

:root {
  --button-secondary-bg: var(--bs-secondary-bg-subtle) !important;
}

.ql-editor.ql-blank {
  min-height: 6rem;
}

.indication-circle {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 5px;
}

.swal-wide {
  width: 45vw !important;
}

.ql-editor.ql-blank:focus::before {
  content: "";
}

.ticket-dropzone .dz-preview {
  width: 10%;
  float: left;
}
.ticket-dropzone .dz-default {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  border: 2px dashed var(--bs-gray-300);
  border-radius: 5px;
  background-color: var(--bs-gray-100);
  padding: 10px;
  margin: 0 auto;
  width: 100%;
}
.ticket-dropzone .dz-default h5, .ticket-dropzone .dz-default p {
  margin-right: 5px !important;
  margin-bottom: 0 !important;
  font-size: 12px !important;
}
.ticket-dropzone .dz-default .avatar {
  display: none;
}

.small-line-height-dropzone {
  padding: 0 !important;
  margin: 0 !important;
  min-height: 60px !important;
}
.small-line-height-dropzone .attachment-view-list .btn-group {
  display: none;
}
.small-line-height-dropzone .dz-default {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  border: none;
  border-radius: 0;
  box-shadow: none !important;
  background-color: transparent;
  background: none;
  padding: 8px 12px;
  margin: 0 auto;
  width: 100%;
  height: 38px !important;
  min-height: 38px !important;
}
.small-line-height-dropzone .dz-default .avatar {
  display: none;
}

.ql-editor.is-invalid {
  border: 1px solid var(--bs-danger);
}

.card-header h1, .card-header h2, .card-header h3, .card-header h4, .card-header h5, .card-header h6 {
  margin-bottom: 0 !important;
}
.card-header .nav-segment {
  height: max-content;
  line-height: 1rem;
}

.gslide-title {
  margin-bottom: 3px !important;
}

.btn-asset-status .icon-active {
  display: none;
}

.btn-asset-status .icon-inactive {
  display: inline-block;
}

.btn-check:checked + .btn-asset-status .icon-active {
  display: inline-block;
}

.btn-check:checked + .btn-asset-status .icon-inactive {
  display: none;
}

.btn-check:checked + .btn-asset-status {
  color: #fff;
  background-color: var(--bs-success); /* Bootstrap Success Color */
  border-color: var(--bs-success);
}

.card-hover {
  transition: 0.215s ease-in-out;
}
.card-hover:hover {
  transform: translateY(-2px);
}

.dc-checkbox * {
  box-sizing: border-box;
}

.dc-checkbox .cbx {
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.2s ease;
  display: inline-block;
}

.dc-checkbox .cbx:not(:last-child) {
  margin-right: 6px;
}

.dc-checkbox .cbx:hover {
  background: rgba(0, 119, 255, 0.06);
}

.dc-checkbox .cbx span {
  float: left;
  vertical-align: middle;
  transform: translate3d(0, 0, 0);
}

.dc-checkbox .cbx span:first-child {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  transform: scale(1);
  border: 1px solid #cccfdb;
  transition: all 0.2s ease;
  box-shadow: 0 1px 1px rgba(0, 16, 75, 0.05);
}

.dc-checkbox .cbx span:first-child svg {
  position: absolute;
  top: 3px;
  left: 2px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16px;
  stroke-dashoffset: 16px;
  transition: all 0.3s ease;
  transition-delay: 0.1s;
  transform: translate3d(0, 0, 0);
}

.dc-checkbox .cbx span:last-child {
  padding-left: 8px;
  line-height: 18px;
}

.dc-checkbox .cbx:hover span:first-child {
  border-color: #07f;
}

.dc-checkbox .inp-cbx {
  position: absolute;
  visibility: hidden;
}

.dc-checkbox .inp-cbx:checked + .cbx span:first-child {
  background: #07f;
  border-color: #07f;
  animation: wave-4 0.4s ease;
}

.dc-checkbox .inp-cbx:checked + .cbx span:first-child svg {
  stroke-dashoffset: 0;
}

.dc-checkbox .inline-svg {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
  user-select: none;
}

@media screen and (max-width: 640px) {
  .dc-checkbox .cbx {
    width: 100%;
    display: inline-block;
  }
}
@-moz-keyframes wave-4 {
  50% {
    transform: scale(0.9);
  }
}
@-webkit-keyframes wave-4 {
  50% {
    transform: scale(0.9);
  }
}
@-o-keyframes wave-4 {
  50% {
    transform: scale(0.9);
  }
}
@keyframes wave-4 {
  50% {
    transform: scale(0.9);
  }
}
.login-loader {
  display: inline-grid;
  padding: 5px;
  background: #fff;
  filter: blur(4px) contrast(12);
}
.login-loader:before {
  content: "";
  height: 40px;
  aspect-ratio: 3;
  --c: #0000 64%,#000 66% 98%,#0000 101%;
  background: radial-gradient(35% 146% at 50% 159%, var(--c)) 0 0, radial-gradient(35% 146% at 50% -59%, var(--c)) 100% 100%;
  background-size: 66.6666666667% 50%;
  background-repeat: repeat-x;
  animation: l11 1.8s infinite linear;
}

@keyframes l11 {
  to {
    background-position: -200% 0, -100% 100%;
  }
}
[data-bs-theme=dark] .hide-on-dark {
  display: none !important;
}

[data-bs-theme=light] .hide-on-light {
  display: none !important;
}

.ts-dropdown {
  z-index: var(--zindex-1050);
}

.table-responsive {
  overflow-y: scroll;
}

/*# sourceMappingURL=app.css-QB0JNY6.map */
