*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  min-height: 100%;
}

a {
  transition: color var(--ncs-transition-fast, 0.15s ease);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.ncs-page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.ncs-content-shell {
  width: 100%;
  min-width: 0;
}

.ncs-scope {
  --ncs-color-bg: #f8fafc;
  --ncs-color-surface: #ffffff;
  --ncs-color-text: #1f2937;
  --ncs-color-muted: #475569;
  --ncs-color-primary: #2563eb;
  --ncs-color-primary-contrast: #ffffff;
  --ncs-color-link: #2563eb;
  --ncs-color-border: rgba(148, 163, 184, 0.28);
  --ncs-color-shadow: rgba(15, 23, 42, 0.12);
  --ncs-font-heading: Inter, 'Segoe UI', system-ui, -apple-system, sans-serif;
  --ncs-font-body: Inter, 'Segoe UI', system-ui, -apple-system, sans-serif;
  --ncs-font-mono: 'SFMono-Regular', Menlo, Monaco, Consolas, monospace;
  --ncs-radius-sm: 0.375rem;
  --ncs-radius-md: 0.625rem;
  --ncs-radius-lg: 0.875rem;
  --ncs-shadow-sm: 0 4px 14px rgba(15, 23, 42, 0.06);
  --ncs-shadow-md: 0 10px 26px rgba(15, 23, 42, 0.1);
  --ncs-shadow-lg: 0 16px 38px rgba(15, 23, 42, 0.14);
  --ncs-space-1: 0.25rem;
  --ncs-space-2: 0.5rem;
  --ncs-space-3: 0.75rem;
  --ncs-space-4: 1rem;
  --ncs-space-5: 1.5rem;
  --ncs-space-6: 2rem;
  --ncs-space-7: 3rem;
  --ncs-space-8: 4rem;
  --ncs-transition-fast: 0.15s ease;
  --ncs-transition-normal: 0.22s ease;
  --ncs-focus-ring-color: rgba(37, 99, 235, 0.45);
  --ncs-focus-ring-width: 3px;
  background: var(--ncs-color-bg);
  color: var(--ncs-color-text);
  font-family: var(--ncs-font-body);
}

.ncs-container {
  width: 100%;
  max-width: 68rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.5rem, 5vw, 4.5rem);
  padding-right: clamp(1.5rem, 5vw, 4.5rem);
}

.ncs-content-container {
  width: 100%;
  min-width: 0;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.ncs-scope .ncs-content-region--static {
  padding-top: 0;
  padding-bottom: 0;
}

.ncs-scope .ncs-container.ncs-static-region-shell {
  max-width: 1200px;
  padding-left: 0;
  padding-right: 0;
}

.ncs-scope .ncs-content-container.ncs-static-content-container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 0;
  padding-right: 0;
}

.ncs-scope .ncs-static-content-container.ncs-content-grid-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.ncs-section {
  padding-top: var(--ncs-space-6);
  padding-bottom: var(--ncs-space-6);
}

.ncs-content-section {
  padding-top: 0;
  padding-bottom: 0;
}

.ncs-scope .ncs-content-region--hero {
  padding-top: var(--ncs-space-7);
  padding-bottom: var(--ncs-space-5);
}

.ncs-scope .ncs-content-region--main {
  padding-top: var(--ncs-space-5);
  padding-bottom: var(--ncs-space-8);
}

.ncs-scope .ncs-content-region--article {
  padding-top: var(--ncs-space-7);
  padding-bottom: var(--ncs-space-7);
}

.ncs-scope .ncs-content-grid-section {
  padding-top: var(--ncs-space-4);
  padding-bottom: var(--ncs-space-7);
}

.ncs-scope .ncs-content-grid-section.ncs-grid {
  gap: 0;
}

.ncs-scope .ncs-content-flow {
  display: flex;
  flex-direction: column;
  gap: var(--ncs-space-5);
}

.ncs-scope .ncs-content-flow--article {
  gap: var(--ncs-space-6);
}

.ncs-scope .ncs-content-header {
  gap: var(--ncs-space-2);
}

.ncs-scope .ncs-static-content-container--article-header .ncs-content-header {
  text-align: center;
  align-items: center;
}

.ncs-stack {
  display: flex;
  flex-direction: column;
  gap: var(--ncs-space-5);
}

.ncs-content-stack {
  display: flex;
  flex-direction: column;
  gap: var(--ncs-space-5);
}

.ncs-grid {
  display: grid;
  gap: var(--ncs-space-4);
}

@media (min-width: 640px) {
  .ncs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .ncs-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.ncs-nav {
  border-bottom: 1px solid color-mix(in srgb, var(--ncs-color-border) 70%, transparent);
  background: var(--ncs-color-bg);
  position: sticky;
  top: 0;
  z-index: 10;
}

.ncs-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--ncs-space-4);
  padding-top: var(--ncs-space-4);
  padding-bottom: var(--ncs-space-4);
}

.ncs-nav__brand {
  display: flex;
  align-items: center;
  gap: var(--ncs-space-3);
}

.ncs-nav-link {
  display: inline-flex;
  align-items: center;
  max-height: 48px;
  color: var(--ncs-color-link);
  text-decoration: none;
}

.ncs-nav-logo {
  display: block;
  height: 34px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.ncs-nav-title {
  font-size: 1.25rem;
  font-family: var(--ncs-font-heading);
  font-weight: 700;
  color: var(--ncs-color-text);
}

.ncs-nav__actions {
  display: flex;
  align-items: center;
  gap: var(--ncs-space-3);
  flex-wrap: wrap;
}

.ncs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1rem;
  border-radius: var(--ncs-radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--ncs-font-body);
  text-decoration: none;
  border: 1px solid transparent;
  transition:
    background var(--ncs-transition-normal),
    color var(--ncs-transition-normal),
    border-color var(--ncs-transition-normal),
    box-shadow var(--ncs-transition-normal);
  cursor: pointer;
}

.ncs-btn:focus-visible,
.ncs-link:focus-visible,
.ncs-input:focus-visible,
.ncs-textarea:focus-visible,
.ncs-select:focus-visible {
  outline: none;
  box-shadow: 0 0 0 var(--ncs-focus-ring-width) var(--ncs-focus-ring-color);
}

.ncs-btn:hover,
.ncs-btn:focus {
  text-decoration: none;
}

.ncs-nav-cta {
  display: inline-flex;
}

.ncs-btn--primary {
  background: var(--ncs-color-primary);
  border-color: var(--ncs-color-primary);
  color: var(--ncs-color-primary-contrast);
}

.ncs-btn--primary:hover,
.ncs-btn--primary:focus {
  filter: brightness(0.94);
  color: var(--ncs-color-primary-contrast);
}

.ncs-btn--secondary {
  background: color-mix(in srgb, var(--ncs-color-surface) 70%, var(--ncs-color-border));
  border-color: color-mix(in srgb, var(--ncs-color-border) 90%, transparent);
  color: var(--ncs-color-text);
}

.ncs-btn--secondary:hover,
.ncs-btn--secondary:focus {
  filter: brightness(0.97);
}

.ncs-btn--outline {
  background: transparent;
  border-color: var(--ncs-color-border);
  color: var(--ncs-color-text);
}

.ncs-btn--ghost {
  background: transparent;
  border-color: transparent;
  color: var(--ncs-color-link);
}

.ncs-btn--sm {
  padding: 0.45rem 0.75rem;
  font-size: 0.82rem;
}

.ncs-btn--md {
  padding: 0.625rem 1rem;
  font-size: 0.9rem;
}

.ncs-btn--lg {
  padding: 0.8rem 1.2rem;
  font-size: 1rem;
}

.ncs-card {
  background: var(--ncs-color-surface);
  border: 1px solid var(--ncs-color-border);
  border-radius: var(--ncs-radius-lg);
  box-shadow: var(--ncs-shadow-sm);
  padding: var(--ncs-space-5);
  display: flex;
  flex-direction: column;
  gap: var(--ncs-space-3);
  min-height: 15rem;
}

.ncs-card p {
  margin: 0;
}

.ncs-card--link {
  text-decoration: none;
  color: inherit;
  height: 100%;
  transition:
    transform var(--ncs-transition-normal),
    box-shadow var(--ncs-transition-normal),
    border-color var(--ncs-transition-normal);
}

.ncs-card--link:hover,
.ncs-card--link:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--ncs-shadow-md);
  border-color: color-mix(in srgb, var(--ncs-color-primary) 45%, var(--ncs-color-border));
}

.ncs-card-content {
  display: flex;
  flex-direction: column;
  gap: var(--ncs-space-2);
  width: 100%;
}

.ncs-card-title {
  margin: 0;
}

.ncs-card-meta {
  color: var(--ncs-color-muted);
}

.ncs-card-description {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ncs-scope .ncs-card.ncs-content-card {
  border: 1px solid #f4f4f5;
  border-radius: 0;
  box-shadow: none;
  padding-top: var(--ncs-space-5);
  padding-right: var(--ncs-space-5);
  padding-bottom: var(--ncs-space-5);
  padding-left: var(--ncs-space-5);
  min-height: 15.5rem;
  transition:
    border-color var(--ncs-transition-normal),
    background var(--ncs-transition-normal);
}

.ncs-scope .ncs-card--link.ncs-content-card:hover,
.ncs-scope .ncs-card--link.ncs-content-card:focus-visible {
  border-color: var(--ncs-color-primary);
  box-shadow: none;
  transform: none;
}

.ncs-scope .ncs-content-card-content {
  gap: var(--ncs-space-2);
}

.ncs-scope .ncs-content-card-content .ncs-card-description {
  margin-top: var(--ncs-space-1);
}

.ncs-prose {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ncs-color-text);
}

.ncs-content-prose {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ncs-color-text);
}

.ncs-scope .ncs-content-prose > * {
  margin-top: 0;
  margin-bottom: 0;
}

.ncs-scope .ncs-content-prose > * + * {
  margin-top: var(--ncs-space-5);
}

.ncs-article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--ncs-space-2);
  color: var(--ncs-color-muted);
}

.ncs-scope .ncs-static-content-container--article-header .ncs-article-meta {
  justify-content: center;
}

.ncs-article-meta time {
  color: inherit;
}

.ncs-article-meta-sep {
  opacity: 0.72;
}

.ncs-h1,
.ncs-h2,
.ncs-h3,
.ncs-h4,
.ncs-h5,
.ncs-h6 {
  margin: 0;
  color: var(--ncs-color-text);
  font-family: var(--ncs-font-heading);
  line-height: 1.25;
}

.ncs-h1 {
  font-size: clamp(1.9rem, 1.2vw + 1.35rem, 2.5rem);
}

.ncs-h2 {
  font-size: clamp(1.5rem, 0.9vw + 1.1rem, 2rem);
}

.ncs-h3 {
  font-size: clamp(1.2rem, 0.6vw + 1rem, 1.5rem);
}

.ncs-h4 {
  font-size: 1.25rem;
}

.ncs-h5 {
  font-size: 1.05rem;
}

.ncs-h6 {
  font-size: 0.95rem;
}

.ncs-p {
  margin: 0;
  color: var(--ncs-color-text);
}

.ncs-lead {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--ncs-color-text);
}

.ncs-landing-hero {
  text-align: center;
  align-items: center;
  gap: var(--ncs-space-3);
}

.ncs-landing-title {
  max-width: 32ch;
}

.ncs-landing-subtext {
  max-width: 68ch;
  margin: 0;
  color: var(--ncs-color-muted);
}

.ncs-small {
  font-size: 0.875rem;
  color: var(--ncs-color-muted);
}

.ncs-link {
  color: var(--ncs-color-link);
  text-decoration: none;
}

.ncs-link:hover,
.ncs-link:focus {
  text-decoration: underline;
}

.ncs-ul,
.ncs-ol {
  margin: 0 0 var(--ncs-space-5) var(--ncs-space-5);
  padding-left: var(--ncs-space-4);
}

.ncs-li {
  margin-bottom: var(--ncs-space-2);
}

.ncs-quote {
  border-left: 4px solid color-mix(in srgb, var(--ncs-color-border) 90%, transparent);
  padding-left: var(--ncs-space-4);
  margin: 0 0 var(--ncs-space-5);
  font-style: italic;
}

.ncs-pre {
  background: #0f172a;
  color: #e2e8f0;
  padding: var(--ncs-space-4) var(--ncs-space-5);
  border-radius: var(--ncs-radius-md);
  overflow-x: auto;
  font-size: 0.95rem;
  margin-bottom: var(--ncs-space-5);
  font-family: var(--ncs-font-mono);
}

.ncs-code {
  background: color-mix(in srgb, var(--ncs-color-border) 42%, transparent);
  border-radius: var(--ncs-radius-sm);
  padding: 0.15rem 0.45rem;
  font-size: 0.95rem;
  font-family: var(--ncs-font-mono);
}

.ncs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--ncs-space-5);
}

.ncs-th,
.ncs-td {
  border: 1px solid var(--ncs-color-border);
  padding: 0.75rem 1rem;
  text-align: left;
}

.ncs-hr {
  border: 0;
  border-top: 1px solid var(--ncs-color-border);
  margin: var(--ncs-space-6) 0;
}

.ncs-input,
.ncs-textarea,
.ncs-select {
  width: 100%;
  border: 1px solid var(--ncs-color-border);
  border-radius: var(--ncs-radius-md);
  background: var(--ncs-color-surface);
  color: var(--ncs-color-text);
  font-family: var(--ncs-font-body);
  padding: 0.625rem 0.75rem;
}

.ncs-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--ncs-space-2);
}

.ncs-help {
  display: block;
  margin-top: var(--ncs-space-2);
  color: var(--ncs-color-muted);
  font-size: 0.8125rem;
}

.ncs-footer {
  margin-top: auto;
  padding-top: var(--ncs-space-8);
  padding-bottom: var(--ncs-space-8);
  font-size: 0.9rem;
  color: var(--ncs-color-muted);
}

.ncs-footer-link {
  color: inherit;
  text-decoration: underline;
}

.ncs-scope {
      --ncs-color-bg: #f8fafc;
      --ncs-color-surface: #ffffff;
      --ncs-color-text: #1f2937;
      --ncs-color-muted: #475569;
      --ncs-color-primary: #2563EB;
      --ncs-color-primary-contrast: #ffffff;
      --ncs-color-link: #2563EB;
      --ncs-color-border: rgba(148, 163, 184, 0.28);
      --ncs-color-shadow: rgba(15, 23, 42, 0.12);
      --ncs-font-heading: Inter, 'Segoe UI', system-ui, -apple-system, sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      --ncs-font-body: Inter, 'Segoe UI', system-ui, -apple-system, sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      --ncs-font-mono: 'SFMono-Regular', Menlo, Monaco, Consolas, monospace;
    }

    .ncs-scope .ncs-h1,
    .ncs-scope .ncs-h2,
    .ncs-scope .ncs-h3,
    .ncs-scope .ncs-h4,
    .ncs-scope .ncs-h5,
    .ncs-scope .ncs-h6 {
      color: #0f172a;
    }

    .ncs-scope .ncs-link {
      text-decoration: none;
    }

    .ncs-scope .ncs-card,
    .ncs-scope .ncs-input,
    .ncs-scope .ncs-textarea,
    .ncs-scope .ncs-select {
      border-color: rgba(148, 163, 184, 0.28);
    }
.ncs-scope{
  --ncs-font-body: Inter, Helvetica, "Apple Color Emoji", "Segoe UI Emoji", NotoColorEmoji, "Noto Color Emoji", "Segoe UI Symbol", "Android Emoji", EmojiSymbols, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", sans-serif;
  --ncs-font-heading: Inter, Helvetica, "Apple Color Emoji", "Segoe UI Emoji", NotoColorEmoji, "Noto Color Emoji", "Segoe UI Symbol", "Android Emoji", EmojiSymbols, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", sans-serif;
  --ncs-font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --ncs-color-bg: rgb(255, 255, 255);
  --ncs-color-surface: #fff;
  --ncs-color-text: rgb(0, 0, 0);
  --ncs-color-muted: #6b6f76;
  --ncs-color-primary: #5e5df0;
  --ncs-color-primary-contrast: #ffffff;
  --ncs-color-link: rgb(255, 255, 255);
  --ncs-color-border: rgb(0, 0, 0);
  --ncs-color-shadow: rgba(0,0,0,0.15);
  --ncs-radius-sm: 0px;
  --ncs-radius-md: 0px;
  --ncs-radius-lg: 0px;
  --ncs-shadow-sm: 0 0 20px rgba(0,0,0,.04);
  --ncs-shadow-md: rgba(0,0,0,.09) 0px 3px 12px;
  --ncs-shadow-lg: 0px 4px 25px 3px rgba(0,0,0,.15);
  --ncs-space-1: 0.25rem;
  --ncs-space-2: 0.5rem;
  --ncs-space-3: 0.75rem;
  --ncs-space-4: 1rem;
  --ncs-space-5: 1.5rem;
  --ncs-space-6: 2rem;
  --ncs-space-7: 3rem;
  --ncs-space-8: 4rem;
  --ncs-transition-fast: 150ms ease;
  --ncs-transition-normal: 250ms ease;
  --ncs-focus-ring-color: rgb(16, 16, 16);
  --ncs-focus-ring-width: 1px;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: var(--ncs-font-body);
  color: var(--ncs-color-text);
  background: var(--ncs-color-bg);
}

.ncs-scope .ncs-content-shell{
}

.ncs-scope .ncs-container{
}

.ncs-scope .ncs-content-container{
}

.ncs-scope .ncs-section{
}

.ncs-scope .ncs-content-section{
}

.ncs-scope .ncs-stack{
}

.ncs-scope .ncs-grid{
}

.ncs-scope .ncs-card{
}

.ncs-scope .ncs-prose{
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--ncs-color-text);
  letter-spacing: normal;
}

.ncs-scope .ncs-content-prose{
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--ncs-color-text);
  letter-spacing: normal;
}

.ncs-scope .ncs-h1{
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--ncs-color-text);
}

.ncs-scope .ncs-content-h1{
}

.ncs-scope .ncs-h2{
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -1px;
  text-transform: none;
  color: var(--ncs-color-text);
}

.ncs-scope .ncs-content-h2{
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -1px;
  text-transform: none;
  color: rgb(0, 0, 0);
}

.ncs-scope .ncs-h3{
  font-size: 20px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: var(--ncs-color-text);
}

.ncs-scope .ncs-content-h3{
  font-size: 20px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: rgb(0, 0, 0);
}

.ncs-scope .ncs-h4{
  font-size: 16px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: rgb(0, 0, 0);
}

.ncs-scope .ncs-h5{
  font-size: 14px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: rgb(0, 0, 0);
}

.ncs-scope .ncs-h6{
  font-size: 13px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: rgb(0, 0, 0);
}

.ncs-scope .ncs-p{
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--ncs-color-text);
  letter-spacing: normal;
}

.ncs-scope .ncs-content-p{
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--ncs-color-text);
  letter-spacing: normal;
}

.ncs-scope .ncs-small{
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: normal;
  color: var(--ncs-color-muted);
}

.ncs-scope .ncs-lead{
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--ncs-color-text);
  letter-spacing: normal;
}

.ncs-scope .ncs-link{
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: var(--ncs-color-link);
}

.ncs-scope .ncs-ul{
}

.ncs-scope .ncs-ol{
}

.ncs-scope .ncs-li{
}

.ncs-scope .ncs-quote{
}

.ncs-scope .ncs-code{
}

.ncs-scope .ncs-pre{
}

.ncs-scope .ncs-table{
}

.ncs-scope .ncs-th{
}

.ncs-scope .ncs-td{
}

.ncs-scope .ncs-hr{
}

.ncs-scope .ncs-btn{
}

.ncs-scope .ncs-btn--primary{
}

.ncs-scope .ncs-btn--secondary{
}

.ncs-scope .ncs-btn--outline{
}

.ncs-scope .ncs-btn--ghost{
}

.ncs-scope .ncs-btn--sm{
}

.ncs-scope .ncs-btn--md{
}

.ncs-scope .ncs-btn--lg{
}

.ncs-scope .ncs-input{
}

.ncs-scope .ncs-textarea{
}

.ncs-scope .ncs-select{
}

.ncs-scope .ncs-label{
}

.ncs-scope .ncs-help{
}

.ncs-scope .ncs-nav{
}

.ncs-scope .ncs-nav-link{
}

.ncs-scope .ncs-nav-cta{
}

.ncs-scope .ncs-footer{
}

.ncs-scope .ncs-footer-link{
}

.ncs-scope .ncs-chrome #td-navbar { background-color: rgb(1, 6, 51) !important; color: white !important; }
.ncs-scope .ncs-chrome h1, .ncs-scope .ncs-chrome h2, .ncs-scope .ncs-chrome h3, .ncs-scope .ncs-chrome hr, .ncs-scope .ncs-chrome iframe, .ncs-scope .ncs-chrome li, .ncs-scope .ncs-chrome p, .ncs-scope .ncs-chrome ul { margin: 0px; padding: 0px; }
.ncs-scope .ncs-chrome h1, .ncs-scope .ncs-chrome h2, .ncs-scope .ncs-chrome h3 { font-size: 100%; font-weight: 400; }
.ncs-scope .ncs-chrome ul { list-style: none; }
.ncs-scope .ncs-chrome button { margin: 0px; }
.ncs-scope .ncs-chrome img { height: auto; max-width: 100%; }
.ncs-scope .ncs-chrome iframe { border: 0px; }
.ncs-scope .ncs-chrome { background-color: rgb(255, 255, 255); font-size: 16px; -webkit-font-smoothing: antialiased; text-rendering: optimizelegibility }
.ncs-scope .ncs-chrome footer, .ncs-scope .ncs-chrome header { display: block; }
.ncs-scope .ncs-chrome { font-family: Inter, Helvetica, "Apple Color Emoji", "Segoe UI Emoji", NotoColorEmoji, "Noto Color Emoji", "Segoe UI Symbol", "Android Emoji", EmojiSymbols, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", sans-serif }
.ncs-scope .ncs-chrome button { font-family: Inter, Helvetica, "Apple Color Emoji", "Segoe UI Emoji", NotoColorEmoji, "Noto Color Emoji", "Segoe UI Symbol", "Android Emoji", EmojiSymbols, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", sans-serif; }
.ncs-scope .ncs-chrome { color: inherit; font-size: 1em; font-weight: 400; line-height: 24px }
.ncs-scope .ncs-chrome a { color: rgb(110, 121, 214); cursor: pointer; text-decoration: none; }
.ncs-scope .ncs-chrome a strong { color: currentcolor; }
.ncs-scope .ncs-chrome a:hover { color: rgb(54, 54, 54); }
.ncs-scope .ncs-chrome hr { background-color: rgb(245, 245, 245); }
.ncs-scope .ncs-chrome hr { border: none; display: block; height: 2px; margin: 1.5rem 0px; }
.ncs-scope .ncs-chrome img { height: auto; max-width: 100%; }
.ncs-scope .ncs-chrome span { font-style: inherit; font-weight: inherit; }
.ncs-scope .ncs-chrome strong { color: inherit; font-weight: 700; }
@keyframes spinAround { 
  0% { transform: rotate(0deg); }
  100% { transform: rotate(359deg); }
}
.ncs-scope .ncs-chrome, .ncs-scope .ncs-chrome { background-color: var(--background); font-family: Inter, Helvetica, "Apple Color Emoji", "Segoe UI Emoji", NotoColorEmoji, "Noto Color Emoji", "Segoe UI Symbol", "Android Emoji", EmojiSymbols, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", sans-serif }
.ncs-scope .ncs-chrome ::-webkit-scrollbar-thumb { background-color: var(--background-highlight-highlight) }
.ncs-scope .ncs-chrome div::-webkit-scrollbar-thumb { background-color: var(--background-highlight-highlight); border: 4px solid transparent; border-radius: 8px; background-clip: padding-box; }
.ncs-scope .ncs-chrome div::-webkit-scrollbar { width: 16px; }
.ncs-scope .ncs-chrome .typedream.content.td-navbar-item-dropdown-menu { background-color: transparent; cursor: default; }
@media only screen and (max-width: 1023px) {
.ncs-scope .ncs-chrome .typedream.content.td-navbar-item-dropdown-menu { height: 0px; overflow-y: hidden; }
.ncs-scope .ncs-chrome .td-navbar-item[data-state="open"] .typedream.content.td-navbar-item-dropdown-menu { height: auto; }
}
@media only screen and (min-width: 1024px) {
.ncs-scope .ncs-chrome .typedream.content.td-navbar-item-dropdown-menu { position: absolute; left: 50%; transform: translateX(-50%); top: 60px; display: none; overflow: visible; }
.ncs-scope .ncs-chrome .td-navbar-item:hover .typedream.content.td-navbar-item-dropdown-menu { display: flex; }
}
.ncs-scope .ncs-chrome .typedream.content { --background: #fff; --background-highlight: #f0f3f9; --background-highlight-highlight: #e5eaf5; --background-button: #fff; --background-modal: linear-gradient(136.61deg,#fff 13.72%,#fff 74.3%); --background-modal-highlight: #f8f9fb; --background-popup-overlay: hsla(217,6%,59%,.4); --shadow-modal-color: rgba(0,0,0,.09); --shadow-modal: rgba(0,0,0,.09) 0px 3px 12px; --shadow-modal-highlight: rgba(0,0,0,.6) 0px 3px 20px; --shadow-card: rgba(0,0,0,.12) 0px 10px 40px -10px; --shadow-card-highlight: rgba(0,0,0,.3) 0px 10px 40px -10px; --shadow-card-container: rgba(0,0,0,.2) 0px 30px 50px -10px; --shadow-navbar: 0 0 20px rgba(0,0,0,.04); --highlight: rgba(0,0,0,.05); --highlight-highlight: rgba(0,0,0,.1); --highlight-3: rgba(0,0,0,.3); --border-modal: #eff1f4; --border-highlight: #e7eaee; --border-card: transparent; --text: #000; --side-background: #fff; --side-text: #3c4149; --text-sharp: #282a30; --text-light: #6b6f76; --text-lighter: #929cad; --accent: #6e79d6; --accent-light: #efeffe; --accent-transparent: rgba(113,124,225,.2); --accent-semi-transparent: rgba(113,124,225,.5); --accent-highlight: #717ce1; --text-on-accent: #fff; --background-input: #fff; --border-input: #dfe1e4; --border-input-focused: #2161dc; --background-invert: #131415; --background-invert-highlight: #2d2f36; --text-invert: #d7d8db; --text-invert-light: #8a8f98; --danger: var(--error-500); --danger-transparent: rgba(254,236,240,.3); --danger-background: var(--error-25); --green: #48c774; --dark-transparent: rgba(39,40,43,.6); --light-transparent: hsla(225,5%,85%,.6); --background-input-dark: #1f2023; --border-input-dark: #3c3f44; --border-input-focused-dark: #6499ff; --text-white: #d7d8db; --box-transition: opacity .3s,width .2s cubic-bezier(.175,.885,.32,1.275),height .2s cubic-bezier(.175,.885,.32,1.275),transform .2s cubic-bezier(.175,.885,.32,1.275); --background-light-theme: #fff; --text-light-theme: #000; --background-dark-theme: #131415; --text-dark-theme: #d7d8db; --shadow-color-unicorn: #f18099; --shadow-color-nebula: #b664b0; --shadow-color-water: #67b7e5; --shadow-color-candy: #9d8eee; --shadow-color-melon: #5cd4ac; --shadow-color-orange: #fa9e34; --shadow-color-yellow: #f7cc5c; --shadow-color-green: #23cfa4; --shadow-color-blue: #06c1ff; --shadow-color-indigo: #6968f7; --shadow-color-purple: #8a24ff; --shadow-color-pink: #f54b94; --shadow-color-red: #f32e60; --shadow-color-black: #000; --shadow-color-white: rgba(0,0,0,.2); --shadow-color-accent: #6e79d6; --neutral-25: #fff; --neutral-50: #fafafa; --neutral-100: #f5f5f5; --neutral-200: #ebebeb; --neutral-300: #e0e0e0; --neutral-400: #ccc; --neutral-500: #aaa; --neutral-600: grey; --neutral-700: #555; --neutral-800: #2a2a2a; --neutral-900: #000; --primary-25: #dfdffc; --primary-50: #c9c9fa; --primary-100: #aeaef7; --primary-200: #9493f4; --primary-300: #7978f2; --primary-400: #5e5def; --primary-500: #4e4ec7; --primary-600: #3f3e9f; --primary-700: #2f2f78; --primary-800: #1f1f50; --primary-900: #131330; --error-25: #fed5d5; --error-50: #fdbaba; --error-100: #fc9797; --error-200: #fb7474; --error-300: #fa5252; --error-400: #f92f2f; --error-500: #d02727; --error-600: #a61f1f; --error-700: #7d1818; --error-800: #531010; --error-900: #320909; --warning-25: #ffefd3; --warning-50: #fee5b5; --warning-100: #fed790; --warning-200: #feca6c; --warning-300: #fdbd47; --warning-400: #fdb022; --warning-500: #d3931c; --warning-600: #a97517; --warning-700: #7f5811; --warning-800: #543b0b; --warning-900: #332307; --success-25: #d0f1e1; --success-50: #d0f1e1; --success-100: #88dbb5; --success-200: #61cf9c; --success-300: #39c383; --success-400: #12b76a; --success-500: #0f9858; --success-600: #0c7a47; --success-700: #095c35; --success-800: #063d23; --success-900: #042515; --red-25: #fdd5df; --red-50: #fbb9ca; --red-100: #f997b0; --red-200: #f77495; --red-300: #f5517b; --red-400: #f32e60; --red-500: #ca2650; --red-600: #a21f40; --red-700: #7a1730; --red-800: #510f20; --red-900: #310913; --orange-25: #feecd6; --orange-50: #fddfbb; --orange-100: #fdce9a; --orange-200: #fcbe78; --orange-300: #fbae56; --orange-400: #fa9e34; --orange-500: #d0842b; --orange-600: #a76923; --orange-700: #7d4f1a; --orange-800: #533511; --orange-900: #32200a; --green-25: #d3f5ed; --green-50: #b6efe0; --green-100: #91e7d1; --green-200: #6cdfc2; --green-300: #48d7b2; --green-400: #23cfa3; --green-500: #1dac88; --green-600: #178a6d; --green-700: #116751; --green-800: #0c4536; --green-900: #042515; --blue-25: #ccf3ff; --blue-50: #abeaff; --blue-100: #80e0ff; --blue-200: #56d5ff; --blue-300: #02c1ff; --blue-400: #02c1ff; --blue-500: #02a1d5; --blue-600: #0181aa; --blue-700: #016080; --blue-800: #014055; --blue-900: #002733; --indigo-25: #dfdffc; --indigo-50: #c9c9fa; --indigo-100: #aeaef7; --indigo-200: #9493f4; --indigo-300: #7978f2; --indigo-400: #5e5def; --indigo-500: #4e4ec7; --indigo-600: #3f3e9f; --indigo-700: #2f2f78; --indigo-800: #1f1f50; --indigo-900: #131330; --purple-25: #e8d3ff; --purple-50: #d8b6ff; --purple-100: #c492ff; --purple-200: #b16dfe; --purple-300: #9d49fe; --purple-400: #8a24fe; --purple-500: #731ed4; --purple-600: #5c18a9; --purple-700: #45127f; --purple-800: #2e0c55; --purple-900: #1c0733; --pink-25: #fddbea; --pink-50: #fbc3db; --pink-100: #faa4c9; --pink-200: #f886b8; --pink-300: #f66ba6; --pink-400: #f44a94; --pink-500: #cb3e7b; --pink-600: #a33163; --pink-700: #7a254a; --pink-800: #511931; --pink-900: #310f1e; --color-border: var(--neutral-400); --color-border-light: var(--neutral-300); --color-text-light: var(--neutral-800); --color-surface-raised: var(--neutral-25); --color-background-input: var(--neutral-25); --elevation-surface-raised: 0px 0px 0px transparent,0px 1px 1px rgba(3,4,4,.5),0px 0px 1px rgba(3,4,4,.5); }
.ncs-scope .ncs-chrome [data-theme="dark"] .typedream.content { --background: #131415; --background-highlight: #2c2c30; --background-highlight-highlight: #393941; --background-button: #1f2124; --background-modal: linear-gradient(136.61deg,#27282b 13.72%,#2d2e31 74.3%); --background-modal-highlight: #37373c; --background-popup-overlay: rgba(28,29,31,.5); --shadow-modal-color: rgba(0,0,0,.2); --shadow-modal: rgba(0,0,0,.35) 0px 7px 32px 0px; --shadow-modal-highlight: rgba(0,0,0,.6) 0px 7px 32px 0px; --shadow-navbar: 0 0 20px rgba(0,0,0,.4); --highlight: hsla(0,0%,100%,.05); --highlight-highlight: hsla(0,0%,100%,.1); --highlight-3: hsla(0,0%,100%,.3); --border-modal: #303236; --border-card: #303236; --text: #fff; --side-background: #131415; --side-text: #d7d8db; --text-light: #8a8f98; --text-lighter: #757783; --text-sharp: #fff; --accent: #7381ff; --accent-light: #1d1e33; --accent-transparent: rgba(115,129,255,.2); --accent-semi-transparent: rgba(115,129,255,.5); --accent-highlight: #8995ff; --text-on-accent: #fff; --background-input: #1f2023; --border-input: #3c3f44; --border-input-focused: #6499ff; --background-invert: #fff; --background-invert-highlight: #f0f3f9; --text-invert: #3c4149; --text-invert-light: #6b6f76; --danger: var(--error-300); --danger-transparent: rgba(204,15,53,.3); --danger-background: var(--error-800); --shadow-color-unicorn: #000; --shadow-color-nebula: #000; --shadow-color-water: #000; --shadow-color-candy: #000; --shadow-color-melon: #000; --shadow-color-orange: #000; --shadow-color-yellow: #000; --shadow-color-green: #000; --shadow-color-blue: #000; --shadow-color-indigo: #000; --shadow-color-purple: #000; --shadow-color-pink: #000; --shadow-color-red: #000; --shadow-color-black: #000; --shadow-color-white: #000; --shadow-color-accent: #000; --neutral-900: #fff; --neutral-800: #ccc; --neutral-700: #646668; --neutral-600: #43474b; --neutral-500: #3e4246; --neutral-400: #35383b; --neutral-300: #35383b; --neutral-200: #303335; --neutral-100: #26282b; --neutral-50: #1d1e20; --neutral-25: #131415; --color-border: var(--neutral-600); --color-border-light: var(--neutral-500); --color-text-light: var(--neutral-800); --color-surface-raised: var(--neutral-400); --color-background-input: var(--neutral-200); --elevation-surface-raised: 0px 0px 0px transparent,0px 1px 1px rgba(3,4,4,.5),0px 0px 1px rgba(3,4,4,.5); }
.ncs-scope .ncs-chrome .typedream.content { color: var(--text); font-family: Inter, Helvetica, "Apple Color Emoji", "Segoe UI Emoji", NotoColorEmoji, "Noto Color Emoji", "Segoe UI Symbol", "Android Emoji", EmojiSymbols, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", sans-serif; font-size: 16px; font-weight: 400; font-style: normal; line-height: 1.5; -webkit-font-smoothing: antialiased; text-size-adjust: 100%; box-sizing: border-box; margin: 0px; padding: 0px; }
.ncs-scope .ncs-chrome .typedream.content h4, .ncs-scope .ncs-chrome .typedream.content h5, .ncs-scope .ncs-chrome .typedream.content h6, .ncs-scope .ncs-chrome .typedream.content ol, .ncs-scope .ncs-chrome .typedream.content pre, .ncs-scope .ncs-chrome .typedream.content ul { margin: initial; }
.ncs-scope .ncs-chrome .typedream.content h1, .ncs-scope .ncs-chrome .typedream.content h2, .ncs-scope .ncs-chrome .typedream.content h3, .ncs-scope .ncs-chrome .typedream.content h4, .ncs-scope .ncs-chrome .typedream.content h5, .ncs-scope .ncs-chrome .typedream.content h6 { line-height: normal; }
.ncs-scope .ncs-chrome .typedream.content *, .ncs-scope .ncs-chrome .typedream.content ::after, .ncs-scope .ncs-chrome .typedream.content ::before { box-sizing: inherit; }
.ncs-scope .ncs-chrome .typedream.content a { text-decoration: none; color: inherit; }
@media only screen and (max-width: 768px) {
.ncs-scope .ncs-chrome .typedream.content .mobile\:hidden:not([data-slate-editor] .mobile\:hidden) { display: none !important; }
}
@media only screen and (min-width: 769px) {
.ncs-scope .ncs-chrome .typedream.content .desktop\:hidden:not([data-slate-editor] .desktop\:hidden) { display: none !important; }
}
.ncs-scope .ncs-chrome .typedream.content .animated-block-initial:not([data-slate-editor] .animated-block-initial) { opacity: 0; }
.ncs-scope .ncs-chrome .typedream.content .animated-block-visible { animation-duration: 1s; animation-fill-mode: forwards; }
.ncs-scope .ncs-chrome .typedream.content .animated-block-visible.slide-in-up { animation-name: slide-in-up; }
.ncs-scope .ncs-chrome .typedream.content .animated-block-visible.slide-in-down { animation-name: slide-in-down; }
.ncs-scope .ncs-chrome .typedream.content .animated-block-visible.slide-in-left { animation-name: slide-in-left; }
.ncs-scope .ncs-chrome .typedream.content .animated-block-visible.slide-in-right { animation-name: slide-in-right; }
.ncs-scope .ncs-chrome .typedream.content .animated-block-visible.fade-in { animation-name: fade-in; }
.ncs-scope .ncs-chrome .typedream.content .animated-block-visible.scale-in-grow { animation-name: scale-in-grow; }
.ncs-scope .ncs-chrome .typedream.content .animated-block-visible.scale-in-shrink { animation-name: scale-in-shrink; }
@keyframes fade-in { 
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes slide-in-up { 
  0% { opacity: 0; transform: translateY(100px); }
  20% { opacity: 0.15; }
  40% { opacity: 1; transform: translateY(-3px); }
  100% { opacity: 1; transform: translateY(0px); }
}
@keyframes slide-in-down { 
  0% { opacity: 0; transform: translateY(-100px); }
  20% { opacity: 0.15; }
  40% { opacity: 1; transform: translateY(3px); }
  100% { opacity: 1; transform: translateY(0px); }
}
@keyframes slide-in-left { 
  0% { opacity: 0; transform: translate(100px); }
  20% { opacity: 0.15; }
  40% { opacity: 1; transform: translate(-3px); }
  100% { opacity: 1; transform: translate(0px); }
}
@keyframes slide-in-right { 
  0% { opacity: 0; transform: translate(-100px); }
  20% { opacity: 0.15; }
  40% { opacity: 1; transform: translate(3px); }
  100% { opacity: 1; transform: translate(0px); }
}
@keyframes scale-in-grow { 
  0% { opacity: 0; transform: scale(0.5); }
  20% { opacity: 0.15; }
  40% { opacity: 1; transform: scale(1.03); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes scale-in-shrink { 
  0% { opacity: 0; transform: scale(1.5); }
  20% { opacity: 0.15; }
  40% { opacity: 1; transform: scale(0.97); }
  100% { opacity: 1; transform: scale(1); }
}
.ncs-scope .ncs-chrome .l4d89p0 { color-scheme: unset; forced-color-adjust: unset; mask: unset; math-depth: unset; position: unset; position-anchor: unset; text-size-adjust: unset; appearance: unset; color: unset; font: unset; font-palette: unset; font-synthesis: unset; position-area: unset; text-orientation: unset; text-rendering: unset; text-spacing-trim: unset; -webkit-font-smoothing: unset; -webkit-locale: unset; -webkit-text-orientation: unset; -webkit-writing-mode: unset; writing-mode: unset; zoom: unset; accent-color: unset; place-content: unset; place-items: unset; place-self: unset; alignment-baseline: unset; anchor-name: unset; anchor-scope: unset; animation-composition: unset; animation: unset; app-region: unset; aspect-ratio: unset; backdrop-filter: unset; backface-visibility: unset; background: unset; background-blend-mode: unset; baseline-shift: unset; baseline-source: unset; block-size: unset; border-block: unset; border: unset; border-radius: unset; border-collapse: unset; border-end-end-radius: unset; border-end-start-radius: unset; border-inline: unset; border-start-end-radius: unset; border-start-start-radius: unset; inset: unset; box-decoration-break: unset; box-shadow: unset; box-sizing: unset; break-after: unset; break-before: unset; break-inside: unset; buffered-rendering: unset; caption-side: unset; caret-animation: unset; caret-color: unset; caret-shape: unset; clear: unset; clip: unset; clip-path: unset; clip-rule: unset; color-interpolation: unset; color-interpolation-filters: unset; color-rendering: unset; columns: unset; column-fill: unset; gap: unset; column-rule: unset; column-span: unset; contain: unset; contain-intrinsic-block-size: unset; contain-intrinsic-size: unset; contain-intrinsic-inline-size: unset; container: unset; content: unset; content-visibility: unset; corner-shape: unset; corner-block-end-shape: unset; corner-block-start-shape: unset; counter-increment: unset; counter-reset: unset; counter-set: unset; cursor: unset; cx: unset; cy: unset; d: unset; display: flex; dominant-baseline: unset; dynamic-range-limit: unset; empty-cells: unset; field-sizing: unset; fill: unset; fill-opacity: unset; fill-rule: unset; filter: unset; flex: unset; flex-flow: unset; float: unset; flood-color: unset; flood-opacity: unset; grid: unset; grid-area: unset; height: unset; hyphenate-character: unset; hyphenate-limit-chars: unset; hyphens: unset; image-orientation: unset; image-rendering: unset; initial-letter: unset; inline-size: unset; inset-block: unset; inset-inline: unset; interactivity: unset; interest-delay: unset; interpolate-size: unset; isolation: unset; letter-spacing: unset; lighting-color: unset; line-break: unset; list-style: unset; margin-block: unset; margin: unset; margin-inline: unset; marker: unset; mask-type: unset; math-shift: unset; math-style: unset; max-block-size: unset; max-height: unset; max-inline-size: unset; max-width: unset; min-block-size: unset; min-height: unset; min-inline-size: unset; min-width: unset; mix-blend-mode: unset; object-fit: unset; object-position: unset; object-view-box: unset; offset: unset; opacity: unset; order: unset; orphans: unset; outline: unset; outline-offset: unset; overflow-anchor: unset; overflow-block: unset; overflow-clip-margin: unset; overflow-inline: unset; overflow-wrap: unset; overflow: unset; overlay: unset; overscroll-behavior-block: unset; overscroll-behavior-inline: unset; overscroll-behavior: unset; padding-block: unset; padding: unset; padding-inline: unset; page: unset; page-orientation: unset; paint-order: unset; perspective: unset; perspective-origin: unset; pointer-events: unset; position-try: unset; position-visibility: unset; print-color-adjust: unset; quotes: unset; r: unset; reading-flow: unset; reading-order: unset; resize: unset; rotate: unset; ruby-align: unset; ruby-position: unset; rx: unset; ry: unset; scale: unset; scroll-behavior: unset; scroll-initial-target: unset; scroll-margin-block: unset; scroll-margin: unset; scroll-margin-inline: unset; scroll-marker-group: unset; scroll-padding-block: unset; scroll-padding: unset; scroll-padding-inline: unset; scroll-snap-align: unset; scroll-snap-stop: unset; scroll-snap-type: unset; scroll-target-group: unset; scroll-timeline: unset; scrollbar-color: unset; scrollbar-gutter: unset; scrollbar-width: unset; shape-image-threshold: unset; shape-margin: unset; shape-outside: unset; shape-rendering: unset; size: unset; speak: unset; stop-color: unset; stop-opacity: unset; stroke: unset; stroke-dasharray: unset; stroke-dashoffset: unset; stroke-linecap: unset; stroke-linejoin: unset; stroke-miterlimit: unset; stroke-opacity: unset; stroke-width: unset; tab-size: unset; table-layout: unset; text-align: unset; text-align-last: unset; text-anchor: unset; text-autospace: unset; text-box: unset; text-combine-upright: unset; text-decoration: unset; text-decoration-skip-ink: unset; text-emphasis: unset; text-emphasis-position: unset; text-indent: unset; text-justify: unset; text-overflow: unset; text-shadow: unset; text-transform: unset; text-underline-offset: unset; text-underline-position: unset; text-wrap: unset; timeline-scope: unset; touch-action: unset; transform: unset; transform-box: unset; transform-origin: unset; transform-style: unset; transition: unset; translate: unset; user-select: unset; vector-effect: unset; vertical-align: unset; view-timeline: unset; view-transition-class: unset; view-transition-group: unset; view-transition-name: unset; visibility: unset; border-spacing: unset; -webkit-box-align: unset; -webkit-box-decoration-break: unset; -webkit-box-direction: unset; -webkit-box-flex: unset; -webkit-box-ordinal-group: unset; -webkit-box-orient: unset; -webkit-box-pack: unset; -webkit-box-reflect: unset; -webkit-line-break: unset; -webkit-line-clamp: unset; -webkit-mask-box-image: unset; -webkit-rtl-ordering: unset; -webkit-ruby-position: unset; -webkit-tap-highlight-color: unset; -webkit-text-combine: unset; -webkit-text-decorations-in-effect: unset; -webkit-text-fill-color: unset; -webkit-text-security: unset; -webkit-text-stroke: unset; -webkit-user-drag: unset; white-space-collapse: unset; widows: unset; width: unset; will-change: unset; word-break: unset; word-spacing: unset; x: unset; y: unset; z-index: unset; }
.ncs-scope .ncs-chrome [data-accordion-style="button"] .l4d89p1 { display: initial; transition: transform 0.3s cubic-bezier(0.87, 0, 0.13, 1); }
.ncs-scope .ncs-chrome [data-accordion-style="button"] [data-state="open"] > .l4d89p1 { transform: rotate(-180deg); }
.ncs-scope .ncs-chrome .l4d89p2 { font-size: 24px; color: rgb(177, 181, 220); display: none; }
.ncs-scope .ncs-chrome [data-accordion-style="button"] .l4d89p2, .ncs-scope .ncs-chrome [data-accordion-style="card"] .l4d89p2 { margin-left: 1rem; }
.ncs-scope .ncs-chrome [data-accordion-style="plain"] .l4d89p2 { margin-right: 1rem; }
.ncs-scope .ncs-chrome [data-accordion-style="card"] .l4d89p4, .ncs-scope .ncs-chrome [data-accordion-style="card"] [data-state="open"] > .l4d89p3, .ncs-scope .ncs-chrome [data-accordion-style="plain"] .l4d89p4, .ncs-scope .ncs-chrome [data-accordion-style="plain"] [data-state="open"] > .l4d89p3 { display: initial; }
.ncs-scope .ncs-chrome [data-accordion-style="card"] [data-state="open"] > .l4d89p4, .ncs-scope .ncs-chrome [data-accordion-style="plain"] [data-state="open"] > .l4d89p4 { display: none; }
.ncs-scope .ncs-chrome .l4d89p5 { color-scheme: unset; forced-color-adjust: unset; mask: unset; math-depth: unset; position: unset; position-anchor: unset; text-size-adjust: unset; appearance: unset; color: unset; font: unset; font-palette: unset; font-synthesis: unset; position-area: unset; text-orientation: unset; text-rendering: unset; text-spacing-trim: unset; -webkit-font-smoothing: unset; -webkit-locale: unset; -webkit-text-orientation: unset; -webkit-writing-mode: unset; writing-mode: unset; zoom: unset; accent-color: unset; place-content: unset; align-items: center; place-self: unset; alignment-baseline: unset; anchor-name: unset; anchor-scope: unset; animation-composition: unset; animation: unset; app-region: unset; aspect-ratio: unset; backdrop-filter: unset; backface-visibility: unset; background-attachment: unset; background-blend-mode: unset; background-clip: unset; background-color: transparent; background-image: unset; background-origin: unset; background-position: unset; background-repeat: unset; background-size: unset; baseline-shift: unset; baseline-source: unset; block-size: unset; border-block: unset; border: unset; border-radius: unset; border-collapse: unset; border-end-end-radius: unset; border-end-start-radius: unset; border-inline: unset; border-start-end-radius: unset; border-start-start-radius: unset; inset: unset; box-decoration-break: unset; box-shadow: unset; box-sizing: unset; break-after: unset; break-before: unset; break-inside: unset; buffered-rendering: unset; caption-side: unset; caret-animation: unset; caret-color: unset; caret-shape: unset; clear: unset; clip: unset; clip-path: unset; clip-rule: unset; color-interpolation: unset; color-interpolation-filters: unset; color-rendering: unset; columns: unset; column-fill: unset; gap: unset; column-rule: unset; column-span: unset; contain: unset; contain-intrinsic-block-size: unset; contain-intrinsic-size: unset; contain-intrinsic-inline-size: unset; container: unset; content: unset; content-visibility: unset; corner-shape: unset; corner-block-end-shape: unset; corner-block-start-shape: unset; counter-increment: unset; counter-reset: unset; counter-set: unset; cursor: unset; cx: unset; cy: unset; d: unset; display: flex; dominant-baseline: unset; dynamic-range-limit: unset; empty-cells: unset; field-sizing: unset; fill: unset; fill-opacity: unset; fill-rule: unset; filter: unset; flex: 1 1 0%; flex-flow: unset; float: unset; flood-color: unset; flood-opacity: unset; grid: unset; grid-area: unset; height: unset; hyphenate-character: unset; hyphenate-limit-chars: unset; hyphens: unset; image-orientation: unset; image-rendering: unset; initial-letter: unset; inline-size: unset; inset-block: unset; inset-inline: unset; interactivity: unset; interest-delay: unset; interpolate-size: unset; isolation: unset; justify-items: unset; letter-spacing: unset; lighting-color: unset; line-break: unset; list-style: unset; margin-block: unset; margin: unset; margin-inline: unset; marker: unset; mask-type: unset; math-shift: unset; math-style: unset; max-block-size: unset; max-height: unset; max-inline-size: unset; max-width: unset; min-block-size: unset; min-height: unset; min-inline-size: unset; min-width: unset; mix-blend-mode: unset; object-fit: unset; object-position: unset; object-view-box: unset; offset: unset; opacity: unset; order: unset; orphans: unset; outline: unset; outline-offset: unset; overflow-anchor: unset; overflow-block: unset; overflow-clip-margin: unset; overflow-inline: unset; overflow-wrap: unset; overflow: unset; overlay: unset; overscroll-behavior-block: unset; overscroll-behavior-inline: unset; overscroll-behavior: unset; padding-block: unset; padding: 15px 30px; padding-inline: unset; page: unset; page-orientation: unset; paint-order: unset; perspective: unset; perspective-origin: unset; pointer-events: unset; position-try: unset; position-visibility: unset; print-color-adjust: unset; quotes: unset; r: unset; reading-flow: unset; reading-order: unset; resize: unset; rotate: unset; ruby-align: unset; ruby-position: unset; rx: unset; ry: unset; scale: unset; scroll-behavior: unset; scroll-initial-target: unset; scroll-margin-block: unset; scroll-margin: unset; scroll-margin-inline: unset; scroll-marker-group: unset; scroll-padding-block: unset; scroll-padding: unset; scroll-padding-inline: unset; scroll-snap-align: unset; scroll-snap-stop: unset; scroll-snap-type: unset; scroll-target-group: unset; scroll-timeline: unset; scrollbar-color: unset; scrollbar-gutter: unset; scrollbar-width: unset; shape-image-threshold: unset; shape-margin: unset; shape-outside: unset; shape-rendering: unset; size: unset; speak: unset; stop-color: unset; stop-opacity: unset; stroke: unset; stroke-dasharray: unset; stroke-dashoffset: unset; stroke-linecap: unset; stroke-linejoin: unset; stroke-miterlimit: unset; stroke-opacity: unset; stroke-width: unset; tab-size: unset; table-layout: unset; text-align: unset; text-align-last: unset; text-anchor: unset; text-autospace: unset; text-box: unset; text-combine-upright: unset; text-decoration: unset; text-decoration-skip-ink: unset; text-emphasis: unset; text-emphasis-position: unset; text-indent: unset; text-justify: unset; text-overflow: unset; text-shadow: unset; text-transform: unset; text-underline-offset: unset; text-underline-position: unset; text-wrap: unset; timeline-scope: unset; touch-action: unset; transform: unset; transform-box: unset; transform-origin: unset; transform-style: unset; transition: unset; translate: unset; user-select: unset; vector-effect: unset; vertical-align: unset; view-timeline: unset; view-transition-class: unset; view-transition-group: unset; view-transition-name: unset; visibility: unset; border-spacing: unset; -webkit-box-align: unset; -webkit-box-decoration-break: unset; -webkit-box-direction: unset; -webkit-box-flex: unset; -webkit-box-ordinal-group: unset; -webkit-box-orient: unset; -webkit-box-pack: unset; -webkit-box-reflect: unset; -webkit-line-break: unset; -webkit-line-clamp: unset; -webkit-mask-box-image: unset; -webkit-rtl-ordering: unset; -webkit-ruby-position: unset; -webkit-tap-highlight-color: unset; -webkit-text-combine: unset; -webkit-text-decorations-in-effect: unset; -webkit-text-fill-color: unset; -webkit-text-security: unset; -webkit-text-stroke: unset; -webkit-user-drag: unset; white-space-collapse: unset; widows: unset; width: unset; will-change: unset; word-break: unset; word-spacing: unset; x: unset; y: unset; z-index: unset; }
.ncs-scope .ncs-chrome [data-accordion-style="button"] .l4d89p5, .ncs-scope .ncs-chrome [data-accordion-style="card"] .l4d89p5 { justify-content: space-between; }
.ncs-scope .ncs-chrome [data-accordion-style="plain"] .l4d89p5 { flex-direction: row-reverse; justify-content: left; }
.ncs-scope .ncs-chrome ._11cr6ec0 { position: relative; isolation: isolate; overflow: hidden; }
.ncs-scope .ncs-chrome ._11cr6ec0:not(:last-of-type) { margin-bottom: 1rem; }
.ncs-scope .ncs-chrome [data-accordion-style="button"] ._11cr6ec0 { border-radius: 43px; box-shadow: rgba(0, 0, 0, 0.1) 0px 8px 38px; }
.ncs-scope .ncs-chrome [data-accordion-style="card"] ._11cr6ec0 { border-radius: 10px; box-shadow: rgba(0, 0, 0, 0.1) 0px 8px 38px; }
.ncs-scope .ncs-chrome [data-accordion-style="plain"] ._11cr6ec0 { border-radius: 10px; }
@keyframes num1mw0 { 
  0% { height: 0px; }
  100% { height: var(--radix-accordion-content-height); }
}
@keyframes num1mw1 { 
  0% { height: var(--radix-accordion-content-height); }
  100% { height: 0px; }
}
.ncs-scope .ncs-chrome .num1mw2 { position: relative; overflow: hidden; }
.ncs-scope .ncs-chrome .num1mw2[data-state="open"] { animation: 0.3s cubic-bezier(0.87, 0, 0.13, 1) 0s 1 normal none running num1mw0; }
.ncs-scope .ncs-chrome .num1mw2[data-state="closed"] { animation: 0.3s cubic-bezier(0.87, 0, 0.13, 1) 0s 1 normal none running num1mw1; }
.ncs-scope .ncs-chrome ._1iqelwt0 { position: relative; display: flex; flex-direction: column; }
.ncs-scope .ncs-chrome :is(.vvqwo7s, .vvqwo7t, .vvqwo7p) :is(.vvqwo7x, .vvqwo7w) button { width: 48px; height: 48px; }
.ncs-scope .ncs-chrome .typedream.content .yk4y7v0, .ncs-scope .ncs-chrome .yk4y7v0 { text-decoration: none; color: var(--accent); }
.ncs-scope .ncs-chrome ._1gp96k0 { display: block; flex-shrink: 0; flex-grow: 0; align-items: center; color: var(--text,inherit); font-weight: 500; line-height: 1.5; padding: 0.5rem 0.75rem; cursor: pointer; width: fit-content; white-space: nowrap; }
.ncs-scope .ncs-chrome ._1gp96k1 { display: flex; font-weight: 700; }
.ncs-scope .ncs-chrome ._1gp96k2 { position: relative; padding: 2px 5px; border-radius: 5px; min-width: 40px; min-height: 45px; margin-right: 5px; display: flex; align-items: center; justify-content: center; }
@media only screen and (max-width: 1023px) {
.ncs-scope .ncs-chrome ._1gp96k1 { flex-shrink: 1; white-space: nowrap; overflow: hidden; }
}
.ncs-scope .ncs-chrome .miq55g1 { flex-shrink: 0; flex-grow: 0; align-items: center; }
.ncs-scope .ncs-chrome .miq55g1 { display: block; box-sizing: inherit; color: var(--text,inherit); font-weight: 500; line-height: 1.5; padding: 0.5rem 0.75rem; cursor: pointer; }
.ncs-scope .ncs-chrome .miq55g2 { position: relative; display: flex; align-items: center; }
.ncs-scope .ncs-chrome .miq55g2:hover { color: var(--text,inherit); }
.ncs-scope .ncs-chrome .miq55g3 { position: relative; padding: 0px 0.5rem; }
.ncs-scope .ncs-chrome .miq55g7 { cursor: pointer !important; }
.ncs-scope .ncs-chrome .miq55g7 { padding: 6px 20px; border-radius: 999px; width: fit-content; margin: 10px 0px; font-weight: 700; }
@media screen and (min-width: 1024px) {
.ncs-scope .ncs-chrome .miq55g1 { margin: 0px 0.75em; padding: 0px 5px; }
}
@media only screen and (min-width: 1298px) {
.ncs-scope .ncs-chrome .miq55g3 { padding: 0px 0.25rem; }
}
.ncs-scope .ncs-chrome ._1buablx0 { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; }
.ncs-scope .ncs-chrome ._1buablx0 { white-space: pre-wrap; overflow-wrap: break-word; overflow-x: hidden; min-height: 100vh; }
.ncs-scope .ncs-chrome ._1buablx5 { justify-content: flex-start; }
.ncs-scope .ncs-chrome ._1j76um0 { position: relative; isolation: isolate; margin: var(--margin); padding: var(--padding); border-radius: var(--border-radius); box-shadow: var(--box-shadow); }
.ncs-scope .ncs-chrome ._1buablx0 > ._1j76um0, .ncs-scope .ncs-chrome .x1sja70 > ._1j76um0 { padding: var(--padding-root); }
.ncs-scope .ncs-chrome ._1j76umc { min-height: var(--min-height); width: 100%; display: flex; flex-direction: row; align-items: stretch; position: relative; gap: var(--gap); }
.ncs-scope .ncs-chrome ._1j76umc, .ncs-scope .ncs-chrome ._1j76umc._1j76um5 { justify-content: flex-start; }
.ncs-scope .ncs-chrome ._1j76umc._1j76um6 { justify-content: center; }
.ncs-scope .ncs-chrome ._1j76umc._1j76um7 { justify-content: flex-end; }
@media only screen and (max-width: 768px) {
.ncs-scope .ncs-chrome ._1j76um0 { margin: var(--margin-mobile); padding: var(--padding-mobile); }
.ncs-scope .ncs-chrome ._1buablx0 > ._1j76um0, .ncs-scope .ncs-chrome .x1sja70 > ._1j76um0 { padding: var(--padding-root-mobile); }
.ncs-scope .ncs-chrome ._1j76umb:has(._1j76um7._1j76um4) { direction: rtl; overflow-x: auto; }
.ncs-scope .ncs-chrome ._1j76umc { min-height: auto; height: auto; }
.ncs-scope .ncs-chrome ._1j76umb > ._1j76umc { flex-direction: row; align-items: stretch; gap: var(--gap-mobile); }
.ncs-scope .ncs-chrome ._1j76umb._1j76um2 > ._1j76umc { flex-direction: row-reverse; }
.ncs-scope .ncs-chrome ._1j76um1 > ._1j76umc { gap: var(--gap-mobile-vertical); flex-direction: column; align-items: center; justify-content: center; min-height: auto; }
.ncs-scope .ncs-chrome ._1j76um1._1j76um2 > ._1j76umc { flex-direction: column-reverse; }
.ncs-scope .ncs-chrome ._1j76umb > ._1j76umc._1j76um4, .ncs-scope .ncs-chrome ._1j76umb > ._1j76umc._1j76um5:not(._1j76um3), .ncs-scope .ncs-chrome ._1j76umb > ._1j76umc._1j76um6:not(._1j76um3) { scroll-snap-type: x mandatory; overflow-x: auto; }
.ncs-scope .ncs-chrome ._1j76umb > ._1j76umc._1j76um7:not(._1j76um3) { justify-content: flex-start; flex-direction: row-reverse; width: fit-content; }
}
.ncs-scope .ncs-chrome ._1fk5aj50 { position: relative; color: var(--text); background-color: var(--background); z-index: 30; }
.ncs-scope .ncs-chrome ._1fk5aj52 { box-shadow: var(--shadow-navbar); }
.ncs-scope .ncs-chrome ._1fk5aj57 { display: flex; justify-content: space-between; align-items: stretch; flex-shrink: 0; height: 100%; font-size: 20px; }
.ncs-scope .ncs-chrome ._1fk5aj5a { color: inherit; cursor: pointer; display: flex; align-items: center; justify-content: center; position: relative; width: 3.25rem; appearance: none; background: none; border: none; font-family: inherit; font-size: 1em; margin: 0px; padding: 0px; }
.ncs-scope .ncs-chrome ._1fk5aj5b { background-color: currentcolor; display: block; height: 1px; left: calc(50% - 8px); position: absolute; transform-origin: center center; width: 16px; }
.ncs-scope .ncs-chrome ._1fk5aj5b:first-child { top: calc(50% - 6px); }
.ncs-scope .ncs-chrome ._1fk5aj5b:nth-child(2) { top: 50%; }
.ncs-scope .ncs-chrome ._1fk5aj5b:nth-child(3) { top: calc(50% + 6px); }
@media only screen and (max-width: 1023px) {
.ncs-scope .ncs-chrome ._1fk5aj58, .ncs-scope .ncs-chrome ._1fk5aj59 { display: none; }
}
@media only screen and (min-width: 1024px) {
.ncs-scope .ncs-chrome ._1fk5aj50 { display: grid; }
.ncs-scope .ncs-chrome ._1fk5aj56 { grid-template-columns: auto 1fr auto; }
.ncs-scope .ncs-chrome ._1fk5aj58 { display: flex; margin-left: calc(1.5em - 15px); margin-right: calc(1.5em - 15px); background-color: initial; }
.ncs-scope .ncs-chrome ._1fk5aj56 ._1fk5aj58 { justify-content: flex-end; }
.ncs-scope .ncs-chrome ._1fk5aj55 ._1fk5aj58 { justify-content: flex-start; }
.ncs-scope .ncs-chrome ._1fk5aj54 ._1fk5aj58 { justify-content: center; }
.ncs-scope .ncs-chrome ._1fk5aj59 { display: flex; justify-content: flex-end; }
.ncs-scope .ncs-chrome ._1fk5aj5a { display: none; }
}
@keyframes _1f6sjyw2 { 
  0% { background-position: 100% 100%; }
  100% { background-position: 0px 0px; }
}
.ncs-scope .ncs-chrome ._122mapi0 { position: relative; display: flex; direction: ltr; flex-direction: column; justify-content: center; align-items: flex-start; width: calc(var(--width) - (var(--width-float) * var(--gap-total-width))); scroll-snap-align: start; scroll-snap-stop: normal; }
.ncs-scope .ncs-chrome ._1j76um8 > ._122mapi0 { justify-content: flex-start; }
.ncs-scope .ncs-chrome ._1j76um9 > ._122mapi0 { justify-content: center; }
.ncs-scope .ncs-chrome ._1j76uma > ._122mapi0 { justify-content: flex-end; }
.ncs-scope .ncs-chrome ._1j76um5 > ._122mapi0, .ncs-scope .ncs-chrome ._1j76um6 > ._122mapi0, .ncs-scope .ncs-chrome ._1j76um7 > ._122mapi0 { max-width: fit-content; }
@media only screen and (max-width: 768px) {
.ncs-scope .ncs-chrome ._122mapi0 { width: calc(var(--width) - (var(--width-float) * var(--gap-mobile-total-width))); }
.ncs-scope .ncs-chrome ._1j76um1 > div > ._122mapi0 { width: 100%; max-width: 100%; }
.ncs-scope .ncs-chrome ._1j76umb > ._1j76um4 > ._122mapi0, .ncs-scope .ncs-chrome ._1j76umb > ._1j76um5:not(._1j76um3) > ._122mapi0, .ncs-scope .ncs-chrome ._1j76umb > ._1j76um6:not(._1j76um3) > ._122mapi0, .ncs-scope .ncs-chrome ._1j76umb > ._1j76um7:not(._1j76um3) > ._122mapi0 { max-width: calc((var(--width-float) * var(--column-width)) - (var(--width-float) * var(--gap-mobile-total-width))); width: fit-content; }
}
.ncs-scope .ncs-chrome ._1buablx0 > ._56g1z10 { padding-left: 30px; padding-right: 30px; }
.ncs-scope .ncs-chrome ._122mapi0 > ._56g1z10 { width: 100%; max-width: 100%; }
.ncs-scope .ncs-chrome ._1buablx0 > ._150gib10 { padding-left: 30px; padding-right: 30px; }
.ncs-scope .ncs-chrome ._1bgwy4x0 { position: relative; width: var(--width); max-width: var(--max-width); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.ncs-scope .ncs-chrome ._1bgwy4x1 { align-items: flex-start; }
.ncs-scope .ncs-chrome ._1bgwy4x2 { align-items: center; }
.ncs-scope .ncs-chrome ._1bgwy4x4 { justify-content: flex-start; }
.ncs-scope .ncs-chrome ._1bgwy4x5 { justify-content: center; }
.ncs-scope .ncs-chrome ._122mapi0 > ._1bgwy4x7, .ncs-scope .ncs-chrome ._1iqelwt0 > ._1bgwy4x7 { width: 100%; max-width: 100%; flex: 1 1 auto; }
.ncs-scope .ncs-chrome ._122mapi0 > ._1bgwy4x7 > ._1bgwy4x8, .ncs-scope .ncs-chrome ._1iqelwt0 > ._1bgwy4x7 > ._1bgwy4x8 { width: 100%; max-width: 100%; flex: 1 1 auto; }
.ncs-scope .ncs-chrome ._1bgwy4x9 { min-height: var(--min-height); margin: var(--margin); padding: var(--padding); isolation: isolate; overflow: var(--overflow); aspect-ratio: var(--aspect-ratio); border-radius: var(--border-radius); box-shadow: var(--box-shadow); }
.ncs-scope .ncs-chrome ._1bgwy4x9.card { background-color: initial; }
.ncs-scope .ncs-chrome ._122mapi0 > ._1bgwy4x7 > ._1bgwy4x8 > ._1bgwy4x9, .ncs-scope .ncs-chrome ._122mapi0 > ._1bgwy4x9 { min-height: auto; }
.ncs-scope .ncs-chrome ._122mapi0 > ._1bgwy4x7 > ._1bgwy4x8 > ._1bgwy4x9, .ncs-scope .ncs-chrome ._122mapi0 > ._1bgwy4x9, .ncs-scope .ncs-chrome ._1iqelwt0 > ._1bgwy4x7 > ._1bgwy4x8 > ._1bgwy4x9, .ncs-scope .ncs-chrome ._1iqelwt0 > ._1bgwy4x9 { width: calc(100% - var(--margin-left) - var(--margin-right)); max-width: calc(100% - var(--margin-left) - var(--margin-right)); flex: 1 1 auto; }
.ncs-scope .ncs-chrome ._1bgwy4x9.card ._1bgwy4xb { border-radius: 10px; overflow: hidden; }
@media only screen and (max-width: 768px) {
.ncs-scope .ncs-chrome ._1bgwy4x9:not(._1iqelwt0 ._1bgwy4x9) { min-height: auto; height: auto; }
}
.ncs-scope .ncs-chrome ._1wmk2020 { position: relative; user-select: none; width: 100%; height: fit-content; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; }
.ncs-scope .ncs-chrome ._1buablx0 > ._1wmk2020, .ncs-scope .ncs-chrome .x1sja70 > ._1wmk2020 { padding-left: 30px; padding-right: 30px; }
.ncs-scope .ncs-chrome ._1bgwy4x9 > ._1wmk2020, .ncs-scope .ncs-chrome ._1j76um0 > ._1wmk2020 { padding-left: 0px; padding-right: 0px; }
.ncs-scope .ncs-chrome ._1wmk2022 { display: inline-block; vertical-align: middle; overflow: hidden; margin-left: 0.5rem; }
.ncs-scope .ncs-chrome ._1wmk2026 { user-select: none; display: flex; justify-content: center; align-items: center; margin-top: 1.5rem; cursor: pointer; color: var(--accent); }
.ncs-scope .ncs-chrome ._1wmk2026 .loader.is-loading { margin-right: 0.25rem; border-bottom-color: var(--accent); border-left-color: var(--accent); }
.ncs-scope .ncs-chrome ._1wmk2027 { user-select: none; display: grid; gap: 1rem; grid-template-columns: repeat(var(--grid-repeat),minmax(200px,1fr)); align-content: center; }
.ncs-scope .ncs-chrome ._1wmk2027 { width: 100%; justify-content: flex-start; }
@media only screen and (max-width: 768px) {
.ncs-scope .ncs-chrome ._1wmk2027 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
}
.ncs-scope .ncs-chrome ._1buablx0 > ._1qvs4rw0 { padding-left: 30px; padding-right: 30px; }
.ncs-scope .ncs-chrome ._1buablx0 > ._2w3c4y0 { padding-left: 30px; padding-right: 30px; }
.ncs-scope .ncs-chrome ._122mapi0 > ._2w3c4y0 { width: calc(100% - var(--margin-left) - var(--margin-right)); max-width: calc(100% - var(--margin-left) - var(--margin-right)); }
.ncs-scope .ncs-chrome ._13oolbf0 { position: relative; border-radius: 6px; width: var(--width); max-width: var(--max-width); margin: var(--margin); }
.ncs-scope .ncs-chrome ._1buablx0 > ._13oolbf0, .ncs-scope .ncs-chrome .x1sja70 > ._13oolbf0 { padding-left: 30px; padding-right: 30px; }
.ncs-scope .ncs-chrome ._122mapi0 > ._13oolbf0 { width: calc(100% - var(--margin-left) - var(--margin-right)); max-width: calc(100% - var(--margin-left) - var(--margin-right)); }
.ncs-scope .ncs-chrome [data-slate-editor] ._13oolbf0 > div:not(:last-child) { margin-bottom: 1rem; }
.ncs-scope .ncs-chrome ._1buablx0 > .a6t6nl0 { padding-left: 30px; padding-right: 30px; }
.ncs-scope .ncs-chrome ._1bgwy4x9 > .a6t6nl0, .ncs-scope .ncs-chrome ._1j76um0 > .a6t6nl0 { padding-left: 0px; padding-right: 0px; }
@keyframes _1paom1lg { 
  0% { transform: translate(var(--start-position)) scaleX(1); }
  25% { transform: translate(var(--mid-top-position)) scaleX(var(--half-width)); }
  35% { transform: translate(var(--end-position)) scaleX(1); }
  50% { transform: translate(var(--end-position)) rotate(180deg) scaleX(1); }
  75% { transform: translate(var(--mid-bottom-position)) rotate(180deg) scaleX(var(--half-width)); }
  85% { transform: translate(var(--start-position)) rotate(180deg) scaleX(1); }
  100% { transform: translate(var(--start-position)) rotate(1turn) scaleX(1); }
}
@keyframes _1paom1lh { 
  0% { transform: translate(0px); }
  25% { transform: translate(var(--end-position)); }
  50% { transform: translate(var(--end-position)) rotate(180deg); }
  75% { transform: translate(0px) rotate(180deg); }
  100% { transform: translate(0px) rotate(1turn); }
}
@keyframes _1paom1li { 
  0% { transform: translate(0px) scaleX(1); }
  33.33% { transform: translate(var(--button-width)) scaleX(var(--width-multiplier)); }
  50% { transform: translate(var(--button-width)) rotate(180deg) scaleX(1); }
  83.33% { transform: translate(0) rotate(180deg) scaleX(var(--width-multiplier)); }
  100% { transform: translate(0px) rotate(1turn) scaleX(1); }
}
@keyframes _1paom1lj { 
  0% { transform: translate(2px); }
  50% { transform: rotate(180deg); }
  100% { transform: rotate(1turn); }
}
.ncs-scope .ncs-chrome ._1paom1l0 { position: relative; display: flex; justify-content: var(--horizontal-alignment); width: var(--width); max-width: var(--max-width); margin: var(--margin); }
.ncs-scope .ncs-chrome ._1buablx0 > ._1paom1l0, .ncs-scope .ncs-chrome .x1sja70 > ._1paom1l0 { padding-left: 30px; padding-right: 30px; }
.ncs-scope .ncs-chrome ._122mapi0 > ._1paom1l0, .ncs-scope .ncs-chrome .num1mw2 ._1paom1l0 { width: calc(100% - var(--margin-left) - var(--margin-right)); max-width: calc(100% - var(--margin-left) - var(--margin-right)); }
.ncs-scope .ncs-chrome ._1paom1l2 { background: var(--color-button-primary-background); box-shadow: var(--shadow-button-primary); border-radius: var(--radius-button-primary); border: var(--border-button-primary); }
.ncs-scope .ncs-chrome ._1paom1l4 { position: relative; padding: 12px 20px; border-radius: var(--border-radius); width: fit-content; margin: 10px 0px; display: flex; align-items: center; justify-content: center; border: none; font-family: inherit; font-size: inherit; line-height: inherit; background-color: initial; box-shadow: var(--box-shadow); }
.ncs-scope .ncs-chrome ._1buablx0 a ._1paom1l4, .ncs-scope .ncs-chrome ._1paom1l4[type="submit"] { cursor: pointer; }
.ncs-scope .ncs-chrome ._1buablx0 > ._154h9rv0 { padding-left: 30px; padding-right: 30px; }
.ncs-scope .ncs-chrome .yk4y7v0:hover ._1untytp0 { text-decoration: underline; }
.ncs-scope .ncs-chrome ._1untytp0 span:not(:empty), .ncs-scope .ncs-chrome ._1untytp0:not(:empty) { font-size: var(--font-size,inherit); line-height: var(--line-height,inherit); }
.ncs-scope .ncs-chrome ._1untytp0 span:empty::after, .ncs-scope .ncs-chrome ._1untytp0:empty::after { content: "﻿"; }
.ncs-scope .ncs-chrome ._1untytp0 code { background-color: var(--background-highlight); color: var(--text-light); padding: 0.25em 0.5em; font-size: 0.875em; }
@media only screen and (max-width: 768px) {
.ncs-scope .ncs-chrome ._1untytp0 span:not(:empty), .ncs-scope .ncs-chrome ._1untytp0:not(:empty) { font-size: var(--mobile-font-size,inherit); line-height: var(--mobile-line-height,inherit); }
}
.ncs-scope .ncs-chrome ._1buablx0 > ._1s3yrvc0 { padding-left: 30px; padding-right: 30px; }
.ncs-scope .ncs-chrome .ohgk4r0 { position: relative; color: inherit; margin: var(--margin); padding: var(--padding); width: var(--width); max-width: var(--max-width); }
.ncs-scope .ncs-chrome ._1buablx0 > .ohgk4r0, .ncs-scope .ncs-chrome .x1sja70 > .ohgk4r0 { padding: var(--padding-root); }
.ncs-scope .ncs-chrome ._122mapi0 > .ohgk4r0, .ncs-scope .ncs-chrome .l4d89p0 > button > .ohgk4r0 { width: calc(100% - var(--margin-left) - var(--margin-right)); max-width: calc(100% - var(--margin-left) - var(--margin-right)); }
.ncs-scope .ncs-chrome h1.ohgk4r1 { font-size: 56px; font-weight: 800; letter-spacing: -2.5px; }
.ncs-scope .ncs-chrome h3.ohgk4r3 { font-size: 26px; font-weight: 700; letter-spacing: -0.5px; }
@media only screen and (max-width: 768px) {
.ncs-scope .ncs-chrome h1.ohgk4r1 { font-size: 40px; }
.ncs-scope .ncs-chrome h3.ohgk4r3 { font-size: 23px; }
}
.ncs-scope .ncs-chrome .c7sewk0 { position: relative; box-sizing: border-box; width: var(--width); max-width: var(--max-width); margin: var(--margin); }
.ncs-scope .ncs-chrome ._1buablx0 > .c7sewk0, .ncs-scope .ncs-chrome .x1sja70 > .c7sewk0 { padding-left: 30px; padding-right: 30px; }
.ncs-scope .ncs-chrome ._122mapi0 > .c7sewk0 { width: calc(100% - var(--margin-left) - var(--margin-right)); max-width: calc(100% - var(--margin-left) - var(--margin-right)); }
.ncs-scope .ncs-chrome .c7sewk1 { border: none; margin: 13px 0px; opacity: 0.3; width: 100%; background-color: var(--text-lighter) !important; height: 1px !important; }
.ncs-scope .ncs-chrome ._10w3u1b0 { width: 100%; display: flex; margin: var(--margin); }
.ncs-scope .ncs-chrome ._1buablx0 > ._10w3u1b0, .ncs-scope .ncs-chrome .x1sja70 > ._10w3u1b0 { max-width: var(--max-width); }
.ncs-scope .ncs-chrome ._122mapi0 > ._10w3u1b0 { width: calc(100% - var(--margin-left) - var(--margin-right)); max-width: calc(var(--max-width) - var(--margin-left) - var(--margin-right)); }
.ncs-scope .ncs-chrome ._10w3u1b1 { position: relative; width: var(--width); aspect-ratio: var(--aspect-ratio); max-width: 100%; border-radius: var(--border-radius); box-shadow: var(--box-shadow); }
.ncs-scope .ncs-chrome ._10w3u1b2 { display: block; object-fit: contain; width: 100%; height: 100%; }
.ncs-scope .ncs-chrome ._10w3u1b4 { transition: 0.3s; max-width: 100%; }
.ncs-scope .ncs-chrome ._10w3u1b4:hover { margin-top: -10px; margin-bottom: 10px; }
.ncs-scope .ncs-chrome ._1h3aayo0 { position: relative; user-select: none; display: flex; flex-direction: row; align-items: stretch; white-space: normal; margin: var(--margin); }
.ncs-scope .ncs-chrome ._122mapi0 > ._1h3aayo0 { width: calc(100% - var(--margin-left) - var(--margin-right)) !important; max-width: calc(100% - var(--margin-left) - var(--margin-right)) !important; }
.ncs-scope .ncs-chrome ._1h3aayo0 > * { width: 100%; flex: 1 1 0%; }
.ncs-scope .ncs-chrome ._1h3aayo0 > iframe { position: absolute; left: 0px; top: 0px; border: 0px; }
.ncs-scope .ncs-chrome ._1h3aayo0 iframe { width: 100%; height: 100%; }
.ncs-scope .ncs-chrome ._122mapi0 > .uay4480 { width: 100%; max-width: 100%; }
.ncs-scope .ncs-chrome ._1buablx0 > .uay4480 { padding-inline-start: 54px; }
.ncs-scope .ncs-chrome ._1vo7q450 { position: relative; color: inherit; margin: var(--margin); padding: var(--padding); width: var(--width); max-width: var(--max-width); }
.ncs-scope .ncs-chrome ._1buablx0 > ._1vo7q450, .ncs-scope .ncs-chrome .x1sja70 > ._1vo7q450 { padding: var(--padding-root); }
.ncs-scope .ncs-chrome ._122mapi0 > ._1vo7q450, .ncs-scope .ncs-chrome .l4d89p0 > button > ._1vo7q450, .ncs-scope .ncs-chrome .num1mw3 ._1vo7q450 { width: calc(100% - var(--margin-left) - var(--margin-right)); max-width: calc(100% - var(--margin-left) - var(--margin-right)); }
.ncs-scope .ncs-chrome .r2ud8k0 { position: relative; margin: var(--margin); }
.ncs-scope .ncs-chrome ._122mapi0 > .r2ud8k0 { width: calc(100% - var(--margin-left) - var(--margin-right)) !important; max-width: calc(100% - var(--margin-left) - var(--margin-right)) !important; }
.ncs-scope .ncs-chrome--nav > :first-child, .ncs-scope .ncs-chrome--header > :first-child, .ncs-scope .ncs-chrome--nav header, .ncs-scope .ncs-chrome--header header, .ncs-scope .ncs-chrome--nav [role="banner"], .ncs-scope .ncs-chrome--header [role="banner"], .ncs-scope .ncs-chrome--nav nav:not(.ncs-synth-dropdown-panel):not([role="menu"]), .ncs-scope .ncs-chrome--header nav:not(.ncs-synth-dropdown-panel):not([role="menu"]), .ncs-scope .ncs-chrome--nav [role="navigation"], .ncs-scope .ncs-chrome--header [role="navigation"] { background-color: rgb(1, 6, 51) !important; }
.ncs-scope .ncs-chrome--nav > :first-child, .ncs-scope .ncs-chrome--header > :first-child, .ncs-scope .ncs-chrome--nav header, .ncs-scope .ncs-chrome--header header, .ncs-scope .ncs-chrome--nav [role="banner"], .ncs-scope .ncs-chrome--header [role="banner"], .ncs-scope .ncs-chrome--nav nav:not(.ncs-synth-dropdown-panel):not([role="menu"]), .ncs-scope .ncs-chrome--header nav:not(.ncs-synth-dropdown-panel):not([role="menu"]), .ncs-scope .ncs-chrome--nav [role="navigation"], .ncs-scope .ncs-chrome--header [role="navigation"] { box-shadow: rgba(0, 0, 0, 0.04) 0px 0px 20px 0px !important; }
.ncs-scope .ncs-chrome--nav > :first-child, .ncs-scope .ncs-chrome--header > :first-child, .ncs-scope .ncs-chrome--nav header, .ncs-scope .ncs-chrome--header header, .ncs-scope .ncs-chrome--nav [role="banner"], .ncs-scope .ncs-chrome--header [role="banner"], .ncs-scope .ncs-chrome--nav nav:not(.ncs-synth-dropdown-panel):not([role="menu"]), .ncs-scope .ncs-chrome--header nav:not(.ncs-synth-dropdown-panel):not([role="menu"]), .ncs-scope .ncs-chrome--nav [role="navigation"], .ncs-scope .ncs-chrome--header [role="navigation"] { filter: none !important; }
.ncs-scope .ncs-chrome--nav > :first-child, .ncs-scope .ncs-chrome--header > :first-child, .ncs-scope .ncs-chrome--nav header, .ncs-scope .ncs-chrome--header header, .ncs-scope .ncs-chrome--nav [role="banner"], .ncs-scope .ncs-chrome--header [role="banner"], .ncs-scope .ncs-chrome--nav nav:not(.ncs-synth-dropdown-panel):not([role="menu"]), .ncs-scope .ncs-chrome--header nav:not(.ncs-synth-dropdown-panel):not([role="menu"]), .ncs-scope .ncs-chrome--nav [role="navigation"], .ncs-scope .ncs-chrome--header [role="navigation"] { backdrop-filter: none !important; }
.ncs-scope .ncs-chrome--nav > :first-child, .ncs-scope .ncs-chrome--header > :first-child, .ncs-scope .ncs-chrome--nav header, .ncs-scope .ncs-chrome--header header, .ncs-scope .ncs-chrome--nav [role="banner"], .ncs-scope .ncs-chrome--header [role="banner"], .ncs-scope .ncs-chrome--nav nav:not(.ncs-synth-dropdown-panel):not([role="menu"]), .ncs-scope .ncs-chrome--header nav:not(.ncs-synth-dropdown-panel):not([role="menu"]), .ncs-scope .ncs-chrome--nav [role="navigation"], .ncs-scope .ncs-chrome--header [role="navigation"] { -webkit-backdrop-filter: none !important; }
.ncs-scope .ncs-chrome--nav > :first-child, .ncs-scope .ncs-chrome--header > :first-child, .ncs-scope .ncs-chrome--nav header, .ncs-scope .ncs-chrome--header header, .ncs-scope .ncs-chrome--nav [role="banner"], .ncs-scope .ncs-chrome--header [role="banner"], .ncs-scope .ncs-chrome--nav nav:not(.ncs-synth-dropdown-panel):not([role="menu"]), .ncs-scope .ncs-chrome--header nav:not(.ncs-synth-dropdown-panel):not([role="menu"]), .ncs-scope .ncs-chrome--nav [role="navigation"], .ncs-scope .ncs-chrome--header [role="navigation"] { border-bottom-width: 0 !important; border-bottom-style: none !important; }
.ncs-scope .ncs-chrome--footer, .ncs-scope .ncs-chrome footer, .ncs-scope .ncs-chrome [role="contentinfo"] { background-color: rgb(255, 255, 255) !important; }
.ncs-scope .ncs-chrome--footer, .ncs-scope .ncs-chrome footer, .ncs-scope .ncs-chrome [role="contentinfo"] { color: rgb(0, 0, 0) !important; }
.ncs-scope .ncs-chrome--footer p, .ncs-scope .ncs-chrome--footer li, .ncs-scope .ncs-chrome--footer span, .ncs-scope .ncs-chrome--footer small, .ncs-scope .ncs-chrome--footer div, .ncs-scope .ncs-chrome--footer strong, .ncs-scope .ncs-chrome--footer em, .ncs-scope .ncs-chrome footer p, .ncs-scope .ncs-chrome footer li, .ncs-scope .ncs-chrome footer span, .ncs-scope .ncs-chrome footer small, .ncs-scope .ncs-chrome footer div, .ncs-scope .ncs-chrome footer strong, .ncs-scope .ncs-chrome footer em, .ncs-scope .ncs-chrome [role="contentinfo"] p, .ncs-scope .ncs-chrome [role="contentinfo"] li, .ncs-scope .ncs-chrome [role="contentinfo"] span, .ncs-scope .ncs-chrome [role="contentinfo"] small, .ncs-scope .ncs-chrome [role="contentinfo"] div, .ncs-scope .ncs-chrome [role="contentinfo"] strong, .ncs-scope .ncs-chrome [role="contentinfo"] em { color: rgb(0, 0, 0) !important; }
.ncs-scope .ncs-chrome--footer a, .ncs-scope .ncs-chrome footer a, .ncs-scope .ncs-chrome [role="contentinfo"] a { color: rgb(255, 255, 255) !important; }
.ncs-scope .ncs-chrome--footer h1, .ncs-scope .ncs-chrome--footer h2, .ncs-scope .ncs-chrome--footer h3, .ncs-scope .ncs-chrome--footer h4, .ncs-scope .ncs-chrome--footer h5, .ncs-scope .ncs-chrome--footer h6, .ncs-scope .ncs-chrome footer h1, .ncs-scope .ncs-chrome footer h2, .ncs-scope .ncs-chrome footer h3, .ncs-scope .ncs-chrome footer h4, .ncs-scope .ncs-chrome footer h5, .ncs-scope .ncs-chrome footer h6, .ncs-scope .ncs-chrome [role="contentinfo"] h1, .ncs-scope .ncs-chrome [role="contentinfo"] h2, .ncs-scope .ncs-chrome [role="contentinfo"] h3, .ncs-scope .ncs-chrome [role="contentinfo"] h4, .ncs-scope .ncs-chrome [role="contentinfo"] h5, .ncs-scope .ncs-chrome [role="contentinfo"] h6 { color: rgb(0, 0, 0) !important; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("branding/c428ca13a1cc99.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("branding/ec7f5af97c9d10.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("branding/085cd7907a4366.woff2") format('woff2');
  unicode-range: U+1F00-1FFF; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("branding/4609148e1a78e1.woff2") format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("branding/1f53bf00fe0a85.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("branding/367ba69ac0a2c9.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("branding/bec94a4daf0632.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("branding/c428ca13a1cc99.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("branding/ec7f5af97c9d10.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("branding/085cd7907a4366.woff2") format('woff2');
  unicode-range: U+1F00-1FFF; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("branding/4609148e1a78e1.woff2") format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("branding/1f53bf00fe0a85.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("branding/367ba69ac0a2c9.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("branding/bec94a4daf0632.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("branding/c428ca13a1cc99.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("branding/ec7f5af97c9d10.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("branding/085cd7907a4366.woff2") format('woff2');
  unicode-range: U+1F00-1FFF; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("branding/4609148e1a78e1.woff2") format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("branding/1f53bf00fe0a85.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("branding/367ba69ac0a2c9.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("branding/bec94a4daf0632.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("branding/c428ca13a1cc99.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("branding/ec7f5af97c9d10.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("branding/085cd7907a4366.woff2") format('woff2');
  unicode-range: U+1F00-1FFF; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("branding/4609148e1a78e1.woff2") format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("branding/1f53bf00fe0a85.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("branding/367ba69ac0a2c9.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("branding/bec94a4daf0632.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("branding/c428ca13a1cc99.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("branding/ec7f5af97c9d10.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("branding/085cd7907a4366.woff2") format('woff2');
  unicode-range: U+1F00-1FFF; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("branding/4609148e1a78e1.woff2") format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("branding/1f53bf00fe0a85.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("branding/367ba69ac0a2c9.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("branding/bec94a4daf0632.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("branding/c428ca13a1cc99.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("branding/ec7f5af97c9d10.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("branding/085cd7907a4366.woff2") format('woff2');
  unicode-range: U+1F00-1FFF; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("branding/4609148e1a78e1.woff2") format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("branding/1f53bf00fe0a85.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("branding/367ba69ac0a2c9.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("branding/bec94a4daf0632.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("branding/c428ca13a1cc99.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("branding/ec7f5af97c9d10.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("branding/085cd7907a4366.woff2") format('woff2');
  unicode-range: U+1F00-1FFF; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("branding/4609148e1a78e1.woff2") format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("branding/1f53bf00fe0a85.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("branding/367ba69ac0a2c9.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("branding/bec94a4daf0632.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("branding/c428ca13a1cc99.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("branding/ec7f5af97c9d10.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("branding/085cd7907a4366.woff2") format('woff2');
  unicode-range: U+1F00-1FFF; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("branding/4609148e1a78e1.woff2") format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("branding/1f53bf00fe0a85.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("branding/367ba69ac0a2c9.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("branding/bec94a4daf0632.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("branding/c428ca13a1cc99.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("branding/ec7f5af97c9d10.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("branding/085cd7907a4366.woff2") format('woff2');
  unicode-range: U+1F00-1FFF; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("branding/4609148e1a78e1.woff2") format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("branding/1f53bf00fe0a85.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("branding/367ba69ac0a2c9.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("branding/bec94a4daf0632.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }

.ncs-scope .ncs-chrome .bx { font-family:boxicons!important;font-weight:400;font-style:normal;font-variant:normal;line-height:1;text-rendering:auto;display:inline-block;text-transform:none;speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale }

.ncs-scope .ncs-chrome .bx-ul .bx { font-size:inherit;line-height:inherit;position:absolute;left:-2em;width:2em;text-align:center }

@keyframes spin { 0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)} }

@keyframes burst { 0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}90%{-webkit-transform:scale(1.5);transform:scale(1.5);opacity:0} }

@keyframes flashing { 0%{opacity:1}45%{opacity:0}90%{opacity:1} }

@keyframes fade-left { 0%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}75%{-webkit-transform:translateX(-20px);transform:translateX(-20px);opacity:0} }

@keyframes fade-right { 0%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}75%{-webkit-transform:translateX(20px);transform:translateX(20px);opacity:0} }

@keyframes fade-up { 0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}75%{-webkit-transform:translateY(-20px);transform:translateY(-20px);opacity:0} }

@keyframes fade-down { 0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}75%{-webkit-transform:translateY(20px);transform:translateY(20px);opacity:0} }

@keyframes tada { from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}10%,20%{-webkit-transform:scale3d(.95,.95,.95) rotate3d(0,0,1,-10deg);transform:scale3d(.95,.95,.95) rotate3d(0,0,1,-10deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1,1,1) rotate3d(0,0,1,10deg);transform:scale3d(1,1,1) rotate3d(0,0,1,10deg)}40%,60%,80%{-webkit-transform:rotate3d(0,0,1,-10deg);transform:rotate3d(0,0,1,-10deg)}to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)} }

.ncs-scope .ncs-chrome .bx-minus:before { content:"\eb8b" }

.ncs-scope .ncs-chrome .bx-plus:before { content:"\ebc0" }

.ncs-scope .ncs-chrome .bxs-chevron-down:before { content:"\ed35" }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] { width:100%;display:block;overflow:hidden;text-align:left;direction:ltr;box-sizing:border-box;font-family:unset;font-weight:400 }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] font { pointer-events:none }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] script { display:none !important }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] img { box-shadow:unset !important }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] *, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] *:after { box-sizing:border-box }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] *:before, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] *:after { -webkit-box-ordinal-group:1 !important;content:unset }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background']:before { display:none !important }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] img { padding:0 !important;margin:0 !important;min-width:initial !important;max-width:initial !important;border:0 !important;border-radius:0 !important }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] a { text-decoration:underline !important;color:inherit }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] a.ti-header { text-decoration:none !important }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] a[href="#"]:not(.ti-show-original-text), .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] a:not([href]):not(.ti-show-original-text) { text-decoration:none !important;pointer-events:none }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-widget-container, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-widget-container * { font-family:"Trustindex Poppins";font-size:14px;line-height:1.4em;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;row-gap:unset !important;column-gap:unset !important }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] strong, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] strong * { font-weight:600 }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-tooltip, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-verified-tooltip { color:white !important;background-color:black !important;text-align:left;padding:5px 10px;border-radius:6px;font-size:13px !important;font-weight:400;display:inline-block !important;position:absolute;top:-5px;white-space:nowrap;z-index:3;opacity:0;visibility:hidden;transition:opacity 0.3s ease-in-out;width:max-content;box-shadow:0 4px 12px rgba(0, 0, 0, 0.33);--ti-border-arrow-color: black;margin:unset;bottom:unset;left:unset;right:calc(100% + 10px);margin-right:30px }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-tooltip:before, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-verified-tooltip:before { width:0;height:0;border-style:solid;content:"" !important;position:absolute;top:50%;margin-top:-7px }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-tooltip:before, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-verified-tooltip:before { left:unset;right:-7px;border-width:7px 0 7px 7px;border-color:transparent transparent transparent var(--ti-border-arrow-color) }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-with-tooltip, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-verified-review { position:relative;font-size:inherit }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-with-tooltip:hover .ti-tooltip, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-with-tooltip:hover .ti-verified-tooltip, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-verified-review:hover .ti-tooltip, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-verified-review:hover .ti-verified-tooltip { opacity:1;margin:0;visibility:visible }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-verified-tooltip { margin:unset;right:unset;left:calc(100% + 10px);margin-left:30px;margin:unset;bottom:unset;left:unset;right:calc(100% + 10px);margin-right:30px }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-verified-tooltip:before { right:unset;left:-7px;border-width:7px 7px 7px 0;border-color:transparent var(--ti-border-arrow-color) transparent transparent }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-verified-tooltip:before { left:unset;right:-7px;border-width:7px 0 7px 7px;border-color:transparent transparent transparent var(--ti-border-arrow-color) }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-verified-platform .ti-verified-tooltip { width:175px;max-width:250px;white-space:normal;line-height:1.4 !important;top:-10px }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-verified-platform .ti-verified-tooltip:before { top:18px }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-date .ti-tooltip { margin:unset;top:unset;right:unset;left:calc(50% + 20px);transform:translateX(-50%);margin-bottom:30px;bottom:calc(100% + 10px) }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-date .ti-tooltip:before { top:unset;right:unset;margin:unset;left:50%;margin-left:-25px;bottom:-7px;border-width:7px 7px 0 7px;border-color:var(--ti-border-arrow-color) transparent transparent transparent }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-set-id^="dark-"] .ti-tooltip, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-set-id^="dark-"] .ti-verified-tooltip, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-set-id="light-contrast"] .ti-tooltip, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-set-id="light-contrast"] .ti-verified-tooltip { color:black !important;background-color:white !important;--ti-border-arrow-color: white }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-widget-container { display:block;color:#000000;margin-bottom:15px }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-widget-container .ti-name { font-weight:600;font-size:15px;overflow:hidden;padding-right:25px;white-space:nowrap;text-overflow:ellipsis;color:#000000 }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-widget-container .ti-name a { text-decoration:none !important;font-size:inherit }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-widget-container .ti-name a:hover { text-decoration:underline !important }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-widget-container .ti-date { color:#767676;font-size:13px }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-widget-container .ti-date .ti-tooltip { bottom:calc(100% + 8px) }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-profile-img { margin:0 15px 0 0 !important }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-profile-img img { width:40px !important;height:40px !important;display:block;border-radius:30px !important;object-fit:cover;object-position:top }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-profile-img .ti-profile-img-sprite { display:inline-block;float:left;background:white;background-repeat:no-repeat;width:40px;height:40px;border-radius:30px }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-profile-details { -webkit-box-flex:1;-ms-flex:1;flex:1;white-space:nowrap;text-overflow:ellipsis;text-align:left;margin:0 !important;display:flex;flex-direction:column;justify-content:center;min-width:0 }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-stars { margin-top:3px;white-space:nowrap;display:block }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-star { width:17px !important;height:17px !important;margin-right:1px !important;vertical-align:unset;display:inline-block !important }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] img.ti-star { background:none !important }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-footer { margin-top:15px;padding-top:0px;text-align:center;line-height:1.45em }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-footer .ti-name { color:#000000;font-size:16px;margin-bottom:5px;overflow:hidden;text-overflow:ellipsis }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-footer .ti-stars { margin-bottom:3px;margin-top:0px;line-height:0 }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-footer .ti-profile-details { padding-top:4px }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-footer .ti-inner { padding-bottom:10px }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-fade-container { grid-row:1;grid-column:1;-ms-flex-wrap:inherit;flex-wrap:inherit;-ms-flex-pack:inherit;justify-content:inherit;flex-direction:inherit;text-align:inherit;display:none;opacity:0;transition:opacity 1s }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-fade-container:nth-child(1) { display:flex;opacity:1 }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-header-grid, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-footer-grid { display:grid }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-footer-filter-text { font-size:15px !important;color:#000000;margin-bottom:0 !important;padding:0 15px;text-align:left;margin:15px 0 }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-footer-filter-text:empty { margin:0 !important }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-disclaimer { visibility:hidden;opacity:0;padding:12px 24px;position:absolute;bottom:100%;width:100%;min-width:220px;max-width:585px;background:white;border:1px solid black;border-radius:6px;box-shadow:0 4px 15px rgba(0, 0, 0, 0.05);font-size:14px;font-weight:normal;margin-bottom:15px;text-align:left;z-index:2147483647;color:#000000 !important;transition:all 0.3s;transition-delay:0.35s;white-space:normal !important;right:unset ;left:50% ;transform:translateX(-50%) }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-disclaimer:before, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-disclaimer:after { left:0 ;right:0 }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-disclaimer a { font-size:inherit }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-disclaimer:hover { visibility:visible;opacity:1 }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background']:not([data-layout-category*="top-rated-badge"]) .ti-disclaimer:before, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background']:not([data-layout-category*="top-rated-badge"]) .ti-disclaimer:after { position:absolute;content:"";bottom:-18px;margin:0 auto;width:0;border-style:solid;border-right:20px solid transparent;border-left:20px solid transparent;border-bottom:20px solid black;border-top:0;transform:rotate(45deg) }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background']:not([data-layout-category*="top-rated-badge"]) .ti-disclaimer:after { bottom:-16px;margin-right:1px;border-bottom-color:white }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-layout-category*="top-rated-badge"] .ti-disclaimer:after { position:absolute;content:"";bottom:-10px;margin:0 auto;width:0;border:10px solid transparent;border-bottom-width:0;border-top-color:#000 }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-layout-category*="top-rated-badge"] .ti-disclaimer.ti-bottom { bottom:unset;margin-bottom:unset;top:100%;margin-top:15px }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-layout-category*="top-rated-badge"] .ti-disclaimer.ti-bottom:after { bottom:unset;top:-10px;border:10px solid transparent;border-top-width:0;border-bottom-color:#000 }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-verified-by { display:inline-block }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-verified-by .ti-info-icon { display:inline-block;background-size:contain;width:13px;height:13px;position:relative;top:2px;-webkit-mask-image:url("branding/21d70eb07692cc.svg");mask-image:url("branding/21d70eb07692cc.svg");-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;background-color:#000000 }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-verified-by-row { display:block;text-align:right;margin-bottom:0 !important;font-size:12px;color:#000000;margin:12px 28px }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-verified-by-row>.ti-inner { display:inline-block;position:relative;padding:4px 14px;font-size:12px;font-weight:600;border-radius:3px }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-verified-by-row .ti-info-icon { -webkit-mask-image:url("branding/1fd3622eee2d00.svg");mask-image:url("branding/1fd3622eee2d00.svg") }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-verified-by-row .ti-trustindex-icon { display:inline-block;width:15px;height:15px;vertical-align:unset;position:relative;top:2px;background-image:url("branding/3713736869c0b7.svg");margin-left:4px;margin-right:3px }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-verified-by-row .ti-disclaimer { width:320px !important;left:unset ;transform:unset ;right:-7px }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-verified-by-row .ti-disclaimer:after, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-verified-by-row .ti-disclaimer:before { left:unset ;right:15px }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-verified-by-row[data-style="1"]>.ti-inner { background-color:#157351;color:white }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-verified-by-row[data-style="1"] .ti-info-icon { background-color:white !important }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-verified-by-row[data-style="2"]>.ti-inner { background-color:#D6F3E6;color:black }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-verified-by-row[data-style="2"] .ti-info-icon { background-color:black !important }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-verified-by:hover+.ti-disclaimer, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-verified-by .ti-inner:hover .ti-disclaimer { visibility:visible;transition-delay:0.1ms;opacity:1 }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-footer-filter-text+.ti-verified-by-row { margin-top:-20px !important }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-footer+.ti-verified-by-row { text-align:center }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-footer+.ti-verified-by-row .ti-disclaimer { right:unset  !important;left:50%  !important;transform:translateX(-50%)  !important }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-footer+.ti-verified-by-row .ti-disclaimer:before, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-footer+.ti-verified-by-row .ti-disclaimer:after { left:0  !important;right:0  !important }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-footer+.ti-verified-by-row .ti-disclaimer:after { margin-right:auto  !important;right:2px  !important }

@media (max-width:479px) {
.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-verified-by-row { text-align:center !important }
}

@media (max-width:479px) {
.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-verified-by-row .ti-disclaimer { right:unset ;left:50% ;transform:translateX(-50%) }
}

@media (max-width:479px) {
.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-verified-by-row .ti-disclaimer:before, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-verified-by-row .ti-disclaimer:after { left:0 ;right:0 }
}

@media (max-width:479px) {
.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-verified-by-row .ti-disclaimer:after { margin-right:auto ;right:2px }
}

@media (max-width:479px) {
.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-footer-filter-text+.ti-verified-by-row { margin-top:12px !important }
}

@media (max-width:479px) {
.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-footer-filter-text { text-align:center !important }
}

@media (min-width:1024px) {
.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-footer-filter-text { margin:12px 28px }
}

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .star-lg .ti-star { width:30px !important;height:30px !important }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-d-none { display:none !important }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-rating-text, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-rating-text strong:not(.ti-rating-large), .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-rating-text strong a, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-rating-text strong span, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-rating-text span strong, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-rating-text span, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-footer, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-footer strong:not(.ti-rating-large), .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-footer span, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-footer strong a { font-size:15px;color:#000000 }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-large-logo { display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-bottom:0 !important }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-large-logo .ti-v-center { -ms-flex-item-align:center !important;align-self:center !important;text-align:center;-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100% }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-large-logo img { margin:auto !important;display:block !important;position:relative;width:150px !important;height:32px !important;object-fit:unset !important }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .nowrap { white-space:nowrap;display:inline-block;margin:0 2px }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .nowrap:first-of-type { margin-left:0 }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .nowrap:last-of-type { margin-right:0 }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-reviews-container-wrapper .ti-inner>.ti-stars, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-reviews-container-wrapper .ti-popup-inner>.ti-stars { margin-bottom:11px;margin-top:11px;text-align:left }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-reviews-container-wrapper { overflow:hidden;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;direction:ltr;margin:0 -8px;padding-top:5px }

.ncs-scope .ncs-chrome .ti-disable-animation.ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-reviews-container-wrapper { padding-top:0 !important }

@media (min-width:1024px) {
.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-reviews-container-wrapper { margin:0 8px !important }
}

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-col-1 .ti-review-item { -ms-flex:0 0 100%;flex:0 0 100%;max-width:100% }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-col-2 .ti-review-item { -ms-flex:0 0 50%;flex:0 0 50%;max-width:50% }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-col-3 .ti-review-item { -ms-flex:0 0 33.333%;flex:0 0 33.333%;max-width:33.333% }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-col-4 .ti-review-item { -ms-flex:0 0 25%;flex:0 0 25%;max-width:25% }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-col-5 .ti-review-item { -ms-flex:0 0 20%;flex:0 0 20%;max-width:20% }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-col-6 .ti-review-item { -ms-flex:0 0 16.666%;flex:0 0 16.666%;max-width:16.666% }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-col-7 .ti-review-item { -ms-flex:0 0 14.286%;flex:0 0 14.286%;max-width:14.286% }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-col-8 .ti-review-item { -ms-flex:0 0 12.5%;flex:0 0 12.5%;max-width:12.5% }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-col-9 .ti-review-item { -ms-flex:0 0 11.111%;flex:0 0 11.111%;max-width:11.111% }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-col-10 .ti-review-item { -ms-flex:0 0 10%;flex:0 0 10%;max-width:10% }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-reviews-container { position:relative;display:block;touch-action:pan-y }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-read-more { display:block;padding:8px 0 0;text-align:left;position:relative }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-read-more span { display:inline-block;font-weight:400;white-space:nowrap;font-size:13.5px;color:#000000;opacity:0.5;text-decoration:none !important;transition:color 300ms ease-out;cursor:pointer }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-read-more span:hover { opacity:1;text-decoration:underline !important }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-read-more:after { content:"";position:absolute;right:0;top:calc(50% + 3px);transform:translateY(-50%);width:25px;height:25px;-webkit-mask-size:contain;mask-size:contain;-webkit-mask-position:center;mask-position:center;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;mask-image:url("branding/71cbaf98c63a33.svg");-webkit-mask-image:url("branding/71cbaf98c63a33.svg");background:#d9d9d9;display:none }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-review-item { padding:0 8px;transition:transform 300ms ease-out }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-review-item .ti-inner { border-radius:4px }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-review-item>.ti-inner { border-style:solid !important;border-color:#f4f4f4 !important;border-radius:12px !important;padding:20px !important;margin:0 !important;display:block !important;position:relative;background-color:#f4f4f4;background-image:none }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-review-item .ti-polarity-icon { position:relative;text-indent:3px;display:inline-block;width:15px !important;height:15px !important;vertical-align:unset }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-review-item .ti-recommendation { display:inline-block;height:15px;line-height:15px }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-review-item .ti-recommendation .ti-recommendation-icon { position:relative;margin:0 5px !important;margin-bottom:-3px !important;text-indent:3px;display:inline-block;width:15px !important;height:15px !important;vertical-align:unset }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-review-item .ti-recommendation .ti-recommendation-icon:first-child { margin-left:0 !important }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-review-item .ti-recommendation .ti-recommendation-title { font-weight:600;font-size:13px !important;opacity:0.8;position:relative;top:-1px }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-review-item .ti-recommendation+.ti-dummy-stars { display:none }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-review-item .ti-stars { height:17px;line-height:17px }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-review-item .ti-review-image { width:80px;height:80px;border-radius:12px;margin-left:12px;margin-bottom:4px;margin-top:2px;position:relative;cursor:pointer;overflow:hidden }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-review-item .ti-review-image img { position:absolute;object-fit:cover;width:100% !important;height:100% !important;max-width:100% !important;max-height:100% !important;border-radius:inherit !important;left:0;top:0;transition:all 0.3s ease-in-out;pointer-events:none }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-review-item .ti-review-image .ti-more-image-count { position:absolute;width:100%;height:100%;left:0;top:0;display:flex;align-items:center;justify-content:center;color:white;background-color:rgba(0, 0, 0, 0.4);font-size:18px;border-radius:inherit;opacity:0;pointer-events:none;transition:all 0.2s ease-in-out;font-weight:600;transform:scale(0.85);z-index:2 }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-review-item .ti-review-image:hover img { transform:scale(1.1) }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-review-item .ti-review-image:hover.ti-has-more-image .ti-more-image-count { opacity:1;transform:scale(1) }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-review-item .ti-review-image-container { display:flex;flex-wrap:nowrap;margin:0 -4px;margin-top:15px;max-height:100px;transition:all 500ms ease-in-out }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-review-item .ti-review-image-container .ti-review-image { float:unset !important;margin:0 !important;width:25%;height:unset;flex:0 0 auto;padding:0 4px }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-review-item .ti-review-image-container .ti-review-image .ti-review-image-inner { display:block;position:relative;width:100%;height:0;padding-bottom:100%;border-radius:inherit;overflow:hidden;pointer-events:none }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-review-item .ti-review-image-container .ti-review-image.ti-has-more-image .ti-more-image-count { opacity:1;transform:scale(1) }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-review-item.ti-hidden-review .ti-review-image-container { max-height:0;margin-top:0;transition-delay:500ms }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-review-content { -webkit-box-orient:vertical;line-height:21.75px;height:87px;font-size:15px;text-align:left;transition:height 0.5s;font-style:normal;display:-webkit-box;-webkit-line-clamp:4;overflow:hidden !important;padding-right:0 }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-review-content .ti-review-image { float:right }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-review-content.ti-empty-text .ti-review-image { float:unset !important;margin:unset !important;display:inline-block !important }

.ncs-scope .ncs-chrome .ti-text-align-right.ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-review-content .ti-review-image { float:left;margin-left:unset;margin-right:12px }

.ncs-scope .ncs-chrome .ti-ios-fallback.ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-review-content { display:block }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-review-content .ti-show-original-text { font-size:inherit !important }

.ncs-scope .ncs-chrome .ti-review-text-mode-scroll.ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-review-content { -webkit-line-clamp:inherit;overflow:auto !important;overflow-x:hidden !important;padding-right:10px }

.ncs-scope .ncs-chrome .ti-text-align-right.ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-review-content { text-align:right !important }

.ncs-scope .ncs-chrome .ti-text-align-center.ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-review-content { text-align:center !important }

.ncs-scope .ncs-chrome .ti-text-align-justify.ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-review-content { text-align:justify !important }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-review-content .ti-stars { margin-bottom:5px }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-review-content strong { font-size:inherit;color:inherit;font-weight:normal !important }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-review-content .ti-reply-by-owner-title { font-weight:600 !important }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-review-content .ti-reply-by-owner-title:before { content:"↪ " }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-review-header { display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;position:relative }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-highlight { padding:1px 2px;margin:0;box-decoration-break:clone;-webkit-box-decoration-break:clone;border-radius:1px;-webkit-border-radius:1px;-moz-border-radius:1px;background-color:transparent !important;background-image:linear-gradient(#fbe049, #fbe049);background-size:100% 19px;background-position:bottom;background-repeat:no-repeat;color:#000 !important;font-size:inherit !important }

@media (min-width:480px) {
.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-review-item:hover { -webkit-transform:translate(0, -5px);-ms-transform:translate(0, -5px);transform:translate(0, -5px) }
}

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-ai-summary-item { color:#000000 }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-ai-summary-item .ti-review-content { -webkit-line-clamp:5;margin-top:16.25px;height:110.75px !important }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-ai-summary-item .ti-review-content .ti-summary-list { margin-bottom:0;padding-left:0;list-style:none;font-size:inherit;pointer-events:none }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-ai-summary-item .ti-review-content .ti-summary-list li { list-style:inherit;margin-bottom:0;padding-left:20px;position:relative;font-size:inherit }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-ai-summary-item .ti-review-content .ti-summary-list li:last-child { margin-bottom:0 }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-ai-summary-item .ti-review-content .ti-summary-list li:before { display:block;content:"";width:10px;height:5px;border-left:solid 2px #000000;border-bottom:solid 2px #000000;transform:rotate(-45deg);position:absolute;left:0;top:7.5px }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-ai-summary-item .ti-profile-img { margin-right:13px !important }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-ai-summary-item .ti-profile-img img:not(.ti-ai-profile-img) { display:inline-block;vertical-align:middle;border:2px solid #f4f4f4 }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-ai-summary-item .ti-profile-img img:not(.ti-ai-profile-img):not(:first-child) { margin-left:-12px !important }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-ai-summary-item .ti-profile-details .ti-name { padding-right:0 }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-ai-summary-item .ti-profile-details .ti-date { overflow:hidden;text-overflow:ellipsis }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-ai-summary-item>.ti-inner { background-color:#f4f4f4 !important;background-image:none }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-ai-summary-item .ti-profile-img img:not(.ti-ai-profile-img) { border-color:#f4f4f4 }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-ai-summary-item .ti-name, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-ai-summary-item .ti-date, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-ai-summary-item .ti-read-more span { color:#000000 }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-ten-rating-score { display:inline-block;font-weight:600;font-size:15px;color:#000000;margin-left:7px;height:100%;line-height:17px;vertical-align:top }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-platform-icon { width:20px !important;height:20px !important;position:absolute;top:0;right:0 }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-custom-stars [class*="source-"] .ti-star.e, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-custom-stars [class*="source-"] .ti-star.f { background-image:none }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-custom-stars .ti-star { -webkit-mask-size:contain;mask-size:contain;-webkit-mask-position:center;mask-position:center;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;mask-image:url("branding/541150428721d9.svg");-webkit-mask-image:url("branding/541150428721d9.svg") }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-custom-stars .ti-star:not(.e):not(.h) { background:#f6bb06 }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-custom-stars .ti-star.h { background:#f6bb06;background:-webkit-linear-gradient(90deg, #f6bb06 50%, #cccccc 50%) !important;background:linear-gradient(90deg, #f6bb06 50%, #cccccc 50%) !important }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-custom-stars .ti-star.e { background:#ccc !important }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-language="ar"] .ti-name, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-language="ar"] .ti-date, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-language="ar"] .ti-profile-details .ti-text, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-language="ar"] .ti-review-content, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-language="ar"] .ti-review-text, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-language="ar"] .ti-read-more, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-language="ar"] .ti-footer, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-language="ar"] .ti-rating-text, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-language="ar"] .ti-footer-filter-text, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-language="ar"] .ti-header-write-btn, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-language="ar"] .ti-widget-header .ti-tab-item[data-source="all"] .ti-item-label, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-language="ar"] .ti-header-rating-text, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-language="ar"] .ti-rating-name, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-language="ar"] .ti-header .ti-text, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-language="ar"] .ti-load-more-reviews-button, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-language="he"] .ti-name, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-language="he"] .ti-date, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-language="he"] .ti-profile-details .ti-text, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-language="he"] .ti-review-content, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-language="he"] .ti-review-text, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-language="he"] .ti-read-more, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-language="he"] .ti-footer, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-language="he"] .ti-rating-text, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-language="he"] .ti-footer-filter-text, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-language="he"] .ti-header-write-btn, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-language="he"] .ti-widget-header .ti-tab-item[data-source="all"] .ti-item-label, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-language="he"] .ti-header-rating-text, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-language="he"] .ti-rating-name, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-language="he"] .ti-header .ti-text, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-language="he"] .ti-load-more-reviews-button, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-language="fa"] .ti-name, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-language="fa"] .ti-date, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-language="fa"] .ti-profile-details .ti-text, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-language="fa"] .ti-review-content, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-language="fa"] .ti-review-text, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-language="fa"] .ti-read-more, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-language="fa"] .ti-footer, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-language="fa"] .ti-rating-text, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-language="fa"] .ti-footer-filter-text, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-language="fa"] .ti-header-write-btn, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-language="fa"] .ti-widget-header .ti-tab-item[data-source="all"] .ti-item-label, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-language="fa"] .ti-header-rating-text, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-language="fa"] .ti-rating-name, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-language="fa"] .ti-header .ti-text, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-language="fa"] .ti-load-more-reviews-button { direction:rtl }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-language="ar"] .ti-stars, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-language="ar"] .ti-footer .ti-row, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-language="he"] .ti-stars, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-language="he"] .ti-footer .ti-row, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-language="fa"] .ti-stars, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-language="fa"] .ti-footer .ti-row { direction:ltr }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-language="ar"] .ti-date .ti-tooltip, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-language="he"] .ti-date .ti-tooltip, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'][data-language="fa"] .ti-date .ti-tooltip { right:unset }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-verified-review { display:inline-block;background:url("branding/75f97794b5918e.svg");background-size:contain;width:15px;height:15px;margin:0 !important;margin-left:7px !important;position:relative;z-index:2 }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-verified-review:only-child { margin-left:0 !important }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-verified-review.ti-color-green { background:url("branding/91b486cba6a17e.svg") }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-verified-review.ti-color-black { background:url("branding/6c846e56082d15.svg") }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-recommendation+.ti-verified-review { top:2px }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-ten-rating-score+.ti-verified-review { top:-1px }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-disable-nav .ti-controls { display:none !important }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-disable-nav .ti-footer-filter-text { margin:15px 0 }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-disable-nav .ti-widget-header { margin-left:13px !important;margin-right:13px !important }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-disable-nav .ti-reviews-container-wrapper { margin:0 !important }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-review-text-mode-scroll .ti-read-more, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-review-text-mode-truncated .ti-read-more { display:none !important }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-disable-font .ti-widget-container, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-disable-font .ti-widget-container *, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-disable-font .ti-enable-widget { font-family:inherit !important }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-disable-animation .ti-review-item:hover, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-disable-animation .ti-header:hover, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-disable-animation .ti-footer:hover { -webkit-transform:none !important;-ms-transform:none !important;transform:none !important }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-disable-animation .ti-widget-container { margin-top:5px }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-text-align-right .ti-reviews-container-wrapper .ti-inner>.ti-stars, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-text-align-right .ti-reviews-container-wrapper .ti-popup-inner>.ti-stars, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-text-align-right .ti-reviews-container-wrapper .ti-read-more { text-align:right !important }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-text-align-center .ti-reviews-container-wrapper .ti-inner>.ti-stars, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-text-align-center .ti-reviews-container-wrapper .ti-popup-inner>.ti-stars, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-text-align-center .ti-reviews-container-wrapper .ti-read-more { text-align:center !important }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-text-align-justify .ti-reviews-container-wrapper .ti-inner>.ti-stars, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-text-align-justify .ti-reviews-container-wrapper .ti-popup-inner>.ti-stars, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-text-align-justify .ti-reviews-container-wrapper .ti-read-more { text-align:justify !important }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-text-align-right .ti-review-header { flex-direction:row-reverse }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-text-align-right .ti-review-header .ti-platform-icon { right:unset;left:0 }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-text-align-right .ti-review-header .ti-profile-img { margin:0 0 0 15px !important }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-text-align-right .ti-review-header .ti-profile-details { text-align:right }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-text-align-right .ti-review-header .ti-profile-details .ti-name { padding-right:0;padding-left:25px }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-content-align-left .ti-review-header .ti-profile-details, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-content-align-left .ti-stars, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-content-align-left .ti-review-content, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-content-align-left .ti-read-more { text-align:left !important }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-content-align-right .ti-review-header .ti-profile-details, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-content-align-right .ti-stars, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-content-align-right .ti-review-content, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-content-align-right .ti-read-more { text-align:right !important }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-content-align-justify .ti-review-header .ti-profile-details, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-content-align-justify .ti-stars, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-content-align-justify .ti-review-content, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-content-align-justify .ti-read-more { text-align:justify !important }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-content-align-right .ti-review-header .ti-profile-img { align-self:end }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-content-align-right .ti-review-header:after { right:unset;left:0 }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-content-align-right:not(.ti-no-profile-img) .ti-review-header:after { left:initial;right:0 }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-content-align-center .ti-review-header .ti-profile-img { align-self:center }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-content-align-center:not(.ti-no-profile-img) .ti-review-header:after { right:inherit;left:calc(50% + 32px - 27px) }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-show-rating-text .ti-rating-text, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-show-rating-text .ti-rating-text strong:not(.ti-rating-large), .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-show-rating-text .ti-rating-text strong a, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-show-rating-text .ti-rating-text strong span, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-show-rating-text .ti-rating-text span strong, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-show-rating-text .ti-rating-text span, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-show-rating-text .ti-footer, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-show-rating-text .ti-footer strong:not(.ti-rating-large), .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-show-rating-text .ti-footer span, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-show-rating-text .ti-footer strong a { font-size:14px !important }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-text-align-right .ti-verified-tooltip, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-content-align-right .ti-verified-tooltip { margin:unset;bottom:unset;left:unset;right:calc(100% + 10px);margin-right:30px }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-text-align-right .ti-verified-tooltip:before, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-content-align-right .ti-verified-tooltip:before { left:unset;right:-7px;border-width:7px 0 7px 7px;border-color:transparent transparent transparent var(--ti-border-arrow-color) }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-text-align-right .ti-platform-icon .ti-tooltip, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-content-align-left .ti-platform-icon .ti-tooltip { margin:unset;right:unset;left:calc(100% + 10px);margin-left:30px }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-text-align-right .ti-platform-icon .ti-tooltip:before, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-content-align-left .ti-platform-icon .ti-tooltip:before { right:unset;left:-7px;border-width:7px 7px 7px 0;border-color:transparent var(--ti-border-arrow-color) transparent transparent }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] ::-webkit-scrollbar { width:4px;border-radius:3px }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] ::-webkit-scrollbar-track { background:rgba(85, 85, 85, 0.1) }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] ::-webkit-scrollbar-thumb { background:rgba(85, 85, 85, 0.6) }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] ::-webkit-scrollbar-thumb:hover { background:#555 }

.ncs-scope .ncs-chrome .ti-widget .source-Trustpilot .ti-large-logo { display:none !important }

.ncs-scope .ncs-chrome .ti-widget .source-Trustpilot.ti-tab-item:before, .ncs-scope .ncs-chrome .ti-widget .source-Trustpilot.ti-write-btn-dropdown-item:before, .ncs-scope .ncs-chrome .ti-widget .source-Trustpilot .ti-review-header:after, .ncs-scope .ncs-chrome .ti-widget .source-Trustpilot .ti-inner:after, .ncs-scope .ncs-chrome .ti-widget .source-Trustpilot .ti-review-content:after, .ncs-scope .ncs-chrome .ti-widget .source-Trustpilot .ti-platform-icon:after, .ncs-scope .ncs-chrome .ti-widget .source-Trustpilot .ti-icon, .ncs-scope .ncs-chrome .ti-widget .source-Trustpilot .ti-platform, .ncs-scope .ncs-chrome .ti-widget .source-Trustpilot .ti-inner .col-left, .ncs-scope .ncs-chrome .ti-widget .source-Trustpilot .ti-enable-widget:before, .ncs-scope .ncs-chrome .ti-widget .source-Trustpilot .ti-platform-icon, .ncs-scope .ncs-chrome .ti-lightbox .source-Trustpilot .ti-review-header:after, .ncs-scope .ncs-chrome .ti-lightbox .source-Trustpilot .ti-inner:after, .ncs-scope .ncs-chrome .ti-lightbox .source-Trustpilot .ti-review-content:after, .ncs-scope .ncs-chrome .ti-lightbox .source-Trustpilot .ti-platform-icon:after, .ncs-scope .ncs-chrome .ti-lightbox .source-Trustpilot .ti-inner .col-left, .ncs-scope .ncs-chrome .ti-lightbox .source-Trustpilot .ti-platform-icon { display:none !important }

.ncs-scope .ncs-chrome .ti-widget .source-Trustpilot .ti-enable-widget { padding-left:8px !important }

.ncs-scope .ncs-chrome .ti-widget .source-Trustpilot .ti-enable-widget:before { display:none !important }

.ncs-scope .ncs-chrome .ti-widget .source-Trustpilot.disable-widget { top:4px !important;right:4px !important }

.ncs-scope .ncs-chrome .ti-widget .ti-widget-header .ti-tab-item[data-source="Trustpilot"] .ti-platform-icon, .ncs-scope .ncs-chrome .ti-lightbox .ti-widget-header .ti-tab-item[data-source="Trustpilot"] .ti-platform-icon { display:none !important }

.ncs-scope .ncs-chrome .ti-widget .ti-widget-header .ti-tab-item[data-source="Trustpilot"] .ti-item-label { margin-right:0 !important }

.ncs-scope .ncs-chrome .ti-widget .ti-enable-widget .ti-platform-icon[alt="Trustpilot"], .ncs-scope .ncs-chrome .ti-widget .source-all .ti-platform-icon[alt="Trustpilot"], .ncs-scope .ncs-chrome .ti-widget .source-Trustindex .ti-platform-icon[alt="Trustpilot"], .ncs-scope .ncs-chrome .ti-lightbox .ti-enable-widget .ti-platform-icon[alt="Trustpilot"], .ncs-scope .ncs-chrome .ti-lightbox .source-all .ti-platform-icon[alt="Trustpilot"], .ncs-scope .ncs-chrome .ti-lightbox .source-Trustindex .ti-platform-icon[alt="Trustpilot"] { display:none !important }

.ncs-scope .ncs-chrome .ti-widget .source-Amazon.ti-tab-item:before, .ncs-scope .ncs-chrome .ti-widget .source-Amazon.ti-write-btn-dropdown-item:before, .ncs-scope .ncs-chrome .ti-widget .source-Amazon .ti-review-header:after, .ncs-scope .ncs-chrome .ti-widget .source-Amazon .ti-inner:after, .ncs-scope .ncs-chrome .ti-widget .source-Amazon .ti-review-content:after, .ncs-scope .ncs-chrome .ti-widget .source-Amazon .ti-platform-icon:after, .ncs-scope .ncs-chrome .ti-widget .source-Amazon .ti-icon, .ncs-scope .ncs-chrome .ti-widget .source-Amazon .ti-platform, .ncs-scope .ncs-chrome .ti-widget .source-Amazon .ti-inner .col-left, .ncs-scope .ncs-chrome .ti-widget .source-Amazon .ti-enable-widget:before, .ncs-scope .ncs-chrome .ti-widget .source-Amazon .ti-platform-icon, .ncs-scope .ncs-chrome .ti-lightbox .source-Amazon .ti-review-header:after, .ncs-scope .ncs-chrome .ti-lightbox .source-Amazon .ti-inner:after, .ncs-scope .ncs-chrome .ti-lightbox .source-Amazon .ti-review-content:after, .ncs-scope .ncs-chrome .ti-lightbox .source-Amazon .ti-platform-icon:after, .ncs-scope .ncs-chrome .ti-lightbox .source-Amazon .ti-inner .col-left, .ncs-scope .ncs-chrome .ti-lightbox .source-Amazon .ti-platform-icon { display:none !important }

.ncs-scope .ncs-chrome .ti-widget .source-Amazon .ti-enable-widget { padding-left:8px !important }

.ncs-scope .ncs-chrome .ti-widget .source-Amazon .ti-enable-widget:before { display:none !important }

.ncs-scope .ncs-chrome .ti-widget .source-Amazon.disable-widget { top:4px !important;right:4px !important }

.ncs-scope .ncs-chrome .ti-widget .ti-widget-header .ti-tab-item[data-source="Amazon"] .ti-platform-icon, .ncs-scope .ncs-chrome .ti-lightbox .ti-widget-header .ti-tab-item[data-source="Amazon"] .ti-platform-icon { display:none !important }

.ncs-scope .ncs-chrome .ti-widget .ti-widget-header .ti-tab-item[data-source="Amazon"] .ti-item-label { margin-right:0 !important }

.ncs-scope .ncs-chrome .ti-widget .ti-enable-widget .ti-platform-icon[alt="Amazon"], .ncs-scope .ncs-chrome .ti-widget .source-all .ti-platform-icon[alt="Amazon"], .ncs-scope .ncs-chrome .ti-widget .source-Trustindex .ti-platform-icon[alt="Amazon"], .ncs-scope .ncs-chrome .ti-lightbox .ti-enable-widget .ti-platform-icon[alt="Amazon"], .ncs-scope .ncs-chrome .ti-lightbox .source-all .ti-platform-icon[alt="Amazon"], .ncs-scope .ncs-chrome .ti-lightbox .source-Trustindex .ti-platform-icon[alt="Amazon"] { display:none !important }

.ncs-scope .ncs-chrome .ti-widget .source-Reco.ti-tab-item:before, .ncs-scope .ncs-chrome .ti-widget .source-Reco.ti-write-btn-dropdown-item:before, .ncs-scope .ncs-chrome .ti-widget .source-Reco .ti-review-header:after, .ncs-scope .ncs-chrome .ti-widget .source-Reco .ti-inner:after, .ncs-scope .ncs-chrome .ti-widget .source-Reco .ti-review-content:after, .ncs-scope .ncs-chrome .ti-widget .source-Reco .ti-platform-icon:after, .ncs-scope .ncs-chrome .ti-widget .source-Reco .ti-icon, .ncs-scope .ncs-chrome .ti-widget .source-Reco .ti-platform, .ncs-scope .ncs-chrome .ti-widget .source-Reco .ti-inner .col-left, .ncs-scope .ncs-chrome .ti-widget .source-Reco .ti-enable-widget:before, .ncs-scope .ncs-chrome .ti-widget .source-Reco .ti-platform-icon, .ncs-scope .ncs-chrome .ti-lightbox .source-Reco .ti-review-header:after, .ncs-scope .ncs-chrome .ti-lightbox .source-Reco .ti-inner:after, .ncs-scope .ncs-chrome .ti-lightbox .source-Reco .ti-review-content:after, .ncs-scope .ncs-chrome .ti-lightbox .source-Reco .ti-platform-icon:after, .ncs-scope .ncs-chrome .ti-lightbox .source-Reco .ti-inner .col-left, .ncs-scope .ncs-chrome .ti-lightbox .source-Reco .ti-platform-icon { display:none !important }

.ncs-scope .ncs-chrome .ti-widget .source-Reco .ti-enable-widget { padding-left:8px !important }

.ncs-scope .ncs-chrome .ti-widget .source-Reco .ti-enable-widget:before { display:none !important }

.ncs-scope .ncs-chrome .ti-widget .source-Reco.disable-widget { top:4px !important;right:4px !important }

.ncs-scope .ncs-chrome .ti-widget .ti-widget-header .ti-tab-item[data-source="Reco"] .ti-platform-icon, .ncs-scope .ncs-chrome .ti-lightbox .ti-widget-header .ti-tab-item[data-source="Reco"] .ti-platform-icon { display:none !important }

.ncs-scope .ncs-chrome .ti-widget .ti-widget-header .ti-tab-item[data-source="Reco"] .ti-item-label { margin-right:0 !important }

.ncs-scope .ncs-chrome .ti-widget .ti-enable-widget .ti-platform-icon[alt="Reco"], .ncs-scope .ncs-chrome .ti-widget .source-all .ti-platform-icon[alt="Reco"], .ncs-scope .ncs-chrome .ti-widget .source-Trustindex .ti-platform-icon[alt="Reco"], .ncs-scope .ncs-chrome .ti-lightbox .ti-enable-widget .ti-platform-icon[alt="Reco"], .ncs-scope .ncs-chrome .ti-lightbox .source-all .ti-platform-icon[alt="Reco"], .ncs-scope .ncs-chrome .ti-lightbox .source-Trustindex .ti-platform-icon[alt="Reco"] { display:none !important }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] { overflow:visible !important }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-review-item>.ti-inner, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-load-more-reviews-container .ti-load-more-reviews-button { border-top-width:0px !important;border-bottom-width:0px !important;border-left-width:0px !important;border-right-width:0px !important;background-color:#f4f4f4 !important;backdrop-filter:blur(0px) }

.ncs-scope .ncs-chrome .ti-review-item .ti-review-image { background-image:url("branding/0e555392c66b5f.gif");background-repeat:no-repeat;background-position:50% 50%;background-size:50px }

.ncs-scope .ncs-chrome .ti-review-item .ti-review-image.ti-image-loading img { opacity:0 !important }

.ncs-scope .ncs-chrome .ti-widget-lightbox .ti-review-item { background-color:#fff;position:relative;height:400px;flex-direction:row;border-radius:12px;display:flex;flex-direction:row;justify-content:flex-start;color:#000000;height:100% }

@media (max-width:1160px) {
.ncs-scope .ncs-chrome .ti-widget-lightbox .ti-review-item { border-radius:0 }
}

@media (max-width:767px) and (orientation:portrait) {
.ncs-scope .ncs-chrome .ti-widget-lightbox .ti-review-item { flex-direction:column;width:100%;height:100%;border-radius:0 }
}

.ncs-scope .ncs-chrome .ti-widget-lightbox .ti-review-item .ti-card-media { flex:1 1 auto;align-items:center;display:flex;height:100%;justify-content:center;width:100%;position:relative;background-color:#000000;overflow:hidden;padding-bottom:0px;border-top-left-radius:12px;border-bottom-left-radius:12px }

@media (max-width:767px) and (orientation:portrait) {
.ncs-scope .ncs-chrome .ti-widget-lightbox .ti-review-item .ti-card-media { flex:0 0 60%;width:100%;border-radius:0 }
}

.ncs-scope .ncs-chrome .ti-widget-lightbox .ti-review-item .ti-card-media img { width:100% !important;height:100% !important;max-width:100% !important;max-height:100% !important;object-fit:contain;position:absolute;display:block;border-radius:inherit !important;opacity:1;transition:opacity 300ms ease-in-out }

.ncs-scope .ncs-chrome .ti-widget-lightbox .ti-review-item .ti-card-media .ti-nav-arrow { max-width:100%;margin-left:0px;left:inherit;top:50%;margin-top:-10px;visibility:visible;opacity:1 }

.ncs-scope .ncs-chrome .ti-widget-lightbox .ti-card-body .ti-review-content, .ncs-scope .ncs-chrome .ti-widget-lightbox .ti-review-item .ti-review-content { flex:0 0 auto;height:100%;width:300px;overflow:hidden;padding:0px;display:flex;flex-direction:column;font-size:15px;color:#000000 }

@media (max-width:767px) and (orientation:portrait) {
.ncs-scope .ncs-chrome .ti-widget-lightbox .ti-card-body .ti-review-content, .ncs-scope .ncs-chrome .ti-widget-lightbox .ti-review-item .ti-review-content { flex:0 0 40%;width:100% }
}

.ncs-scope .ncs-chrome .ti-widget-lightbox .ti-card-body .ti-review-header, .ncs-scope .ncs-chrome .ti-widget-lightbox .ti-review-item .ti-review-header { position:relative;z-index:unset;padding:20px;display:flex;align-items:center;color:#000 }

.ncs-scope .ncs-chrome .ti-widget-lightbox .ti-card-body .ti-review-header .ti-platform-icon, .ncs-scope .ncs-chrome .ti-widget-lightbox .ti-review-item .ti-review-header .ti-platform-icon { width:20px !important;height:20px !important;position:absolute;right:16px;top:16px }

.ncs-scope .ncs-chrome .ti-widget-lightbox .ti-card-body .ti-review-header .ti-profile-img, .ncs-scope .ncs-chrome .ti-widget-lightbox .ti-review-item .ti-review-header .ti-profile-img { margin:0;margin-right:10px }

.ncs-scope .ncs-chrome .ti-widget-lightbox .ti-card-body .ti-review-header .ti-profile-img img, .ncs-scope .ncs-chrome .ti-widget-lightbox .ti-review-item .ti-review-header .ti-profile-img img { width:40px !important;height:40px !important;display:block;border-radius:30px !important;object-fit:cover;object-position:top }

.ncs-scope .ncs-chrome .ti-widget-lightbox .ti-card-body .ti-review-header .ti-profile-img .ti-profile-img-sprite, .ncs-scope .ncs-chrome .ti-widget-lightbox .ti-review-item .ti-review-header .ti-profile-img .ti-profile-img-sprite { display:inline-block;float:left;background:white;background-repeat:no-repeat;width:40px;height:40px;border-radius:30px }

.ncs-scope .ncs-chrome .ti-widget-lightbox .ti-card-body .ti-review-header .ti-profile-details, .ncs-scope .ncs-chrome .ti-widget-lightbox .ti-review-item .ti-review-header .ti-profile-details { -webkit-box-flex:1;-ms-flex:1;flex:1;white-space:nowrap;text-overflow:ellipsis;text-align:left;margin:0;display:flex;flex-direction:column;justify-content:center }

.ncs-scope .ncs-chrome .ti-widget-lightbox .ti-card-body .ti-review-header .ti-profile-details .ti-name, .ncs-scope .ncs-chrome .ti-widget-lightbox .ti-review-item .ti-review-header .ti-profile-details .ti-name { font-weight:600;font-size:inherit;overflow:hidden;padding-right:25px;white-space:nowrap;text-overflow:ellipsis;color:#000000;margin-bottom:2px }

.ncs-scope .ncs-chrome .ti-widget-lightbox .ti-card-body .ti-review-header .ti-profile-details .ti-date, .ncs-scope .ncs-chrome .ti-widget-lightbox .ti-review-item .ti-review-header .ti-profile-details .ti-date { color:#888;font-size:12px }

.ncs-scope .ncs-chrome .ti-widget-lightbox .ti-card-body .ti-stars, .ncs-scope .ncs-chrome .ti-widget-lightbox .ti-review-item .ti-stars { margin:0 20px;white-space:nowrap;display:block;line-height:0 }

.ncs-scope .ncs-chrome .ti-widget-lightbox .ti-card-body .ti-stars .ti-star, .ncs-scope .ncs-chrome .ti-widget-lightbox .ti-review-item .ti-stars .ti-star { width:17px !important;height:17px !important;display:inline-block;margin-right:1px !important;background-size:contain;background-repeat:no-repeat;vertical-align:unset }

.ncs-scope .ncs-chrome .ti-widget-lightbox .ti-card-body .ti-stars .ti-star:before, .ncs-scope .ncs-chrome .ti-widget-lightbox .ti-card-body .ti-stars .ti-star:after, .ncs-scope .ncs-chrome .ti-widget-lightbox .ti-review-item .ti-stars .ti-star:before, .ncs-scope .ncs-chrome .ti-widget-lightbox .ti-review-item .ti-stars .ti-star:after { content:none !important }

.ncs-scope .ncs-chrome .ti-widget-lightbox .ti-card-body .ti-stars .ti-ten-rating-score, .ncs-scope .ncs-chrome .ti-widget-lightbox .ti-review-item .ti-stars .ti-ten-rating-score { display:inline-block;font-weight:600;font-size:15px;color:#000000;margin-left:7px;height:100%;line-height:17px;vertical-align:top }

.ncs-scope .ncs-chrome .ti-widget-lightbox .ti-card-body .ti-stars .ti-verified-review .ti-verified-tooltip, .ncs-scope .ncs-chrome .ti-widget-lightbox .ti-review-item .ti-stars .ti-verified-review .ti-verified-tooltip { max-width:150px !important }

.ncs-scope .ncs-chrome .ti-widget-lightbox .ti-review-item .ti-polarity-icon { position:relative;text-indent:3px;display:inline-block;width:15px !important;height:15px !important;vertical-align:unset }

.ncs-scope .ncs-chrome .ti-widget-lightbox .ti-review-item .ti-recommendation { display:inline-block;height:15px;line-height:15px }

.ncs-scope .ncs-chrome .ti-widget-lightbox .ti-review-item .ti-recommendation .ti-recommendation-icon { position:relative;margin:0 5px !important;margin-bottom:-3px !important;text-indent:3px;display:inline-block;width:15px !important;height:15px !important;vertical-align:unset }

.ncs-scope .ncs-chrome .ti-widget-lightbox .ti-review-item .ti-recommendation .ti-recommendation-icon:first-child { margin-left:0 !important }

.ncs-scope .ncs-chrome .ti-widget-lightbox .ti-review-item .ti-recommendation .ti-recommendation-title { font-weight:600;font-size:13px !important;opacity:0.8;position:relative;top:-1px }

.ncs-scope .ncs-chrome .ti-widget-lightbox .ti-review-item .ti-recommendation+.ti-dummy-stars { display:none }

.ncs-scope .ncs-chrome .ti-widget-lightbox .ti-review-item .ti-review-text { flex:0 1 100%;font-size:inherit;padding:20px;padding-top:0;margin-top:10px;display:block;overflow-x:hidden;overflow:auto;color:#000000 }

.ncs-scope .ncs-chrome .ti-widget-lightbox .ti-review-item .ti-review-text .ti-show-original-text { color:inherit !important;text-decoration:underline !important }

.ncs-scope .ncs-chrome .ti-widget-lightbox .ti-review-item .ti-review-text .ti-reply-by-owner-title { font-weight:600 !important }

.ncs-scope .ncs-chrome .ti-widget-lightbox .ti-review-item .ti-review-text .ti-reply-by-owner-title:before { content:"↪ " }

.ncs-scope .ncs-chrome .ti-widget-lightbox.ti-long-scroll .ti-review-item { display:block;height:unset;width:100%;margin-bottom:16px;border-radius:12px !important;scroll-margin-top:12px }

.ncs-scope .ncs-chrome .ti-widget-lightbox.ti-long-scroll .ti-review-item:last-child { margin-bottom:0 }

.ncs-scope .ncs-chrome .ti-widget-lightbox.ti-long-scroll .ti-review-item .ti-review-header { padding-bottom:10px }

.ncs-scope .ncs-chrome .ti-widget-lightbox.ti-long-scroll .ti-review-item .ti-review-header .ti-platform-icon { right:20px;top:20px }

.ncs-scope .ncs-chrome .ti-widget-lightbox.ti-long-scroll .ti-review-item .ti-review-header .ti-name { margin-bottom:0 !important }

.ncs-scope .ncs-chrome .ti-widget-lightbox.ti-long-scroll .ti-review-item .ti-card-media { display:block;border-radius:0;height:unset;margin-top:20px;margin-bottom:10px;position:relative }

.ncs-scope .ncs-chrome .ti-widget-lightbox.ti-long-scroll .ti-review-item .ti-card-media .ti-card-media-images { display:flex;width:100%;flex-wrap:nowrap;overflow:hidden }

.ncs-scope .ncs-chrome .ti-widget-lightbox.ti-long-scroll .ti-review-item .ti-card-media .ti-card-media-image { width:100%;flex:0 0 auto;position:relative }

.ncs-scope .ncs-chrome .ti-widget-lightbox.ti-long-scroll .ti-review-item .ti-card-media .ti-card-media-image img { width:unset !important;height:unset !important;position:unset;margin:0 auto !important }

.ncs-scope .ncs-chrome .ti-widget-lightbox.ti-long-scroll .ti-review-item .ti-card-media .ti-hidden { display:none }

.ncs-scope .ncs-chrome .ti-widget-lightbox.ti-long-scroll .ti-review-item .ti-card-media .ti-card-media-thumbnails { display:block;width:calc(100% - 30px);padding:15px;overflow-x:scroll;scrollbar-width:none;-ms-overflow-style:none;position:absolute;left:0;bottom:0;background:rgba(0, 0, 0, 0.5) }

.ncs-scope .ncs-chrome .ti-widget-lightbox.ti-long-scroll .ti-review-item .ti-card-media .ti-card-media-thumbnails::-webkit-scrollbar { display:none }

.ncs-scope .ncs-chrome .ti-widget-lightbox.ti-long-scroll .ti-review-item .ti-card-media .ti-card-media-thumbnails .ti-card-media-thumbnails-inner { display:flex;justify-content:center;margin:0 -5px }

.ncs-scope .ncs-chrome .ti-widget-lightbox.ti-long-scroll .ti-review-item .ti-card-media .ti-card-media-thumbnails .ti-card-media-thumbnail { display:inline-block;width:50px;height:50px;border-radius:6px;margin:0 5px;position:relative;cursor:pointer }

.ncs-scope .ncs-chrome .ti-widget-lightbox.ti-long-scroll .ti-review-item .ti-card-media .ti-card-media-thumbnails .ti-card-media-thumbnail img { max-width:unset !important;max-height:unset !important;width:100% !important;height:100% !important;object-fit:cover;opacity:0.5;pointer-events:none }

.ncs-scope .ncs-chrome .ti-widget-lightbox.ti-long-scroll .ti-review-item .ti-card-media .ti-card-media-thumbnails .ti-card-media-thumbnail:hover img { opacity:1 }

.ncs-scope .ncs-chrome .ti-widget-lightbox.ti-long-scroll .ti-review-item .ti-card-media .ti-card-media-thumbnails .ti-card-media-thumbnail.ti-active { pointer-events:none }

.ncs-scope .ncs-chrome .ti-widget-lightbox.ti-long-scroll .ti-review-item .ti-card-media .ti-card-media-thumbnails .ti-card-media-thumbnail.ti-active img { opacity:1 }

@media (max-width:767px) {
.ncs-scope .ncs-chrome .ti-widget-lightbox.ti-long-scroll .ti-review-item .ti-card-media .ti-arrow-next, .ncs-scope .ncs-chrome .ti-widget-lightbox.ti-long-scroll .ti-review-item .ti-card-media .ti-arrow-prev { display:none }
}

.ncs-scope .ncs-chrome .ti-widget-lightbox.ti-long-scroll .ti-review-item .ti-review-text { margin-top:0;padding-top:10px;line-height:1.5 }

.ncs-scope .ncs-chrome .ti-widget-lightbox .ti-verified-review { display:inline-block;background:url("branding/75f97794b5918e.svg");background-size:contain;width:15px;height:15px;margin:0 !important;margin-left:7px !important;position:relative;z-index:2 }

.ncs-scope .ncs-chrome .ti-widget-lightbox .ti-verified-review:only-child { margin-left:0 !important }

.ncs-scope .ncs-chrome .ti-widget-lightbox .ti-verified-review.ti-color-green { background:url("branding/91b486cba6a17e.svg") }

.ncs-scope .ncs-chrome .ti-widget-lightbox .ti-verified-review.ti-color-black { background:url("branding/6c846e56082d15.svg") }

.ncs-scope .ncs-chrome .ti-widget-lightbox .ti-recommendation+.ti-verified-review { top:2px }

.ncs-scope .ncs-chrome .ti-widget-lightbox .ti-ten-rating-score+.ti-verified-review { top:-1px }

.ncs-scope .ncs-chrome .ti-widget-lightbox .ti-tooltip, .ncs-scope .ncs-chrome .ti-widget-lightbox .ti-verified-tooltip { color:white !important;background-color:black !important;text-align:left;padding:5px 10px;border-radius:6px;font-size:13px !important;font-weight:400;display:inline-block !important;position:absolute;top:-5px;white-space:nowrap;z-index:3;opacity:0;visibility:hidden;transition:opacity 0.3s ease-in-out;width:max-content;box-shadow:0 4px 12px rgba(0, 0, 0, 0.33);--ti-border-arrow-color: black;margin:unset;bottom:unset;left:unset;right:calc(100% + 10px);margin-right:30px }

.ncs-scope .ncs-chrome .ti-widget-lightbox .ti-tooltip:before, .ncs-scope .ncs-chrome .ti-widget-lightbox .ti-verified-tooltip:before { width:0;height:0;border-style:solid;content:"" !important;position:absolute;top:50%;margin-top:-7px }

.ncs-scope .ncs-chrome .ti-widget-lightbox .ti-tooltip:before, .ncs-scope .ncs-chrome .ti-widget-lightbox .ti-verified-tooltip:before { left:unset;right:-7px;border-width:7px 0 7px 7px;border-color:transparent transparent transparent var(--ti-border-arrow-color) }

.ncs-scope .ncs-chrome .ti-widget-lightbox .ti-with-tooltip, .ncs-scope .ncs-chrome .ti-widget-lightbox .ti-verified-review { position:relative;font-size:inherit }

.ncs-scope .ncs-chrome .ti-widget-lightbox .ti-with-tooltip:hover .ti-tooltip, .ncs-scope .ncs-chrome .ti-widget-lightbox .ti-with-tooltip:hover .ti-verified-tooltip, .ncs-scope .ncs-chrome .ti-widget-lightbox .ti-verified-review:hover .ti-tooltip, .ncs-scope .ncs-chrome .ti-widget-lightbox .ti-verified-review:hover .ti-verified-tooltip { opacity:1;margin:0;visibility:visible }

.ncs-scope .ncs-chrome .ti-widget-lightbox .ti-verified-tooltip { margin:unset;right:unset;left:calc(100% + 10px);margin-left:30px;margin:unset;bottom:unset;left:unset;right:calc(100% + 10px);margin-right:30px }

.ncs-scope .ncs-chrome .ti-widget-lightbox .ti-verified-tooltip:before { right:unset;left:-7px;border-width:7px 7px 7px 0;border-color:transparent var(--ti-border-arrow-color) transparent transparent }

.ncs-scope .ncs-chrome .ti-widget-lightbox .ti-verified-tooltip:before { left:unset;right:-7px;border-width:7px 0 7px 7px;border-color:transparent transparent transparent var(--ti-border-arrow-color) }

.ncs-scope .ncs-chrome .ti-widget-lightbox .ti-verified-platform .ti-verified-tooltip { width:175px;max-width:250px;white-space:normal;line-height:1.4 !important;top:-10px }

.ncs-scope .ncs-chrome .ti-widget-lightbox .ti-verified-platform .ti-verified-tooltip:before { top:18px }

.ncs-scope .ncs-chrome .ti-widget-lightbox .ti-date .ti-tooltip { margin:unset;top:unset;right:unset;left:calc(50% + 20px);transform:translateX(-50%);margin-bottom:30px;bottom:calc(100% + 10px) }

.ncs-scope .ncs-chrome .ti-widget-lightbox .ti-date .ti-tooltip:before { top:unset;right:unset;margin:unset;left:50%;margin-left:-25px;bottom:-7px;border-width:7px 7px 0 7px;border-color:var(--ti-border-arrow-color) transparent transparent transparent }

.ncs-scope .ncs-chrome .ti-widget-lightbox[data-set-id^="dark-"] .ti-tooltip, .ncs-scope .ncs-chrome .ti-widget-lightbox[data-set-id^="dark-"] .ti-verified-tooltip, .ncs-scope .ncs-chrome .ti-widget-lightbox[data-set-id="light-contrast"] .ti-tooltip, .ncs-scope .ncs-chrome .ti-widget-lightbox[data-set-id="light-contrast"] .ti-verified-tooltip { color:black !important;background-color:white !important;--ti-border-arrow-color: white }

.ncs-scope .ncs-chrome .ti-widget-lightbox[data-layout-id='37'][data-set-id='light-background'].ti-custom-stars [class*="source-"] .ti-star.e, .ncs-scope .ncs-chrome .ti-widget-lightbox[data-layout-id='37'][data-set-id='light-background'].ti-custom-stars [class*="source-"] .ti-star.f { background-image:none }

.ncs-scope .ncs-chrome .ti-widget-lightbox[data-layout-id='37'][data-set-id='light-background'].ti-custom-stars .ti-star { -webkit-mask-size:contain;mask-size:contain;-webkit-mask-position:center;mask-position:center;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;mask-image:url("branding/541150428721d9.svg");-webkit-mask-image:url("branding/541150428721d9.svg") }

.ncs-scope .ncs-chrome .ti-widget-lightbox[data-layout-id='37'][data-set-id='light-background'].ti-custom-stars .ti-star:not(.e):not(.h) { background:#f6bb06 }

.ncs-scope .ncs-chrome .ti-widget-lightbox[data-layout-id='37'][data-set-id='light-background'].ti-custom-stars .ti-star.h { background:#f6bb06;background:-webkit-linear-gradient(90deg, #f6bb06 50%, #cccccc 50%) !important;background:linear-gradient(90deg, #f6bb06 50%, #cccccc 50%) !important }

.ncs-scope .ncs-chrome .ti-widget-lightbox[data-layout-id='37'][data-set-id='light-background'].ti-custom-stars .ti-star.e { background:#ccc !important }

.ncs-scope .ncs-chrome .ti-widget-lightbox[data-layout-id='37'][data-set-id='light-background'] .ti-ai-summary-item .ti-review-content { -webkit-line-clamp:5;margin-top:16.25px;height:110.75px !important }

.ncs-scope .ncs-chrome .ti-widget-lightbox[data-layout-id='37'][data-set-id='light-background'] .ti-ai-summary-item .ti-review-content .ti-summary-list { margin-bottom:0;padding-left:0;list-style:none;font-size:inherit;pointer-events:none }

.ncs-scope .ncs-chrome .ti-widget-lightbox[data-layout-id='37'][data-set-id='light-background'] .ti-ai-summary-item .ti-review-content .ti-summary-list li { list-style:inherit;margin-bottom:0;padding-left:20px;position:relative;font-size:inherit }

.ncs-scope .ncs-chrome .ti-widget-lightbox[data-layout-id='37'][data-set-id='light-background'] .ti-ai-summary-item .ti-review-content .ti-summary-list li:last-child { margin-bottom:0 }

.ncs-scope .ncs-chrome .ti-widget-lightbox[data-layout-id='37'][data-set-id='light-background'] .ti-ai-summary-item .ti-review-content .ti-summary-list li:before { display:block;content:"";width:10px;height:5px;border-left:solid 2px #000000;border-bottom:solid 2px #000000;transform:rotate(-45deg);position:absolute;left:0;top:7.5px }

.ncs-scope .ncs-chrome .ti-widget-lightbox[data-layout-id='37'][data-set-id='light-background'] .ti-ai-summary-item .ti-profile-img { margin-right:13px !important }

.ncs-scope .ncs-chrome .ti-widget-lightbox[data-layout-id='37'][data-set-id='light-background'] .ti-ai-summary-item .ti-profile-img img:not(.ti-ai-profile-img) { display:inline-block;vertical-align:middle;border:2px solid #f4f4f4 }

.ncs-scope .ncs-chrome .ti-widget-lightbox[data-layout-id='37'][data-set-id='light-background'] .ti-ai-summary-item .ti-profile-img img:not(.ti-ai-profile-img):not(:first-child) { margin-left:-12px !important }

.ncs-scope .ncs-chrome .ti-widget-lightbox[data-layout-id='37'][data-set-id='light-background'] .ti-ai-summary-item .ti-profile-details .ti-name { padding-right:0 }

.ncs-scope .ncs-chrome .ti-widget-lightbox[data-layout-id='37'][data-set-id='light-background'] .ti-ai-summary-item .ti-profile-details .ti-date { overflow:hidden;text-overflow:ellipsis }

.ncs-scope .ncs-chrome .ti-widget-lightbox[data-layout-id='37'][data-set-id='light-background'] .ti-ai-summary-item>.ti-inner { background-color:#f4f4f4 !important;background-image:none }

.ncs-scope .ncs-chrome .ti-widget-lightbox[data-layout-id='37'][data-set-id='light-background'] .ti-ai-summary-item .ti-profile-img img:not(.ti-ai-profile-img) { border-color:#f4f4f4 }

.ncs-scope .ncs-chrome .ti-widget-lightbox[data-layout-id='37'][data-set-id='light-background'] .ti-ai-summary-item .ti-name, .ncs-scope .ncs-chrome .ti-widget-lightbox[data-layout-id='37'][data-set-id='light-background'] .ti-ai-summary-item .ti-date { color:#000000 }

.ncs-scope .ncs-chrome .ti-widget-lightbox[data-layout-id='37'][data-set-id='light-background'] .ti-ai-summary-item .ti-review-content { margin:unset;-webkit-line-clamp:unset;width:unset !important;height:unset !important }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-review-content, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-read-more { text-align:center }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-reviews-container-wrapper { padding-top:52px;padding-bottom:1px }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-no-profile-img .ti-reviews-container-wrapper { padding-top:8px }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-review-header { flex-wrap:wrap;flex-direction:column }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-review-header .ti-profile-img { margin:0 !important;margin-top:-52px !important;margin-bottom:15px !important;align-self:center }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-review-header .ti-profile-img img { width:64px !important;height:64px !important;border-radius:32px }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-review-header .ti-profile-details { text-align:center;width:100% }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-review-header .ti-profile-details .ti-name { padding-right:0px }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-review-item .ti-review-image-container { justify-content:center }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-profile-img .ti-profile-img-sprite { width:64px !important;height:64px !important;border-radius:32px }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background']:not(.ti-no-profile-img) .ti-review-header .ti-platform-icon { top:-15px;right:inherit;left:calc(50% + 32px - 27px);background-color:#ffffff;border-radius:50% !important;overflow:hidden;width:26px !important;height:26px !important;border:solid 2px #ffffff !important }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-stars { margin-bottom:10px !important;text-align:center !important;height:18px }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-stars .ti-star { width:18px !important;height:18px !important }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-stars .ti-verified-review { top:-1px;position:relative }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-footer-filter-text, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-verified-by-row { text-align:center !important;margin-left:0 !important;margin-right:0 !important }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-footer-filter-text+.ti-verified-by-row { margin-top:12px !important }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-verified-by-row .ti-disclaimer { right:unset  !important;left:50%  !important;transform:translateX(-50%)  !important }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-verified-by-row .ti-disclaimer:before, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-verified-by-row .ti-disclaimer:after { left:0  !important;right:0  !important }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-verified-by-row .ti-disclaimer:after { margin-right:auto  !important;right:2px  !important }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-ai-summary-item .ti-review-header:after { display:none }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-ai-summary-item .ti-review-content { margin-top:20.5px }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-content-align-left .ti-date .ti-tooltip, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-content-align-justify .ti-date .ti-tooltip { left:calc(50% + 75px) }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-content-align-left .ti-date .ti-tooltip:before, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-content-align-justify .ti-date .ti-tooltip:before { margin-left:-83px }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-content-align-right .ti-date .ti-tooltip { left:calc(50% - 75px) }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'].ti-content-align-right .ti-date .ti-tooltip:before { margin-left:83px }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-controls { display:none;margin-top:-12px;width:100%;position:absolute;height:0px;z-index:1;top:50% }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-controls .ti-next, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-controls .ti-prev { position:absolute;width:30px;height:30px;display:block;opacity:1;transition:all 200ms ease-out;background-color:#ffffff;outline-style:solid;outline-width:2px;outline-color:#F4F4F4;border-radius:15px }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-controls .ti-next:before, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-controls .ti-prev:before { transition:all 200ms ease-out;content:"";display:block;position:absolute;border-style:solid;border-width:0;border-bottom-width:2px;border-left-width:2px;border-color:#575757;width:10px;height:10px;top:50%;left:50% }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-controls .ti-next:hover, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-controls .ti-next:focus, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-controls .ti-prev:hover, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-controls .ti-prev:focus { cursor:pointer;background-color:#4d4d4d !important;outline-color:#424242 !important;box-shadow:0px 5px 25px 0px rgba(0, 0, 0, 0.05) }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-controls .ti-next:hover:before, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-controls .ti-next:focus:before, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-controls .ti-prev:hover:before, .ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-controls .ti-prev:focus:before { border-color:#fff !important }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-controls .ti-next { right:1px }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-controls .ti-next:before { transform:translate(-70%, -50%) rotate(-135deg) }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-controls .ti-prev { left:1px }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-controls .ti-prev:before { transform:translate(-30%, -50%) rotate(45deg) }

@media (min-width:1024px) {
.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-controls { display:block }
}

@media (max-width:479px) {
.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-controls { top:calc(50% - 19px) }
}

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-controls-line { display:none;margin:20px auto;width:150px;height:3px;border-radius:3px;background:rgba(87, 87, 87, 0.35);position:relative;overflow:hidden }

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-controls-line .dot { position:absolute;left:0;top:0;display:inline-block;width:25px;padding-left:4px;padding-right:4px;height:100%;border-radius:3px;background:#575757;transition:width 0.2s, left 0.2s }

@media (max-width:479px) {
.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-controls-line { display:block !important }
}

.ncs-scope .ncs-chrome .ti-widget[data-layout-id='37'][data-set-id='light-background'] .ti-controls { top:calc(50% + 32px - 9px) !important }

.ncs-scope .ncs-chrome h1, .ncs-scope .ncs-chrome h2, .ncs-scope .ncs-chrome h3, .ncs-scope .ncs-chrome hr, .ncs-scope .ncs-chrome iframe, .ncs-scope .ncs-chrome li, .ncs-scope .ncs-chrome p, .ncs-scope .ncs-chrome ul { margin:0;padding:0 }

.ncs-scope .ncs-chrome h1, .ncs-scope .ncs-chrome h2, .ncs-scope .ncs-chrome h3 { font-size:100%;font-weight:400 }

.ncs-scope .ncs-chrome ul { list-style:none }

.ncs-scope .ncs-chrome button { margin:0 }

.ncs-scope .ncs-chrome img { height:auto;max-width:100% }

.ncs-scope .ncs-chrome iframe { border:0 }

.ncs-scope .ncs-chrome { background-color: #fff; font-size: 16px; -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility }

.ncs-scope .ncs-chrome footer, .ncs-scope .ncs-chrome header { display:block }

.ncs-scope .ncs-chrome { font-family: Inter,Helvetica,Apple Color Emoji,Segoe UI Emoji,NotoColorEmoji,Noto Color Emoji,Segoe UI Symbol,Android Emoji,EmojiSymbols,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Noto Sans,sans-serif }

.ncs-scope .ncs-chrome button { font-family:Inter,Helvetica,Apple Color Emoji,Segoe UI Emoji,NotoColorEmoji,Noto Color Emoji,Segoe UI Symbol,Android Emoji,EmojiSymbols,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Noto Sans,sans-serif }

.ncs-scope .ncs-chrome { color: inherit; font-size: 1em; font-weight: 400; line-height: 24px }

.ncs-scope .ncs-chrome a { color:#6e79d6;cursor:pointer;text-decoration:none }

.ncs-scope .ncs-chrome a strong { color:currentColor }

.ncs-scope .ncs-chrome a:hover { color:#363636 }

.ncs-scope .ncs-chrome hr { background-color:#f5f5f5 }

.ncs-scope .ncs-chrome hr { border:none;display:block;height:2px;margin:1.5rem 0 }

.ncs-scope .ncs-chrome span { font-style:inherit;font-weight:inherit }

.ncs-scope .ncs-chrome strong { color:inherit;font-weight:700 }

@keyframes spinAround { 0%{transform:rotate(0deg)}to{transform:rotate(359deg)} }

.ncs-scope .ncs-chrome { --background:#fff;--background-opaque:hsla(0,0%,100%,.7);--background-highlight:#f0f3f9;--background-highlight-highlight:#e5eaf5;--background-highlight-transparent:hsla(0,0%,100%,.7);--background-button:#fff;--text:#000;--border-modal:#eff1f4;--shadow-modal:rgba(0,0,0,.09) 0px 3px 12px;--shadow-watermark:3px 3px 10px 3px rgba(56,28,100,.1);--shadow-navbar:0 0 20px rgba(0,0,0,.04);--shadow-preview:0px 4px 25px 3px rgba(0,0,0,.15);--accent:#5e5df0;--accent-highlight:#7f7ffc;--text-sharp:#282a30;--text-light:#6b6f76;--text-lighter:#929cad;--shadow-color-unicorn:#f18099;--shadow-color-nebula:#b664b0;--shadow-color-water:#67b7e5;--shadow-color-candy:#9d8eee;--shadow-color-melon:#5cd4ac;--shadow-color-orange:#fa9e34;--shadow-color-yellow:#f7cc5c;--shadow-color-green:#23cfa4;--shadow-color-blue:#06c1ff;--shadow-color-indigo:#6968f7;--shadow-color-purple:#8a24ff;--shadow-color-pink:#f54b94;--shadow-color-red:#f32e60;--shadow-color-black:#000;--shadow-color-white:rgba(0,0,0,.2);--shadow-color-accent:#6e79d6;--background-invert:#131415;--background-invert-highlight:#2d2f36;--text-invert:#d7d8db;--text-invert-sharp:#fff;--text-invert-light:#8a8f98 }

.ncs-scope .ncs-chrome [data-theme=dark] { --background:#131415;--background-opaque:rgba(19,20,21,.7);--background-highlight:#2c2c30;--background-highlight-highlight:#393941;--background-highlight-transparent:rgba(66,66,66,.7);--background-button:#1f2124;--text:#fff;--border-modal:#303236;--shadow-modal:rgba(0,0,0,.35) 0px 7px 32px 0px;--shadow-watermark:3px 3px 10px 3px rgba(0,0,0,.4);--shadow-navbar:0 0 20px rgba(0,0,0,.4);--shadow-preview:0px 4px 25px 3px hsla(0,0%,100%,.15);--accent:#8383ff;--accent-highlight:#8995ff;--text-sharp:#fff;--text-light:#8a8f98;--text-lighter:#757783;--shadow-color-unicorn:#000;--shadow-color-nebula:#000;--shadow-color-water:#000;--shadow-color-candy:#000;--shadow-color-melon:#000;--shadow-color-orange:#000;--shadow-color-yellow:#000;--shadow-color-green:#000;--shadow-color-blue:#000;--shadow-color-indigo:#000;--shadow-color-purple:#000;--shadow-color-pink:#000;--shadow-color-red:#000;--shadow-color-black:#000;--shadow-color-white:#000;--shadow-color-accent:#000;--background-invert:#fff;--background-invert-highlight:#f0f3f9;--text-invert:#3c4149;--text-invert-sharp:#000;--text-invert-light:#6b6f76 }

.ncs-scope .ncs-chrome, .ncs-scope .ncs-chrome { background-color: var(--background); font-family: Inter,Helvetica,Apple Color Emoji,Segoe UI Emoji,NotoColorEmoji,Noto Color Emoji,Segoe UI Symbol,Android Emoji,EmojiSymbols,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Noto Sans,sans-serif }

.ncs-scope .ncs-chrome ::-webkit-scrollbar-thumb { background-color: var(--background-highlight-highlight) }

.ncs-scope .ncs-chrome div::-webkit-scrollbar-thumb { background-color:var(--background-highlight-highlight);border:4px solid transparent;border-radius:8px;background-clip:padding-box }

.ncs-scope .ncs-chrome div::-webkit-scrollbar { width:16px }

.ncs-scope .ncs-chrome .typedream.content.td-navbar-item-dropdown-menu { background-color:transparent;cursor:default }

@media only screen and (max-width:1023px) {
.ncs-scope .ncs-chrome .typedream.content.td-navbar-item-dropdown-menu { height:0;overflow-y:hidden }
}

@media only screen and (max-width:1023px) {
.ncs-scope .ncs-chrome .td-navbar-item[data-state=open] .typedream.content.td-navbar-item-dropdown-menu { height:auto }
}

@media only screen and (min-width:1024px) {
.ncs-scope .ncs-chrome .typedream.content.td-navbar-item-dropdown-menu { position:absolute;left:50%;transform:translateX(-50%);top:60px;display:none;overflow:visible }
}

@media only screen and (min-width:1024px) {
.ncs-scope .ncs-chrome .td-navbar-item:hover .typedream.content.td-navbar-item-dropdown-menu { display:flex }
}

.ncs-scope .ncs-chrome .typedream.content { --background:#fff;--background-highlight:#f0f3f9;--background-highlight-highlight:#e5eaf5;--background-button:#fff;--background-modal:linear-gradient(136.61deg,#fff 13.72%,#fff 74.3%);--background-modal-highlight:#f8f9fb;--background-popup-overlay:hsla(217,6%,59%,.4);--shadow-modal-color:rgba(0,0,0,.09);--shadow-modal:rgba(0,0,0,.09) 0px 3px 12px;--shadow-modal-highlight:rgba(0,0,0,.6) 0px 3px 20px;--shadow-card:rgba(0,0,0,.12) 0px 10px 40px -10px;--shadow-card-highlight:rgba(0,0,0,.3) 0px 10px 40px -10px;--shadow-card-container:rgba(0,0,0,.2) 0px 30px 50px -10px;--shadow-navbar:0 0 20px rgba(0,0,0,.04);--highlight:rgba(0,0,0,.05);--highlight-highlight:rgba(0,0,0,.1);--highlight-3:rgba(0,0,0,.3);--border-modal:#eff1f4;--border-highlight:#e7eaee;--border-card:transparent;--text:#000;--side-background:#fff;--side-text:#3c4149;--text-sharp:#282a30;--text-light:#6b6f76;--text-lighter:#929cad;--accent:#6e79d6;--accent-light:#efeffe;--accent-transparent:rgba(113,124,225,.2);--accent-semi-transparent:rgba(113,124,225,.5);--accent-highlight:#717ce1;--text-on-accent:#fff;--background-input:#fff;--border-input:#dfe1e4;--border-input-focused:#2161dc;--background-invert:#131415;--background-invert-highlight:#2d2f36;--text-invert:#d7d8db;--text-invert-light:#8a8f98;--danger:var(--error-500);--danger-transparent:rgba(254,236,240,.3);--danger-background:var(--error-25);--green:#48c774;--dark-transparent:rgba(39,40,43,.6);--light-transparent:hsla(225,5%,85%,.6);--background-input-dark:#1f2023;--border-input-dark:#3c3f44;--border-input-focused-dark:#6499ff;--text-white:#d7d8db;--box-transition:opacity .3s,width .2s cubic-bezier(.175,.885,.32,1.275),height .2s cubic-bezier(.175,.885,.32,1.275),transform .2s cubic-bezier(.175,.885,.32,1.275);--background-light-theme:#fff;--text-light-theme:#000;--background-dark-theme:#131415;--text-dark-theme:#d7d8db;--shadow-color-unicorn:#f18099;--shadow-color-nebula:#b664b0;--shadow-color-water:#67b7e5;--shadow-color-candy:#9d8eee;--shadow-color-melon:#5cd4ac;--shadow-color-orange:#fa9e34;--shadow-color-yellow:#f7cc5c;--shadow-color-green:#23cfa4;--shadow-color-blue:#06c1ff;--shadow-color-indigo:#6968f7;--shadow-color-purple:#8a24ff;--shadow-color-pink:#f54b94;--shadow-color-red:#f32e60;--shadow-color-black:#000;--shadow-color-white:rgba(0,0,0,.2);--shadow-color-accent:#6e79d6;--neutral-25:#fff;--neutral-50:#fafafa;--neutral-100:#f5f5f5;--neutral-200:#ebebeb;--neutral-300:#e0e0e0;--neutral-400:#ccc;--neutral-500:#aaa;--neutral-600:grey;--neutral-700:#555;--neutral-800:#2a2a2a;--neutral-900:#000;--primary-25:#dfdffc;--primary-50:#c9c9fa;--primary-100:#aeaef7;--primary-200:#9493f4;--primary-300:#7978f2;--primary-400:#5e5def;--primary-500:#4e4ec7;--primary-600:#3f3e9f;--primary-700:#2f2f78;--primary-800:#1f1f50;--primary-900:#131330;--error-25:#fed5d5;--error-50:#fdbaba;--error-100:#fc9797;--error-200:#fb7474;--error-300:#fa5252;--error-400:#f92f2f;--error-500:#d02727;--error-600:#a61f1f;--error-700:#7d1818;--error-800:#531010;--error-900:#320909;--warning-25:#ffefd3;--warning-50:#fee5b5;--warning-100:#fed790;--warning-200:#feca6c;--warning-300:#fdbd47;--warning-400:#fdb022;--warning-500:#d3931c;--warning-600:#a97517;--warning-700:#7f5811;--warning-800:#543b0b;--warning-900:#332307;--success-25:#d0f1e1;--success-50:#d0f1e1;--success-100:#88dbb5;--success-200:#61cf9c;--success-300:#39c383;--success-400:#12b76a;--success-500:#0f9858;--success-600:#0c7a47;--success-700:#095c35;--success-800:#063d23;--success-900:#042515;--red-25:#fdd5df;--red-50:#fbb9ca;--red-100:#f997b0;--red-200:#f77495;--red-300:#f5517b;--red-400:#f32e60;--red-500:#ca2650;--red-600:#a21f40;--red-700:#7a1730;--red-800:#510f20;--red-900:#310913;--orange-25:#feecd6;--orange-50:#fddfbb;--orange-100:#fdce9a;--orange-200:#fcbe78;--orange-300:#fbae56;--orange-400:#fa9e34;--orange-500:#d0842b;--orange-600:#a76923;--orange-700:#7d4f1a;--orange-800:#533511;--orange-900:#32200a;--green-25:#d3f5ed;--green-50:#b6efe0;--green-100:#91e7d1;--green-200:#6cdfc2;--green-300:#48d7b2;--green-400:#23cfa3;--green-500:#1dac88;--green-600:#178a6d;--green-700:#116751;--green-800:#0c4536;--green-900:#042515;--blue-25:#ccf3ff;--blue-50:#abeaff;--blue-100:#80e0ff;--blue-200:#56d5ff;--blue-300:#2ccbff;--blue-300:#02c1ff;--blue-400:#02c1ff;--blue-500:#02a1d5;--blue-600:#0181aa;--blue-700:#016080;--blue-800:#014055;--blue-900:#002733;--indigo-25:#dfdffc;--indigo-50:#c9c9fa;--indigo-100:#aeaef7;--indigo-200:#9493f4;--indigo-300:#7978f2;--indigo-400:#5e5def;--indigo-500:#4e4ec7;--indigo-600:#3f3e9f;--indigo-700:#2f2f78;--indigo-800:#1f1f50;--indigo-900:#131330;--purple-25:#e8d3ff;--purple-50:#d8b6ff;--purple-100:#c492ff;--purple-200:#b16dfe;--purple-300:#9d49fe;--purple-400:#8a24fe;--purple-500:#731ed4;--purple-600:#5c18a9;--purple-700:#45127f;--purple-800:#2e0c55;--purple-900:#1c0733;--pink-25:#fddbea;--pink-50:#fbc3db;--pink-100:#faa4c9;--pink-200:#f886b8;--pink-300:#f66ba6;--pink-400:#f44a94;--pink-500:#cb3e7b;--pink-600:#a33163;--pink-700:#7a254a;--pink-800:#511931;--pink-900:#310f1e;--color-border:var(--neutral-400);--color-border-light:var(--neutral-300);--color-text-light:var(--neutral-800);--color-surface-raised:var(--neutral-25);--color-background-input:var(--neutral-25);--elevation-surface-raised:0px 0px 0px transparent,0px 1px 1px rgba(3,4,4,.5),0px 0px 1px rgba(3,4,4,.5) }

.ncs-scope .ncs-chrome [data-theme=dark] .typedream.content { --background:#131415;--background-highlight:#2c2c30;--background-highlight-highlight:#393941;--background-button:#1f2124;--background-modal:linear-gradient(136.61deg,#27282b 13.72%,#2d2e31 74.3%);--background-modal-highlight:#37373c;--background-popup-overlay:rgba(28,29,31,.5);--shadow-modal-color:rgba(0,0,0,.2);--shadow-modal:rgba(0,0,0,.35) 0px 7px 32px 0px;--shadow-modal-highlight:rgba(0,0,0,.6) 0px 7px 32px 0px;--shadow-navbar:0 0 20px rgba(0,0,0,.4);--highlight:hsla(0,0%,100%,.05);--highlight-highlight:hsla(0,0%,100%,.1);--highlight-3:hsla(0,0%,100%,.3);--border-modal:#303236;--border-card:#303236;--text:#fff;--side-background:#131415;--side-text:#d7d8db;--text-light:#8a8f98;--text-lighter:#757783;--text-sharp:#fff;--accent:#7381ff;--accent-light:#1d1e33;--accent-transparent:rgba(115,129,255,.2);--accent-semi-transparent:rgba(115,129,255,.5);--accent-highlight:#8995ff;--text-on-accent:#fff;--background-input:#1f2023;--border-input:#3c3f44;--border-input-focused:#6499ff;--background-invert:#fff;--background-invert-highlight:#f0f3f9;--text-invert:#3c4149;--text-invert-light:#6b6f76;--danger:var(--error-300);--danger-transparent:rgba(204,15,53,.3);--danger-background:var(--error-800);--shadow-color-unicorn:#000;--shadow-color-nebula:#000;--shadow-color-water:#000;--shadow-color-candy:#000;--shadow-color-melon:#000;--shadow-color-orange:#000;--shadow-color-yellow:#000;--shadow-color-green:#000;--shadow-color-blue:#000;--shadow-color-indigo:#000;--shadow-color-purple:#000;--shadow-color-pink:#000;--shadow-color-red:#000;--shadow-color-black:#000;--shadow-color-white:#000;--shadow-color-accent:#000;--neutral-900:#fff;--neutral-800:#ccc;--neutral-700:#646668;--neutral-600:#43474b;--neutral-500:#3e4246;--neutral-400:#35383b;--neutral-300:#35383b;--neutral-200:#303335;--neutral-100:#26282b;--neutral-50:#1d1e20;--neutral-25:#131415;--color-border:var(--neutral-600);--color-border-light:var(--neutral-500);--color-text-light:var(--neutral-800);--color-surface-raised:var(--neutral-400);--color-background-input:var(--neutral-200);--elevation-surface-raised:0px 0px 0px transparent,0px 1px 1px rgba(3,4,4,.5),0px 0px 1px rgba(3,4,4,.5) }

.ncs-scope .ncs-chrome .typedream.content { color:var(--text);font-family:Inter,Helvetica,Apple Color Emoji,Segoe UI Emoji,NotoColorEmoji,Noto Color Emoji,Segoe UI Symbol,Android Emoji,EmojiSymbols,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Noto Sans,sans-serif;font-size:16px;font-weight:400;font-style:normal;line-height:1.5;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:100%;-moz-text-size-adjust:100%;text-size-adjust:100%;box-sizing:border-box;margin:0;padding:0 }

.ncs-scope .ncs-chrome .typedream.content h4, .ncs-scope .ncs-chrome .typedream.content h5, .ncs-scope .ncs-chrome .typedream.content h6, .ncs-scope .ncs-chrome .typedream.content ol, .ncs-scope .ncs-chrome .typedream.content pre, .ncs-scope .ncs-chrome .typedream.content ul { margin:initial }

.ncs-scope .ncs-chrome .typedream.content h1, .ncs-scope .ncs-chrome .typedream.content h2, .ncs-scope .ncs-chrome .typedream.content h3, .ncs-scope .ncs-chrome .typedream.content h4, .ncs-scope .ncs-chrome .typedream.content h5, .ncs-scope .ncs-chrome .typedream.content h6 { line-height:normal }

.ncs-scope .ncs-chrome .typedream.content *, .ncs-scope .ncs-chrome .typedream.content :after, .ncs-scope .ncs-chrome .typedream.content :before { box-sizing:inherit }

.ncs-scope .ncs-chrome .typedream.content a { text-decoration:none;color:inherit }

@media only screen and (max-width:768px) {
.ncs-scope .ncs-chrome .typedream.content .mobile\:hidden:not([data-slate-editor] .mobile\:hidden) { display:none!important }
}

@media only screen and (min-width:769px) {
.ncs-scope .ncs-chrome .typedream.content .desktop\:hidden:not([data-slate-editor] .desktop\:hidden) { display:none!important }
}

.ncs-scope .ncs-chrome .typedream.content .animated-block-initial:not([data-slate-editor] .animated-block-initial) { opacity:0 }

.ncs-scope .ncs-chrome .typedream.content .animated-block-visible { animation-duration:1s;animation-fill-mode:forwards }

.ncs-scope .ncs-chrome .typedream.content .animated-block-visible.slide-in-up { animation-name:slide-in-up }

.ncs-scope .ncs-chrome .typedream.content .animated-block-visible.slide-in-down { animation-name:slide-in-down }

.ncs-scope .ncs-chrome .typedream.content .animated-block-visible.slide-in-left { animation-name:slide-in-left }

.ncs-scope .ncs-chrome .typedream.content .animated-block-visible.slide-in-right { animation-name:slide-in-right }

.ncs-scope .ncs-chrome .typedream.content .animated-block-visible.fade-in { animation-name:fade-in }

.ncs-scope .ncs-chrome .typedream.content .animated-block-visible.scale-in-grow { animation-name:scale-in-grow }

.ncs-scope .ncs-chrome .typedream.content .animated-block-visible.scale-in-shrink { animation-name:scale-in-shrink }

@keyframes fade-in { 0%{opacity:0}to{opacity:1} }

@keyframes slide-in-up { 0%{opacity:0;transform:translateY(100px)}20%{opacity:15%}40%{opacity:1;transform:translateY(-3px)}to{opacity:1;transform:translateY(0)} }

@keyframes slide-in-down { 0%{opacity:0;transform:translateY(-100px)}20%{opacity:15%}40%{opacity:1;transform:translateY(3px)}to{opacity:1;transform:translateY(0)} }

@keyframes slide-in-left { 0%{opacity:0;transform:translate(100px)}20%{opacity:15%}40%{opacity:1;transform:translate(-3px)}to{opacity:1;transform:translate(0)} }

@keyframes slide-in-right { 0%{opacity:0;transform:translate(-100px)}20%{opacity:15%}40%{opacity:1;transform:translate(3px)}to{opacity:1;transform:translate(0)} }

@keyframes scale-in-grow { 0%{opacity:0;transform:scale(.5)}20%{opacity:15%}40%{opacity:1;transform:scale(103%)}to{opacity:1;transform:scale(1)} }

@keyframes scale-in-shrink { 0%{opacity:0;transform:scale(1.5)}20%{opacity:15%}40%{opacity:1;transform:scale(97%)}to{opacity:1;transform:scale(1)} }

.ncs-scope .ncs-chrome .l4d89p0 { position:relative;all:unset;display:flex }

.ncs-scope .ncs-chrome [data-accordion-style=button] .l4d89p1 { display:inline;display:initial;transition:transform .3s cubic-bezier(.87,0,.13,1) }

.ncs-scope .ncs-chrome [data-accordion-style=button] [data-state=open]>.l4d89p1 { transform:rotate(-180deg) }

.ncs-scope .ncs-chrome .l4d89p2 { font-size:24px;color:#b1b5dc;display:none }

.ncs-scope .ncs-chrome [data-accordion-style=button] .l4d89p2, .ncs-scope .ncs-chrome [data-accordion-style=card] .l4d89p2 { margin-left:1rem }

.ncs-scope .ncs-chrome [data-accordion-style=plain] .l4d89p2 { margin-right:1rem }

.ncs-scope .ncs-chrome [data-accordion-style=card] .l4d89p4, .ncs-scope .ncs-chrome [data-accordion-style=card] [data-state=open]>.l4d89p3, .ncs-scope .ncs-chrome [data-accordion-style=plain] .l4d89p4, .ncs-scope .ncs-chrome [data-accordion-style=plain] [data-state=open]>.l4d89p3 { display:inline;display:initial }

.ncs-scope .ncs-chrome [data-accordion-style=card] [data-state=open]>.l4d89p4, .ncs-scope .ncs-chrome [data-accordion-style=plain] [data-state=open]>.l4d89p4 { display:none }

.ncs-scope .ncs-chrome .l4d89p5 { all:unset;background-color:transparent;padding:15px 30px;flex:1 1;display:flex;align-items:center }

.ncs-scope .ncs-chrome [data-accordion-style=button] .l4d89p5, .ncs-scope .ncs-chrome [data-accordion-style=card] .l4d89p5 { justify-content:space-between }

.ncs-scope .ncs-chrome [data-accordion-style=plain] .l4d89p5 { flex-direction:row-reverse;justify-content:left }

.ncs-scope .ncs-chrome ._11cr6ec0 { position:relative;isolation:isolate;overflow:hidden }

.ncs-scope .ncs-chrome ._11cr6ec0:not(:last-of-type) { margin-bottom:1rem }

.ncs-scope .ncs-chrome [data-accordion-style=button] ._11cr6ec0 { border-radius:43px;box-shadow:0 8px 38px #0000001a }

.ncs-scope .ncs-chrome [data-accordion-style=card] ._11cr6ec0 { border-radius:10px;box-shadow:0 8px 38px #0000001a }

.ncs-scope .ncs-chrome [data-accordion-style=plain] ._11cr6ec0 { border-radius:10px }

@keyframes num1mw0 { 0%{height:0}to{height:var(--radix-accordion-content-height)} }

@keyframes num1mw1 { 0%{height:var(--radix-accordion-content-height)}to{height:0} }

.ncs-scope .ncs-chrome .num1mw2 { position:relative;overflow:hidden }

.ncs-scope .ncs-chrome .num1mw2[data-state=open] { animation:num1mw0 .3s cubic-bezier(.87,0,.13,1) }

.ncs-scope .ncs-chrome .num1mw2[data-state=closed] { animation:num1mw1 .3s cubic-bezier(.87,0,.13,1) }

.ncs-scope .ncs-chrome ._1iqelwt0 { position:relative;display:flex;flex-direction:column }

.ncs-scope .ncs-chrome .typedream.content .yk4y7v0, .ncs-scope .ncs-chrome .yk4y7v0 { text-decoration:none;color:var(--accent) }

.ncs-scope .ncs-chrome ._1gp96k0 { display:block;flex-shrink:0;flex-grow:0;align-items:center;color:var(--text,inherit);font-weight:500;line-height:1.5;padding:.5rem .75rem;cursor:pointer;width:-moz-fit-content;width:fit-content;white-space:nowrap }

.ncs-scope .ncs-chrome ._1gp96k1 { display:flex;font-weight:700 }

.ncs-scope .ncs-chrome ._1gp96k2 { position:relative;padding:2px 5px;border-radius:5px;min-width:40px;min-height:45px;margin-right:5px;display:flex;align-items:center;justify-content:center }

@media only screen and (max-width:1023px) {
.ncs-scope .ncs-chrome ._1gp96k1 { flex-shrink:1;white-space:nowrap;overflow:hidden }
}

.ncs-scope .ncs-chrome .miq55g1 { flex-shrink:0;flex-grow:0;align-items:center }

.ncs-scope .ncs-chrome .miq55g1 { display:block;box-sizing:inherit;color:var(--text,inherit);font-weight:500;line-height:1.5;padding:.5rem .75rem;cursor:pointer }

.ncs-scope .ncs-chrome .miq55g2 { position:relative;display:flex;align-items:center }

.ncs-scope .ncs-chrome .miq55g2:hover { color:var(--text,inherit) }

.ncs-scope .ncs-chrome .miq55g3 { position:relative;padding:0 .5rem }

.ncs-scope .ncs-chrome .miq55g7 { cursor:pointer!important }

.ncs-scope .ncs-chrome .miq55g7 { padding:6px 20px;border-radius:999px;width:-moz-fit-content;width:fit-content;margin:10px 0;font-weight:700 }

@media screen and (min-width:1024px) {
.ncs-scope .ncs-chrome .miq55g1 { margin:0 .75em;padding:0 5px }
}

@media only screen and (min-width:1298px) {
.ncs-scope .ncs-chrome .miq55g3 { padding:0 .25rem }
}

.ncs-scope .ncs-chrome ._1buablx0 { position:relative;display:flex;flex-direction:column;align-items:center;justify-content:flex-start }

.ncs-scope .ncs-chrome ._1buablx0 { white-space:pre-wrap;overflow-wrap:break-word;overflow-x:hidden;min-height:100vh }

.ncs-scope .ncs-chrome ._1buablx5 { justify-content:flex-start }

.ncs-scope .ncs-chrome ._1j76um0 { position:relative;isolation:isolate;margin:var(--margin);padding:var(--padding);border-radius:var(--border-radius);box-shadow:var(--box-shadow) }

.ncs-scope .ncs-chrome ._1buablx0>._1j76um0, .ncs-scope .ncs-chrome .x1sja70>._1j76um0 { padding:var(--padding-root) }

.ncs-scope .ncs-chrome ._1j76umc { min-height:var(--min-height);width:100%;display:flex;flex-direction:row;align-items:stretch;position:relative;gap:var(--gap) }

.ncs-scope .ncs-chrome ._1j76umc, .ncs-scope .ncs-chrome ._1j76umc._1j76um5 { justify-content:flex-start }

.ncs-scope .ncs-chrome ._1j76umc._1j76um6 { justify-content:center }

.ncs-scope .ncs-chrome ._1j76umc._1j76um7 { justify-content:flex-end }

@media only screen and (max-width:768px) {
.ncs-scope .ncs-chrome ._1j76um0 { margin:var(--margin-mobile);padding:var(--padding-mobile) }
}

@media only screen and (max-width:768px) {
.ncs-scope .ncs-chrome ._1buablx0>._1j76um0, .ncs-scope .ncs-chrome .x1sja70>._1j76um0 { padding:var(--padding-root-mobile) }
}

@media only screen and (max-width:768px) {
.ncs-scope .ncs-chrome ._1j76umb:has(._1j76um7._1j76um4) { direction:rtl;overflow-x:auto }
}

@media only screen and (max-width:768px) {
.ncs-scope .ncs-chrome ._1j76umc { min-height:0;min-height:auto;height:auto }
}

@media only screen and (max-width:768px) {
.ncs-scope .ncs-chrome ._1j76umb>._1j76umc { flex-direction:row;align-items:stretch;gap:var(--gap-mobile) }
}

@media only screen and (max-width:768px) {
.ncs-scope .ncs-chrome ._1j76umb._1j76um2>._1j76umc { flex-direction:row-reverse }
}

@media only screen and (max-width:768px) {
.ncs-scope .ncs-chrome ._1j76um1>._1j76umc { gap:var(--gap-mobile-vertical);flex-direction:column;align-items:center;justify-content:center;min-height:0;min-height:auto }
}

@media only screen and (max-width:768px) {
.ncs-scope .ncs-chrome ._1j76um1._1j76um2>._1j76umc { flex-direction:column-reverse }
}

@media only screen and (max-width:768px) {
.ncs-scope .ncs-chrome ._1j76umb>._1j76umc._1j76um4, .ncs-scope .ncs-chrome ._1j76umb>._1j76umc._1j76um5:not(._1j76um3), .ncs-scope .ncs-chrome ._1j76umb>._1j76umc._1j76um6:not(._1j76um3) { scroll-snap-type:x mandatory;overflow-x:auto }
}

@media only screen and (max-width:768px) {
.ncs-scope .ncs-chrome ._1j76umb>._1j76umc._1j76um7:not(._1j76um3) { justify-content:flex-start;flex-direction:row-reverse;width:-moz-fit-content;width:fit-content }
}

.ncs-scope .ncs-chrome ._1fk5aj50 { position:relative;color:var(--text);background-color:var(--background);z-index:30 }

.ncs-scope .ncs-chrome ._1fk5aj52 { box-shadow:var(--shadow-navbar) }

.ncs-scope .ncs-chrome ._1fk5aj57 { display:flex;justify-content:space-between;align-items:stretch;flex-shrink:0;height:100%;font-size:20px }

.ncs-scope .ncs-chrome ._1fk5aj5a { color:inherit;cursor:pointer;display:flex;align-items:center;justify-content:center;position:relative;width:3.25rem;-webkit-appearance:none;-moz-appearance:none;appearance:none;background:none;border:none;font-family:inherit;font-size:1em;margin:0;padding:0 }

.ncs-scope .ncs-chrome ._1fk5aj5b { background-color:currentColor;display:block;height:1px;left:calc(50% - 8px);position:absolute;transform-origin:center;width:16px }

.ncs-scope .ncs-chrome ._1fk5aj5b:first-child { top:calc(50% - 6px) }

.ncs-scope .ncs-chrome ._1fk5aj5b:nth-child(2) { top:50% }

.ncs-scope .ncs-chrome ._1fk5aj5b:nth-child(3) { top:calc(50% + 6px) }

@media only screen and (max-width:1023px) {
.ncs-scope .ncs-chrome ._1fk5aj58, .ncs-scope .ncs-chrome ._1fk5aj59 { display:none }
}

@media only screen and (min-width:1024px) {
.ncs-scope .ncs-chrome ._1fk5aj50 { display:grid }
}

@media only screen and (min-width:1024px) {
.ncs-scope .ncs-chrome ._1fk5aj56 { grid-template-columns:auto 1fr auto }
}

@media only screen and (min-width:1024px) {
.ncs-scope .ncs-chrome ._1fk5aj58 { display:flex;margin-left:calc(1.5em - 15px);margin-right:calc(1.5em - 15px);background-color:transparent;background-color:initial }
}

@media only screen and (min-width:1024px) {
.ncs-scope .ncs-chrome ._1fk5aj56 ._1fk5aj58 { justify-content:flex-end }
}

@media only screen and (min-width:1024px) {
.ncs-scope .ncs-chrome ._1fk5aj55 ._1fk5aj58 { justify-content:flex-start }
}

@media only screen and (min-width:1024px) {
.ncs-scope .ncs-chrome ._1fk5aj54 ._1fk5aj58 { justify-content:center }
}

@media only screen and (min-width:1024px) {
.ncs-scope .ncs-chrome ._1fk5aj59 { display:flex;justify-content:flex-end }
}

@media only screen and (min-width:1024px) {
.ncs-scope .ncs-chrome ._1fk5aj5a { display:none }
}

@keyframes _1f6sjyw2 { 0%{background-position:100% 100%}to{background-position:0 0} }

.ncs-scope .ncs-chrome ._122mapi0 { position:relative;display:flex;direction:ltr;flex-direction:column;justify-content:center;align-items:flex-start;width:calc(var(--width) - (var(--width-float) * var(--gap-total-width)));scroll-snap-align:start;scroll-snap-stop:normal }

.ncs-scope .ncs-chrome ._1j76um8>._122mapi0 { justify-content:flex-start }

.ncs-scope .ncs-chrome ._1j76um9>._122mapi0 { justify-content:center }

.ncs-scope .ncs-chrome ._1j76uma>._122mapi0 { justify-content:flex-end }

.ncs-scope .ncs-chrome ._1j76um5>._122mapi0, .ncs-scope .ncs-chrome ._1j76um6>._122mapi0, .ncs-scope .ncs-chrome ._1j76um7>._122mapi0 { max-width:-moz-fit-content;max-width:fit-content }

@media only screen and (max-width:768px) {
.ncs-scope .ncs-chrome ._122mapi0 { width:calc(var(--width) - (var(--width-float) * var(--gap-mobile-total-width))) }
}

@media only screen and (max-width:768px) {
.ncs-scope .ncs-chrome ._1j76um1>div>._122mapi0 { width:100%;max-width:100% }
}

@media only screen and (max-width:768px) {
.ncs-scope .ncs-chrome ._1j76umb>._1j76um4>._122mapi0, .ncs-scope .ncs-chrome ._1j76umb>._1j76um5:not(._1j76um3)>._122mapi0, .ncs-scope .ncs-chrome ._1j76umb>._1j76um6:not(._1j76um3)>._122mapi0, .ncs-scope .ncs-chrome ._1j76umb>._1j76um7:not(._1j76um3)>._122mapi0 { max-width:calc((var(--width-float) * var(--column-width)) - (var(--width-float) * var(--gap-mobile-total-width)));width:-moz-fit-content;width:fit-content }
}

.ncs-scope .ncs-chrome ._1buablx0>._56g1z10 { padding-left:30px;padding-right:30px }

.ncs-scope .ncs-chrome ._122mapi0>._56g1z10 { width:100%;max-width:100% }

.ncs-scope .ncs-chrome ._1buablx0>._150gib10 { padding-left:30px;padding-right:30px }

.ncs-scope .ncs-chrome ._1bgwy4x0 { position:relative;width:var(--width);max-width:var(--max-width);display:flex;flex-direction:column;align-items:center;justify-content:center }

.ncs-scope .ncs-chrome ._1bgwy4x1 { align-items:flex-start }

.ncs-scope .ncs-chrome ._1bgwy4x2 { align-items:center }

.ncs-scope .ncs-chrome ._1bgwy4x4 { justify-content:flex-start }

.ncs-scope .ncs-chrome ._1bgwy4x5 { justify-content:center }

.ncs-scope .ncs-chrome ._122mapi0>._1bgwy4x7, .ncs-scope .ncs-chrome ._1iqelwt0>._1bgwy4x7 { width:100%;max-width:100%;flex:1 1 auto }

.ncs-scope .ncs-chrome ._122mapi0>._1bgwy4x7>._1bgwy4x8, .ncs-scope .ncs-chrome ._1iqelwt0>._1bgwy4x7>._1bgwy4x8 { width:100%;max-width:100%;flex:1 1 auto }

.ncs-scope .ncs-chrome ._1bgwy4x9 { min-height:var(--min-height);margin:var(--margin);padding:var(--padding);isolation:isolate;overflow:var(--overflow);aspect-ratio:var(--aspect-ratio);border-radius:var(--border-radius);box-shadow:var(--box-shadow) }

.ncs-scope .ncs-chrome ._1bgwy4x9.card { background-color:transparent;background-color:initial }

.ncs-scope .ncs-chrome ._122mapi0>._1bgwy4x7>._1bgwy4x8>._1bgwy4x9, .ncs-scope .ncs-chrome ._122mapi0>._1bgwy4x9 { min-height:0;min-height:auto }

.ncs-scope .ncs-chrome ._122mapi0>._1bgwy4x7>._1bgwy4x8>._1bgwy4x9, .ncs-scope .ncs-chrome ._122mapi0>._1bgwy4x9, .ncs-scope .ncs-chrome ._1iqelwt0>._1bgwy4x7>._1bgwy4x8>._1bgwy4x9, .ncs-scope .ncs-chrome ._1iqelwt0>._1bgwy4x9 { width:calc(100% - var(--margin-left) - var(--margin-right));max-width:calc(100% - var(--margin-left) - var(--margin-right));flex:1 1 auto }

.ncs-scope .ncs-chrome ._1bgwy4x9.card ._1bgwy4xb { border-radius:10px;overflow:hidden }

@media only screen and (max-width:768px) {
.ncs-scope .ncs-chrome ._1bgwy4x9:not(._1iqelwt0 ._1bgwy4x9) { min-height:0;min-height:auto;height:auto }
}

.ncs-scope .ncs-chrome ._1wmk2020 { position:relative;-webkit-user-select:none;-moz-user-select:none;user-select:none;width:100%;height:-moz-fit-content;height:fit-content;display:flex;flex-direction:column;align-items:center;justify-content:flex-start }

.ncs-scope .ncs-chrome ._1buablx0>._1wmk2020, .ncs-scope .ncs-chrome .x1sja70>._1wmk2020 { padding-left:30px;padding-right:30px }

.ncs-scope .ncs-chrome ._1bgwy4x9>._1wmk2020, .ncs-scope .ncs-chrome ._1j76um0>._1wmk2020 { padding-left:0;padding-right:0 }

.ncs-scope .ncs-chrome ._1wmk2022 { display:inline-block;vertical-align:middle;overflow:hidden;margin-left:.5rem }

.ncs-scope .ncs-chrome ._1wmk2026 { -webkit-user-select:none;-moz-user-select:none;user-select:none;display:flex;justify-content:center;align-items:center;margin-top:1.5rem;cursor:pointer;color:var(--accent) }

.ncs-scope .ncs-chrome ._1wmk2026 .loader.is-loading { margin-right:.25rem;border-bottom-color:var(--accent);border-left-color:var(--accent) }

.ncs-scope .ncs-chrome ._1wmk2027 { -webkit-user-select:none;-moz-user-select:none;user-select:none;display:grid;grid-gap:1rem;grid-template-columns:repeat(var(--grid-repeat),minmax(200px,1fr));align-content:center }

.ncs-scope .ncs-chrome ._1wmk2027 { width:100%;justify-content:flex-start }

@media only screen and (max-width:768px) {
.ncs-scope .ncs-chrome ._1wmk2027 { grid-template-columns:repeat(auto-fit,minmax(200px,1fr)) }
}

.ncs-scope .ncs-chrome ._1buablx0>._1qvs4rw0 { padding-left:30px;padding-right:30px }

.ncs-scope .ncs-chrome ._1buablx0>._2w3c4y0 { padding-left:30px;padding-right:30px }

.ncs-scope .ncs-chrome ._122mapi0>._2w3c4y0 { width:calc(100% - var(--margin-left) - var(--margin-right));max-width:calc(100% - var(--margin-left) - var(--margin-right)) }

.ncs-scope .ncs-chrome ._13oolbf0 { position:relative;border-radius:6px;width:var(--width);max-width:var(--max-width);margin:var(--margin) }

.ncs-scope .ncs-chrome ._1buablx0>._13oolbf0, .ncs-scope .ncs-chrome .x1sja70>._13oolbf0 { padding-left:30px;padding-right:30px }

.ncs-scope .ncs-chrome ._122mapi0>._13oolbf0 { width:calc(100% - var(--margin-left) - var(--margin-right));max-width:calc(100% - var(--margin-left) - var(--margin-right)) }

.ncs-scope .ncs-chrome [data-slate-editor] ._13oolbf0>div:not(:last-child) { margin-bottom:1rem }

.ncs-scope .ncs-chrome ._1buablx0>.a6t6nl0 { padding-left:30px;padding-right:30px }

.ncs-scope .ncs-chrome ._1bgwy4x9>.a6t6nl0, .ncs-scope .ncs-chrome ._1j76um0>.a6t6nl0 { padding-left:0;padding-right:0 }

@keyframes _1paom1lg { 0%{transform:translate(var(--start-position)) scaleX(1)}25%{transform:translate(var(--mid-top-position)) scaleX(var(--half-width))}35%{transform:translate(var(--end-position)) scaleX(1)}50%{transform:translate(var(--end-position)) rotate(180deg) scaleX(1)}75%{transform:translate(var(--mid-bottom-position)) rotate(180deg) scaleX(var(--half-width))}85%{transform:translate(var(--start-position)) rotate(180deg) scaleX(1)}to{transform:translate(var(--start-position)) rotate(1turn) scaleX(1)} }

@keyframes _1paom1lh { 0%{transform:translate(0)}25%{transform:translate(var(--end-position))}50%{transform:translate(var(--end-position)) rotate(180deg)}75%{transform:translate(0) rotate(180deg)}to{transform:translate(0) rotate(1turn)} }

@keyframes _1paom1li { 0%{transform:translate(0) scaleX(1)}33.33%{transform:translate(var(--button-width)) scaleX(var(--width-multiplier))}50%{transform:translate(var(--button-width)) rotate(180deg) scaleX(1)}83.33%{transform:translate(0) rotate(180deg) scaleX(var(--width-multiplier))}to{transform:translate(0) rotate(1turn) scaleX(1)} }

@keyframes _1paom1lj { 0%{transform:translate(2px)}50%{transform:rotate(180deg)}to{transform:rotate(1turn)} }

.ncs-scope .ncs-chrome ._1paom1l0 { position:relative;display:flex;justify-content:var(--horizontal-alignment);width:var(--width);max-width:var(--max-width);margin:var(--margin) }

.ncs-scope .ncs-chrome ._1buablx0>._1paom1l0, .ncs-scope .ncs-chrome .x1sja70>._1paom1l0 { padding-left:30px;padding-right:30px }

.ncs-scope .ncs-chrome ._122mapi0>._1paom1l0, .ncs-scope .ncs-chrome .num1mw2 ._1paom1l0 { width:calc(100% - var(--margin-left) - var(--margin-right));max-width:calc(100% - var(--margin-left) - var(--margin-right)) }

.ncs-scope .ncs-chrome ._1paom1l2 { background:var(--color-button-primary-background);box-shadow:var(--shadow-button-primary);border-radius:var(--radius-button-primary);border:var(--border-button-primary) }

.ncs-scope .ncs-chrome ._1paom1l4 { position:relative;padding:12px 20px;border-radius:var(--border-radius);width:-moz-fit-content;width:fit-content;margin:10px 0;display:flex;align-items:center;justify-content:center;border:none;font-family:inherit;font-size:inherit;line-height:inherit;background-color:transparent;background-color:initial;box-shadow:var(--box-shadow) }

.ncs-scope .ncs-chrome ._1buablx0 a ._1paom1l4, .ncs-scope .ncs-chrome ._1paom1l4[type=submit] { cursor:pointer }

.ncs-scope .ncs-chrome ._1buablx0>._154h9rv0 { padding-left:30px;padding-right:30px }

.ncs-scope .ncs-chrome .yk4y7v0:hover ._1untytp0 { text-decoration:underline }

.ncs-scope .ncs-chrome ._1untytp0 span:not(:empty), .ncs-scope .ncs-chrome ._1untytp0:not(:empty) { font-size:var(--font-size,inherit);line-height:var(--line-height,inherit) }

.ncs-scope .ncs-chrome ._1untytp0 span:empty:after, .ncs-scope .ncs-chrome ._1untytp0:empty:after { content:"\feff" }

.ncs-scope .ncs-chrome ._1untytp0 code { background-color:var(--background-highlight);color:var(--text-light);padding:.25em .5em;font-size:.875em }

@media only screen and (max-width:768px) {
.ncs-scope .ncs-chrome ._1untytp0 span:not(:empty), .ncs-scope .ncs-chrome ._1untytp0:not(:empty) { font-size:var(--mobile-font-size,inherit);line-height:var(--mobile-line-height,inherit) }
}

.ncs-scope .ncs-chrome ._1buablx0>._1s3yrvc0 { padding-left:30px;padding-right:30px }

.ncs-scope .ncs-chrome .ohgk4r0 { position:relative;color:inherit;margin:var(--margin);padding:var(--padding);width:var(--width);max-width:var(--max-width) }

.ncs-scope .ncs-chrome ._1buablx0>.ohgk4r0, .ncs-scope .ncs-chrome .x1sja70>.ohgk4r0 { padding:var(--padding-root) }

.ncs-scope .ncs-chrome ._122mapi0>.ohgk4r0, .ncs-scope .ncs-chrome .l4d89p0>button>.ohgk4r0 { width:calc(100% - var(--margin-left) - var(--margin-right));max-width:calc(100% - var(--margin-left) - var(--margin-right)) }

.ncs-scope .ncs-chrome h1.ohgk4r1 { font-size:56px;font-weight:800;letter-spacing:-2.5px }

.ncs-scope .ncs-chrome h3.ohgk4r3 { font-size:26px;font-weight:700;letter-spacing:-.5px }

@media only screen and (max-width:768px) {
.ncs-scope .ncs-chrome h1.ohgk4r1 { font-size:40px }
}

@media only screen and (max-width:768px) {
.ncs-scope .ncs-chrome h3.ohgk4r3 { font-size:23px }
}

.ncs-scope .ncs-chrome .c7sewk0 { position:relative;box-sizing:border-box;width:var(--width);max-width:var(--max-width);margin:var(--margin) }

.ncs-scope .ncs-chrome ._1buablx0>.c7sewk0, .ncs-scope .ncs-chrome .x1sja70>.c7sewk0 { padding-left:30px;padding-right:30px }

.ncs-scope .ncs-chrome ._122mapi0>.c7sewk0 { width:calc(100% - var(--margin-left) - var(--margin-right));max-width:calc(100% - var(--margin-left) - var(--margin-right)) }

.ncs-scope .ncs-chrome .c7sewk1 { border:none;margin:13px 0;background-color:var(--text-lighter)!important;height:1px!important;opacity:.3;width:100% }

.ncs-scope .ncs-chrome ._10w3u1b0 { width:100%;display:flex;margin:var(--margin) }

.ncs-scope .ncs-chrome ._1buablx0>._10w3u1b0, .ncs-scope .ncs-chrome .x1sja70>._10w3u1b0 { max-width:var(--max-width) }

.ncs-scope .ncs-chrome ._122mapi0>._10w3u1b0 { width:calc(100% - var(--margin-left) - var(--margin-right));max-width:calc(var(--max-width) - var(--margin-left) - var(--margin-right)) }

.ncs-scope .ncs-chrome ._10w3u1b1 { position:relative;width:var(--width);aspect-ratio:var(--aspect-ratio);max-width:100%;border-radius:var(--border-radius);box-shadow:var(--box-shadow) }

.ncs-scope .ncs-chrome ._10w3u1b2 { display:block;-o-object-fit:contain;object-fit:contain;width:100%;height:100% }

.ncs-scope .ncs-chrome ._10w3u1b4 { transition:all .3s;max-width:100% }

.ncs-scope .ncs-chrome ._10w3u1b4:hover { margin-top:-10px;margin-bottom:10px }

.ncs-scope .ncs-chrome ._1h3aayo0 { position:relative;-webkit-user-select:none;-moz-user-select:none;user-select:none;display:flex;flex-direction:row;align-items:stretch;white-space:normal;margin:var(--margin) }

.ncs-scope .ncs-chrome ._122mapi0>._1h3aayo0 { width:calc(100% - var(--margin-left) - var(--margin-right))!important;max-width:calc(100% - var(--margin-left) - var(--margin-right))!important }

.ncs-scope .ncs-chrome ._1h3aayo0>* { width:100%;flex:1 1 }

.ncs-scope .ncs-chrome ._1h3aayo0>iframe { position:absolute;left:0;top:0;border:0 }

.ncs-scope .ncs-chrome ._1h3aayo0 iframe { width:100%;height:100% }

.ncs-scope .ncs-chrome ._122mapi0>.uay4480 { width:100%;max-width:100% }

.ncs-scope .ncs-chrome ._1buablx0>.uay4480 { padding-inline-start:54px }

.ncs-scope .ncs-chrome ._1vo7q450 { position:relative;color:inherit;margin:var(--margin);padding:var(--padding);width:var(--width);max-width:var(--max-width) }

.ncs-scope .ncs-chrome ._1buablx0>._1vo7q450, .ncs-scope .ncs-chrome .x1sja70>._1vo7q450 { padding:var(--padding-root) }

.ncs-scope .ncs-chrome ._122mapi0>._1vo7q450, .ncs-scope .ncs-chrome .l4d89p0>button>._1vo7q450, .ncs-scope .ncs-chrome .num1mw3 ._1vo7q450 { width:calc(100% - var(--margin-left) - var(--margin-right));max-width:calc(100% - var(--margin-left) - var(--margin-right)) }

.ncs-scope .ncs-chrome .r2ud8k0 { position:relative;margin:var(--margin) }

.ncs-scope .ncs-chrome ._122mapi0>.r2ud8k0 { width:calc(100% - var(--margin-left) - var(--margin-right))!important;max-width:calc(100% - var(--margin-left) - var(--margin-right))!important }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 100;
  src: url("branding/c428ca13a1cc99.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 100;
  src: url("branding/ec7f5af97c9d10.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 100;
  src: url("branding/085cd7907a4366.woff2") format('woff2');
  unicode-range: U+1F00-1FFF; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 100;
  src: url("branding/4609148e1a78e1.woff2") format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 100;
  src: url("branding/1f53bf00fe0a85.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 100;
  src: url("branding/367ba69ac0a2c9.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 100;
  src: url("branding/bec94a4daf0632.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 200;
  src: url("branding/c428ca13a1cc99.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 200;
  src: url("branding/ec7f5af97c9d10.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 200;
  src: url("branding/085cd7907a4366.woff2") format('woff2');
  unicode-range: U+1F00-1FFF; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 200;
  src: url("branding/4609148e1a78e1.woff2") format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 200;
  src: url("branding/1f53bf00fe0a85.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 200;
  src: url("branding/367ba69ac0a2c9.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 200;
  src: url("branding/bec94a4daf0632.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  src: url("branding/c428ca13a1cc99.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  src: url("branding/ec7f5af97c9d10.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  src: url("branding/085cd7907a4366.woff2") format('woff2');
  unicode-range: U+1F00-1FFF; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  src: url("branding/4609148e1a78e1.woff2") format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  src: url("branding/1f53bf00fe0a85.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  src: url("branding/367ba69ac0a2c9.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  src: url("branding/bec94a4daf0632.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url("branding/c428ca13a1cc99.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url("branding/ec7f5af97c9d10.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url("branding/085cd7907a4366.woff2") format('woff2');
  unicode-range: U+1F00-1FFF; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url("branding/4609148e1a78e1.woff2") format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url("branding/1f53bf00fe0a85.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url("branding/367ba69ac0a2c9.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url("branding/bec94a4daf0632.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  src: url("branding/c428ca13a1cc99.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  src: url("branding/ec7f5af97c9d10.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  src: url("branding/085cd7907a4366.woff2") format('woff2');
  unicode-range: U+1F00-1FFF; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  src: url("branding/4609148e1a78e1.woff2") format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  src: url("branding/1f53bf00fe0a85.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  src: url("branding/367ba69ac0a2c9.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  src: url("branding/bec94a4daf0632.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src: url("branding/c428ca13a1cc99.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src: url("branding/ec7f5af97c9d10.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src: url("branding/085cd7907a4366.woff2") format('woff2');
  unicode-range: U+1F00-1FFF; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src: url("branding/4609148e1a78e1.woff2") format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src: url("branding/1f53bf00fe0a85.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src: url("branding/367ba69ac0a2c9.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src: url("branding/bec94a4daf0632.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: url("branding/c428ca13a1cc99.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: url("branding/ec7f5af97c9d10.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: url("branding/085cd7907a4366.woff2") format('woff2');
  unicode-range: U+1F00-1FFF; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: url("branding/4609148e1a78e1.woff2") format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: url("branding/1f53bf00fe0a85.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: url("branding/367ba69ac0a2c9.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: url("branding/bec94a4daf0632.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  src: url("branding/c428ca13a1cc99.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  src: url("branding/ec7f5af97c9d10.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  src: url("branding/085cd7907a4366.woff2") format('woff2');
  unicode-range: U+1F00-1FFF; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  src: url("branding/4609148e1a78e1.woff2") format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  src: url("branding/1f53bf00fe0a85.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  src: url("branding/367ba69ac0a2c9.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  src: url("branding/bec94a4daf0632.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  src: url("branding/c428ca13a1cc99.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  src: url("branding/ec7f5af97c9d10.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  src: url("branding/085cd7907a4366.woff2") format('woff2');
  unicode-range: U+1F00-1FFF; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  src: url("branding/4609148e1a78e1.woff2") format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  src: url("branding/1f53bf00fe0a85.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  src: url("branding/367ba69ac0a2c9.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }

@font-face { font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  src: url("branding/bec94a4daf0632.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }

.ncs-scope .ncs-chrome [data-ncs-dropdown-panel][hidden],
.ncs-scope #ncs-dropdown-overlay-root [data-ncs-dropdown-panel][hidden],
.ncs-scope .ncs-chrome [data-ncs-dropdown-panel][aria-hidden="true"],
.ncs-scope #ncs-dropdown-overlay-root [data-ncs-dropdown-panel][aria-hidden="true"] { display: none !important; }
.ncs-scope .ncs-chrome [data-ncs-dropdown-panel][data-ncs-open="true"],
.ncs-scope #ncs-dropdown-overlay-root [data-ncs-dropdown-panel][data-ncs-open="true"] { display: block !important; }
.ncs-scope .ncs-chrome [data-ncs-dropdown] { position: relative; }
.ncs-scope .ncs-chrome button { border-width: 0; border-style: solid; border-color: transparent; }
.ncs-scope .ncs-chrome .ncs-synth-dropdown-panel { position: absolute; top: calc(100% + 8px); left: 0; min-width: 220px; max-width: min(84vw, 360px); padding: 10px; border-radius: 12px; border: 1px solid rgba(15, 23, 42, 0.12); background: #ffffff; box-shadow: 0 14px 32px rgba(15, 23, 42, 0.16); z-index: 1200; display: grid; gap: 4px; }
.ncs-scope #ncs-dropdown-overlay-root .ncs-synth-dropdown-panel { position: fixed; min-width: 220px; max-width: min(84vw, 360px); padding: 10px; border-radius: 12px; border: 1px solid rgba(15, 23, 42, 0.12); background: #ffffff; box-shadow: 0 14px 32px rgba(15, 23, 42, 0.16); z-index: 2147483000; display: grid; gap: 4px; }
.ncs-scope .ncs-chrome .ncs-synth-dropdown-panel a[role="menuitem"],
.ncs-scope #ncs-dropdown-overlay-root .ncs-synth-dropdown-panel a[role="menuitem"] { display: block; padding: 8px 10px; border-radius: 8px; text-decoration: none; color: inherit; font: inherit; line-height: 1.35; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ncs-scope .ncs-chrome .ncs-synth-dropdown-panel a[role="menuitem"]:hover,
.ncs-scope .ncs-chrome .ncs-synth-dropdown-panel a[role="menuitem"]:focus,
.ncs-scope #ncs-dropdown-overlay-root .ncs-synth-dropdown-panel a[role="menuitem"]:hover,
.ncs-scope #ncs-dropdown-overlay-root .ncs-synth-dropdown-panel a[role="menuitem"]:focus { background: rgba(15, 23, 42, 0.06); outline: none; }
.ncs-scope .ncs-chrome .ncs-synth-dropdown-panel[data-ncs-chrome-theme="dark"],
.ncs-scope #ncs-dropdown-overlay-root .ncs-synth-dropdown-panel[data-ncs-chrome-theme="dark"] { border-color: rgba(148, 163, 184, 0.18); background: rgba(15, 23, 42, 0.96); box-shadow: 0 18px 40px rgba(2, 6, 23, 0.48); color: rgb(226, 232, 240); }
.ncs-scope .ncs-chrome .ncs-synth-dropdown-panel[data-ncs-chrome-theme="dark"] a[role="menuitem"]:hover,
.ncs-scope .ncs-chrome .ncs-synth-dropdown-panel[data-ncs-chrome-theme="dark"] a[role="menuitem"]:focus,
.ncs-scope #ncs-dropdown-overlay-root .ncs-synth-dropdown-panel[data-ncs-chrome-theme="dark"] a[role="menuitem"]:hover,
.ncs-scope #ncs-dropdown-overlay-root .ncs-synth-dropdown-panel[data-ncs-chrome-theme="dark"] a[role="menuitem"]:focus { background: rgba(148, 163, 184, 0.12); outline: none; }
.ncs-scope .ncs-container.ncs-static-region-shell {
  max-width: 1200px !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.ncs-scope .ncs-content-container.ncs-static-content-container {
  width: 100% !important;
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.ncs-scope .ncs-content-container.ncs-static-content-container.ncs-static-content-container--landing-header,
.ncs-scope .ncs-content-container.ncs-static-content-container.ncs-static-content-container--article-header {
  padding-top: 60px !important;
  padding-right: 0px !important;
  padding-bottom: 60px !important;
  padding-left: 0px !important;
}

.ncs-scope .ncs-content-container.ncs-static-content-container.ncs-static-content-container--landing-grid {
  padding-top: 60px !important;
  padding-right: 0px !important;
  padding-bottom: 60px !important;
  padding-left: 0px !important;
}

.ncs-scope .ncs-content-container.ncs-static-content-container.ncs-static-content-container--article-body {
  padding-top: 60px !important;
  padding-right: 0px !important;
  padding-bottom: 60px !important;
  padding-left: 0px !important;
}

@media (min-width: 640px) and (max-width: 1023px) {
  .ncs-scope .ncs-content-container.ncs-static-content-container.ncs-static-content-container--landing-header,
.ncs-scope .ncs-content-container.ncs-static-content-container.ncs-static-content-container--article-header {
  padding-top: 60px !important;
  padding-right: 0px !important;
  padding-bottom: 60px !important;
  padding-left: 0px !important;
}

.ncs-scope .ncs-content-container.ncs-static-content-container.ncs-static-content-container--landing-grid {
  padding-top: 60px !important;
  padding-right: 0px !important;
  padding-bottom: 60px !important;
  padding-left: 0px !important;
}

.ncs-scope .ncs-content-container.ncs-static-content-container.ncs-static-content-container--article-body {
  padding-top: 60px !important;
  padding-right: 0px !important;
  padding-bottom: 60px !important;
  padding-left: 0px !important;
}
}

@media (max-width: 639px) {
  .ncs-scope .ncs-content-container.ncs-static-content-container.ncs-static-content-container--landing-header,
.ncs-scope .ncs-content-container.ncs-static-content-container.ncs-static-content-container--article-header {
  padding-top: 60px !important;
  padding-right: 0px !important;
  padding-bottom: 60px !important;
  padding-left: 0px !important;
}

.ncs-scope .ncs-content-container.ncs-static-content-container.ncs-static-content-container--landing-grid {
  padding-top: 60px !important;
  padding-right: 0px !important;
  padding-bottom: 60px !important;
  padding-left: 0px !important;
}

.ncs-scope .ncs-content-container.ncs-static-content-container.ncs-static-content-container--article-body {
  padding-top: 60px !important;
  padding-right: 0px !important;
  padding-bottom: 60px !important;
  padding-left: 0px !important;
}
}

.ncs-scope .ncs-card-title {
  text-transform: none !important;
}