:root {
  --bg-dark: #f0ece4;
  --bg-panel: #2d1b6b;
  --bg-subpanel: #392777;
  --border-color: #453383;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-gray: #334155;
  --accent-gold: #f5c518;
  --accent-hover: #e1b104;
  --accent-red: rgba(177, 22, 29, 0.45);
}
* {
  box-sizing: border-box;
}
html, body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-gray);
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: hidden;
}
.content-sticky-header-wrapper {
  position: sticky;
  top: -1px;
  z-index: 100;
}
.head-section {
  background-color: var(--bg-panel);
  border-bottom: 1px solid var(--border-color);
  padding: 14px 24px;
}
.navigation-box {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.custom-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.site-emblem {
  max-height: 40px;
  height: 40px;
  width: auto;
  display: block;
}
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 16px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.mobile-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: all 0.2s;
}
.portal-nav {
  display: flex;
  gap: 24px;
}
.portal-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: color 0.15s;
  padding: 4px 0;
}
.portal-nav a:hover,
.portal-nav a.brand-active {
  color: var(--text-main);
}
.portal-nav a.brand-active {
  border-bottom: 2px solid var(--accent-gold);
}
.btn-group-auth {
  display: flex;
  gap: 12px;
  align-items: center;
}
.btn-user-enter {
  color: #ffffff;
  border: 1.5px solid #3b4b66;
  background: transparent;
  padding: 8px 22px;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  font-size: 13px;
  transition: border-color 0.15s, color 0.15s;
  text-transform: uppercase;
}
.btn-user-enter:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}
.signup-button {
  color: #ffffff;
  background-color: var(--accent-gold);
  border: 1.5px solid var(--accent-gold);
  padding: 8px 22px;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  font-size: 13px;
  transition: background-color 0.15s, border-color 0.15s;
  text-transform: uppercase;
}
.signup-button:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
}
.local-mobile-controls-row {
  display: none;
}
.phone-submenu-bar {
  display: none;
}
.top-promotion {
  position: relative;
  padding: 40px 24px;
  background-color: #0c0201; 
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  aspect-ratio: auto;
  min-height: 320px;
  display: flex;
  align-items: center;
}
.top-promotion::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}
.promo-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}
.promo-badge {
  display: inline-block;
  padding: 5px 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  font-size: 10px;
  font-weight: 800;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
  letter-spacing: 0.8px;
  margin-bottom: 20px;
}
.main-offer-title {
  font-size: 40px;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
  max-width: 680px;
}
.main-hero-offer-label {
  font-size: 34px;
  font-weight: 800;
  color: #ffffff;
  display: inline-block;
  margin-bottom: 4px;
}
.layout-hero-offer-value {
  color: var(--accent-gold);
  text-transform: uppercase;
}
.banner-desc {
  font-size: 15px;
  color: var(--text-gray);
  max-width: 520px;
  line-height: 1.6;
  margin: 0 0 28px;
}
.btn-claim-now {
  display: inline-block;
  color: #ffffff;
  background-color: var(--accent-gold);
  padding: 14px 38px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  transition: transform 0.2s, background-color 0.15s;
}
.btn-claim-now:hover {
  transform: translateY(-2px);
  background-color: var(--accent-hover);
}
.slots-wrapper {
  padding: 24px 24px;
  background-color: var(--bg-dark);
}
.view-section-container {
  max-width: 1240px;
  margin: 0 auto;
}
.public-slots-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 8px 16px;
  margin-bottom: 24px;
}
.brand-slots-toolbar-left {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none; 
}
.brand-slots-toolbar-left::-webkit-scrollbar {
  display: none; 
}
.main-toolbar-btn {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 6px;
  transition: all 0.2s;
  white-space: nowrap;
}
.main-toolbar-btn:hover {
  color: var(--accent-gold);
}
.main-toolbar-btn.brand-active {
  background-color: var(--border-color);
  color: var(--text-main);
}
.site-slots-toolbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.global-toolbar-dropdown {
  color: var(--text-main);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background-color: var(--bg-subpanel);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  transition: all 0.2s;
}
.global-toolbar-dropdown:hover {
  border-color: var(--accent-gold);
}
.global-toolbar-dropdown .app-caret {
  font-size: 10px;
  color: var(--accent-gold);
}
.site-toolbar-search {
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background-color: var(--bg-subpanel);
  border: 1px solid var(--border-color);
  transition: all 0.2s;
}
.site-toolbar-search:hover {
  border-color: var(--accent-gold);
}
@media (max-width: 768px) {
  .public-slots-toolbar {
    padding: 8px;
  }
  .site-slots-toolbar-right {
    display: none; 
  }
}
.slots-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
}
.game-panel {
  display: flex;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
}
.page-slot-img-wrapper {
  aspect-ratio: 2/3;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1.5px solid var(--border-color);
  transition: transform 0.2s, border-color 0.2s;
}
.game-panel:hover .page-slot-img-wrapper {
  transform: translateY(-4px);
  border-color: var(--accent-gold);
}
.brand-slot-char {
  font-size: 44px;
  user-select: none;
}
.brand-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 12, 22, 0.45);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.2s;
}
.game-panel:hover .brand-play-overlay {
  opacity: 1;
}
.theme-play-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
  background: rgba(7, 12, 22, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
}
.ui-slot-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-gray);
  text-align: center;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.shell-load-more-wrapper {
  margin-top: 32px;
  text-align: center;
}
.btn-view-more {
  display: inline-block;
  color: #ffffff;
  background-color: transparent;
  border: 1.5px solid var(--accent-gold);
  padding: 16px 60px;
  min-width: 280px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  transition: all 0.2s;
}
.btn-view-more:hover {
  background-color: var(--accent-gold);
  color: #ffffff;
}
.article-inner {
  max-width: 1240px;
  margin: 12px auto 60px;
  padding: 0 24px;
}
.article-inner h1,
.article-inner h2,
.article-inner h3 {
  color: var(--accent-gold);
  text-transform: uppercase;
  font-weight: 800;
  margin-top: 36px;
  margin-bottom: 16px;
}
.article-inner h1 {
  font-size: 26px;
  border-bottom: 2.5px solid var(--border-color);
  padding-bottom: 12px;
  margin-bottom: 28px;
  margin-top: 20px;
}
.article-inner h2 {
  font-size: 19px;
}
.article-inner h3 {
  font-size: 15px;
}
.article-inner p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-gray);
  margin: 0 0 18px;
}
.article-inner ul,
.article-inner ol {
  margin: 0 0 20px;
  padding: 0;
}
.article-inner ul {
  list-style: none;
}
.article-inner ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-gray);
}
.article-inner ul li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-gold);
  box-shadow: 0 0 6px var(--accent-gold);
}
.article-inner ol {
  list-style: none;
  counter-reset: custom-ol-counter;
}
.article-inner ol li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-gray);
  counter-increment: custom-ol-counter;
}
.article-inner ol li::before {
  content: counter(custom-ol-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-gold);
  font-weight: 700;
}
.article-inner li strong {
  color: var(--text-main);
}
.article-inner table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 32px 0;
  background-color: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}
.article-inner th,
.article-inner td {
  padding: 12px 16px;
  text-align: left;
  font-size: 13px;
  border-bottom: 1px solid var(--border-color);
}
.article-inner th {
  background-color: var(--bg-subpanel);
  color: var(--accent-gold);
  text-transform: uppercase;
  font-weight: 700;
  border-bottom: 2px solid var(--border-color);
}
.article-inner tr:last-child td {
  border-bottom: 0;
}
.article-inner td:first-child {
  color: var(--text-main);
  font-weight: 600;
  width: 32%;
}
.article-inner td:last-child {
  color: var(--text-gray);
}
.public-faq-item {
  background-color: var(--bg-subpanel);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.2s;
}
.web-faq-summary {
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  user-select: none;
}
.web-faq-summary::-webkit-details-marker {
  display: none;
}
.theme-faq-icon::after {
  content: "+";
  color: #4da6ff;
  font-size: 20px;
  font-weight: 800;
}
.public-faq-item[open] .theme-faq-icon::after {
  content: "−";
}
.public-faq-item[open] .web-faq-summary {
  background-color: var(--bg-subpanel);
}
.web-faq-content {
  padding: 0 20px 20px 20px;
  background-color: var(--bg-subpanel);
}
.web-faq-content p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-gray);
}
.web-faq-content p:last-child {
  margin-bottom: 0;
}
.bottom-menu-bar {
  background-color: var(--bg-panel);
  padding: 48px 24px 24px;
  border-top: 1px solid var(--border-color);
  font-size: 13px;
  color: var(--text-gray);
}
.footer-grid-layout {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1.5fr 1.5fr;
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto 40px;
}
.brand-footer-col {
  display: flex;
  flex-direction: column;
}
.footer-caption {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 13px;
  margin: 0;
}
.brand-footer-heading {
  color: var(--text-main);
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 20px;
}
.footer-navigation-links, .layout-footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-navigation-links li, .layout-footer-contact li {
  margin-bottom: 12px;
}
.footer-navigation-links a, .layout-footer-contact a {
  color: var(--text-gray);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-navigation-links a:hover, .layout-footer-contact a:hover {
  color: var(--accent-gold);
}
.layout-footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.portal-contact-icon {
  color: var(--accent-gold);
  display: flex;
}
.global-footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
  font-size: 12px;
  color: var(--text-muted);
  max-width: 1240px;
  margin: 0 auto;
}
.global-footer-bottom p {
  margin: 0;
}
@media (max-width: 768px) {
  html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: clip;
    -webkit-text-size-adjust: 100%;
  }
  .navigation-box {
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: nowrap;
    gap: 12px;
  }
  .head-section {
    padding: 12px 12px;
  }
  .custom-header-left {
    width: auto;
    justify-content: flex-start;
    position: static;
    gap: 0;
    order: 1;
    min-width: 0;
    flex-shrink: 1;
  }
  .mobile-toggle {
    display: flex;
    position: static;
    transform: none;
    order: 3;
    flex-shrink: 0;
  }
  .portal-nav {
    display: none;
  }
  .btn-group-auth {
    display: flex;
    align-items: center;
    gap: 10px;
    order: 2;
    flex-shrink: 0;
    margin-left: auto;
  }
  .btn-group-auth .btn-user-enter,
  .btn-group-auth .signup-button {
    padding: 7px 12px;
    font-size: 12px;
    border-radius: 4px;
  }
  .custom-header-left .theme-logo-link {
    order: 1;
    display: flex;
    align-items: center;
    min-width: 0;
    flex-shrink: 1;
  }
  .site-emblem {
    max-width: 100%;
    height: 32px;
    max-height: 32px;
    object-fit: contain;
  }
  @media (max-width: 380px) {
    .head-section {
      padding: 10px 10px;
    }
    .btn-group-auth {
      gap: 4px;
    }
    .btn-group-auth .btn-user-enter,
    .btn-group-auth .signup-button {
      padding: 5px 8px;
      font-size: 11px;
      border-radius: 4px;
    }
    .site-emblem {
      height: 32px;
      max-height: 32px;
    }
    .mobile-toggle {
      width: 18px;
      height: 14px;
    }
  }
  .local-mobile-controls-row {
    display: none;
  }
  .web-btn-login-mobile {
    display: block;
    text-align: center;
    color: var(--text-main);
    border: 1.5px solid #3b4b66;
    background: transparent;
    padding: 10px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
  }
  .local-btn-start-mobile {
    display: block;
    text-align: center;
    color: #ffffff;
    background-color: var(--accent-gold);
    border: 1.5px solid var(--accent-gold);
    padding: 10px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
  }
  .phone-submenu-bar {
    display: flex;
    justify-content: flex-start;
    gap: 14px;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
    background-color: var(--bg-subpanel);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 12px;
    margin-top: -1px;
  }
  .phone-submenu-bar::-webkit-scrollbar {
    display: none;
  }
  .phone-submenu-bar a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .phone-submenu-bar a .global-icon {
    font-size: 11px;
    color: var(--accent-gold);
  }
  .top-promotion {
    padding: 50px 16px;
    min-height: auto;
    text-align: center;
    background-position: center center;
    background-size: cover;
    aspect-ratio: auto;
  }
  .top-promotion::before {
    background: rgba(0, 0, 0, 0.6);
  }
  .promo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .main-offer-title {
    font-size: 28px;
    margin-bottom: 12px;
  }
  .main-hero-offer-label {
    font-size: 20px;
    margin-bottom: 2px;
  }
  .banner-desc {
    font-size: 13px;
    margin: 0 auto 20px;
  }
  .btn-claim-now {
    padding: 12px 30px;
    font-size: 13px;
    width: 100%;
    max-width: 280px;
  }
  .slots-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .slots-row > .game-panel:nth-child(3n+1):last-child {
    display: none;
  }
  .slots-row > .game-panel:nth-child(3n+1):nth-last-child(2),
  .slots-row > .game-panel:nth-child(3n+1):nth-last-child(2) ~ .game-panel {
    display: none;
  }
  .brand-slot-char {
    font-size: 24px;
  }
  .article-inner h1 {
    font-size: 20px;
    margin-top: 10px;
  }
  .article-inner h2 {
    font-size: 16px;
  }
  .article-inner table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .article-inner th, 
  .article-inner td {
    padding: 8px 10px;
    font-size: 12px;
    white-space: nowrap;
  }
  .bottom-menu-bar {
    padding: 32px 16px 20px;
  }
  .footer-grid-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
  }
  .app-footer-brand {
    text-align: left;
    align-items: flex-start;
  }
  .app-footer-brand img {
    max-width: 110px;
  }
  .article-inner p,
  .article-inner ul li,
  .article-inner ol li,
  .web-faq-summary,
  .web-faq-content p {
    font-size: 14px;
  }
}
:root { --cta-text-color: #ffffff; }


/* High contrast text overrides for dark panels on light background */
.site-action-header, .site-action-header *, .portal-alert-dialog, .portal-alert-dialog *, .shell-app-footer, .shell-app-footer *, .site-app-header, .site-app-header *, .web-backdrop-overlay, .web-backdrop-overlay *, .local-banner-box, .local-banner-box *, .portal-banner-content, .portal-banner-content *, .public-banner-inner, .public-banner-inner *, .content-bonus-header, .content-bonus-header *, .core-bottom-bar, .core-bottom-bar *, .site-bottom-footer, .site-bottom-footer *, .global-bottom-menu-bar, .global-bottom-menu-bar *, .custom-brand-bar, .custom-brand-bar *, .app-brand-footer, .app-brand-footer *, .content-brand-hero, .content-brand-hero *, .layout-brand-wrapper, .layout-brand-wrapper *, .content-branding-container, .content-branding-container *, .public-branding-header, .public-branding-header *, .main-curtain-overlay, .main-curtain-overlay *, .site-curtain-shadow, .site-curtain-shadow *, .page-date-status-bar, .page-date-status-bar *, .layout-dialog-backdrop, .layout-dialog-backdrop *, .app-dialog-box, .app-dialog-box *, .core-dialog-card, .core-dialog-card *, .custom-dialog-dimmer, .custom-dialog-dimmer *, .primary-dialog-panel, .primary-dialog-panel *, .primary-dialog-shell, .primary-dialog-shell *, .primary-dialog-wrapper, .primary-dialog-wrapper *, .brand-dimmer-screen, .brand-dimmer-screen *, .web-faq-content, .web-faq-content *, .public-faq-item, .public-faq-item *, .web-faq-summary, .web-faq-summary *, .shell-feature-frame, .shell-feature-frame *, .web-first-view, .web-first-view *, .shell-foot-section, .shell-foot-section *, .view-footer, .view-footer *, .web-footer-area, .web-footer-area *, .global-footer-area-container, .global-footer-area-container *, .local-footer-base, .local-footer-base *, .content-footer-block, .content-footer-block *, .public-footer-body, .public-footer-body *, .layout-footer-bottom-container, .layout-footer-bottom-container *, .screen-footer-box, .screen-footer-box *, .core-footer-box-container, .core-footer-box-container *, .footer-box, .footer-box *, .portal-footer-container-root, .portal-footer-container-root *, .site-footer-content, .site-footer-content *, .ui-footer-content-wrap, .ui-footer-content-wrap *, .main-footer-flex, .main-footer-flex *, .public-footer-grid-container, .public-footer-grid-container *, .view-footer-holder, .view-footer-holder *, .app-footer-holder-wrap, .app-footer-holder-wrap *, .local-footer-inner, .local-footer-inner *, .layout-footer-inner-wrapper, .layout-footer-inner-wrapper *, .global-footer-layout-box, .global-footer-layout-box *, .page-footer-main-box, .page-footer-main-box *, .content-footer-navigation, .content-footer-navigation *, .content-footer-panel, .content-footer-panel *, .public-footer-row, .public-footer-row *, .core-footer-section, .core-footer-section *, .ui-footer-shell, .ui-footer-shell *, .main-footer-shell-container, .main-footer-shell-container *, .local-footer-wrap, .local-footer-wrap *, .screen-footer-wrap-box, .screen-footer-wrap-box *, .brand-footer-wrapper, .brand-footer-wrapper *, .brand-gateway-banner, .brand-gateway-banner *, .theme-glassmorphism-bg, .theme-glassmorphism-bg *, .custom-global-footer, .custom-global-footer *, .core-global-header, .core-global-header *, .ui-head-section, .ui-head-section *, .web-head-wrapper, .web-head-wrapper *, .local-header, .local-header *, .public-header-area, .public-header-area *, .navigation-box, .navigation-box *, .brand-header-content, .brand-header-content *, .primary-header-flex, .primary-header-flex *, .main-header-holder, .main-header-holder *, .public-header-inner, .public-header-inner *, .view-header-navigation, .view-header-navigation *, .public-header-shell, .public-header-shell *, .theme-header-wrap, .theme-header-wrap *, .portal-headline-panel, .portal-headline-panel *, .view-hero-box, .view-hero-box *, .content-hero-card, .content-hero-card *, .promo-wrapper, .promo-wrapper *, .screen-hero-content, .screen-hero-content *, .core-hero-grid, .core-hero-grid *, .content-hero-holder, .content-hero-holder *, .layout-hero-inner, .layout-hero-inner *, .screen-hero-panel, .screen-hero-panel *, .top-promotion, .top-promotion *, .web-hero-shell, .web-hero-shell *, .global-hero-wrapper, .global-hero-wrapper *, .ui-info-card, .ui-info-card *, .custom-info-modal, .custom-info-modal *, .public-intro-block, .public-intro-block *, .theme-intro-container, .theme-intro-container *, .view-intro-wrapper, .view-intro-wrapper *, .page-last-modified-panel, .page-last-modified-panel *, .main-latest-update-box, .main-latest-update-box *, .theme-lead-banner, .theme-lead-banner *, .shell-lightbox-box, .shell-lightbox-box *, .global-lightbox-card, .global-lightbox-card *, .global-lightbox-overlay, .global-lightbox-overlay *, .ui-lobby-intro, .ui-lobby-intro *, .custom-lower-panel, .custom-lower-panel *, .content-main-footer, .content-main-footer *, .content-main-header, .content-main-header *, .public-main-showcase, .public-main-showcase *, .custom-menu-container, .custom-menu-container *, .shell-menu-header, .shell-menu-header *, .ui-modal-box, .ui-modal-box *, .public-modal-card, .public-modal-card *, .theme-modal-container, .theme-modal-container *, .content-modal-curtain, .content-modal-curtain *, .global-modal-dimmer, .global-modal-dimmer *, .layout-modal-frame, .layout-modal-frame *, .page-modal-panel, .page-modal-panel *, .site-modal-shadow, .site-modal-shadow *, .ui-modal-wrapper-bg, .ui-modal-wrapper-bg *, .content-modified-date, .content-modified-date *, .local-nav-header, .local-nav-header *, .custom-nav-inner, .custom-nav-inner *, .local-nav-wrap, .local-nav-wrap *, .public-navbar-box, .public-navbar-box *, .public-navbar-container, .public-navbar-container *, .layout-navbar-inner, .layout-navbar-inner *, .layout-navigation-box, .layout-navigation-box *, .site-overlay-backdrop, .site-overlay-backdrop *, .shell-overlay-curtain, .shell-overlay-curtain *, .view-overlay-shield, .view-overlay-shield *, .core-page-freshness, .core-page-freshness *, .public-phone-submenu-bar, .public-phone-submenu-bar *, .core-popup-card, .core-popup-card *, .site-popup-dimmer, .site-popup-dimmer *, .global-popup-frame, .global-popup-frame *, .view-popup-shadow, .view-popup-shadow *, .public-popup-window, .public-popup-window *, .screen-popup-wrapper, .screen-popup-wrapper *, .portal-portal-header, .portal-portal-header *, .shell-portal-intro, .shell-portal-intro *, .theme-primary-header, .theme-primary-header *, .global-prime-header, .global-prime-header *, .content-promo-banner, .content-promo-banner *, .site-promo-container, .site-promo-container *, .site-promo-content, .site-promo-content *, .ui-promo-hero, .ui-promo-hero *, .layout-promo-popup, .layout-promo-popup *, .app-promo-wrapper, .app-promo-wrapper *, .content-refresh-stamp, .content-refresh-stamp *, .public-revision-tag, .public-revision-tag *, .local-screen-overlay, .local-screen-overlay *, .primary-shading-overlay, .primary-shading-overlay *, .view-shadow-backdrop, .view-shadow-backdrop *, .bottom-menu-bar, .bottom-menu-bar *, .head-section, .head-section *, .global-site-info-footer, .global-site-info-footer *, .local-site-navigation, .local-site-navigation *, .public-slots-toolbar, .public-slots-toolbar *, .content-sticky-header-wrapper, .content-sticky-header-wrapper *, .global-system-footer, .global-system-footer *, .layout-system-header, .layout-system-header *, .screen-timestamp-marker, .screen-timestamp-marker *, .ui-top-bar, .ui-top-bar *, .shell-top-bar-container, .shell-top-bar-container *, .theme-top-box, .theme-top-box *, .primary-top-grid, .primary-top-grid *, .core-top-menu-bar, .core-top-menu-bar *, .main-top-nav-bar, .main-top-nav-bar *, .custom-top-panel, .custom-top-panel *, .content-top-promotion, .content-top-promotion *, .layout-top-row, .layout-top-row *, .page-top-wrapper, .page-top-wrapper *, .main-update-indicator, .main-update-indicator *, .custom-update-notify, .custom-update-notify *, .layout-update-ribbon, .layout-update-ribbon *, .portal-updated-info, .portal-updated-info *, .theme-upper-nav, .theme-upper-nav *, .site-welcome-area, .site-welcome-area *, .core-welcome-billboard, .core-welcome-billboard *, .web-welcome-box, .web-welcome-box *, .global-welcome-content, .global-welcome-content *, .public-welcome-holder, .public-welcome-holder *, .brand-welcome-stage, .brand-welcome-stage *, .theme-welcome-wrapper, .theme-welcome-wrapper *, header, header *, footer, footer *, table, table *, th, th *, td, td *, .article-inner table, .article-inner table *, .web-article-wrapper table, .web-article-wrapper table *, .custom-article-holder table, .custom-article-holder table * {
  --text-main: #ffffff !important;
  --text-gray: #cbd5e1 !important;
  --text-muted: #8e9aa8 !important;
}
.site-action-header, .site-action-header p, .site-action-header span, .site-action-header li, .site-action-header td, .site-action-header th, .site-action-header strong, .portal-alert-dialog, .portal-alert-dialog p, .portal-alert-dialog span, .portal-alert-dialog li, .portal-alert-dialog td, .portal-alert-dialog th, .portal-alert-dialog strong, .shell-app-footer, .shell-app-footer p, .shell-app-footer span, .shell-app-footer li, .shell-app-footer td, .shell-app-footer th, .shell-app-footer strong, .site-app-header, .site-app-header p, .site-app-header span, .site-app-header li, .site-app-header td, .site-app-header th, .site-app-header strong, .web-backdrop-overlay, .web-backdrop-overlay p, .web-backdrop-overlay span, .web-backdrop-overlay li, .web-backdrop-overlay td, .web-backdrop-overlay th, .web-backdrop-overlay strong, .local-banner-box, .local-banner-box p, .local-banner-box span, .local-banner-box li, .local-banner-box td, .local-banner-box th, .local-banner-box strong, .portal-banner-content, .portal-banner-content p, .portal-banner-content span, .portal-banner-content li, .portal-banner-content td, .portal-banner-content th, .portal-banner-content strong, .public-banner-inner, .public-banner-inner p, .public-banner-inner span, .public-banner-inner li, .public-banner-inner td, .public-banner-inner th, .public-banner-inner strong, .content-bonus-header, .content-bonus-header p, .content-bonus-header span, .content-bonus-header li, .content-bonus-header td, .content-bonus-header th, .content-bonus-header strong, .core-bottom-bar, .core-bottom-bar p, .core-bottom-bar span, .core-bottom-bar li, .core-bottom-bar td, .core-bottom-bar th, .core-bottom-bar strong, .site-bottom-footer, .site-bottom-footer p, .site-bottom-footer span, .site-bottom-footer li, .site-bottom-footer td, .site-bottom-footer th, .site-bottom-footer strong, .global-bottom-menu-bar, .global-bottom-menu-bar p, .global-bottom-menu-bar span, .global-bottom-menu-bar li, .global-bottom-menu-bar td, .global-bottom-menu-bar th, .global-bottom-menu-bar strong, .custom-brand-bar, .custom-brand-bar p, .custom-brand-bar span, .custom-brand-bar li, .custom-brand-bar td, .custom-brand-bar th, .custom-brand-bar strong, .app-brand-footer, .app-brand-footer p, .app-brand-footer span, .app-brand-footer li, .app-brand-footer td, .app-brand-footer th, .app-brand-footer strong, .content-brand-hero, .content-brand-hero p, .content-brand-hero span, .content-brand-hero li, .content-brand-hero td, .content-brand-hero th, .content-brand-hero strong, .layout-brand-wrapper, .layout-brand-wrapper p, .layout-brand-wrapper span, .layout-brand-wrapper li, .layout-brand-wrapper td, .layout-brand-wrapper th, .layout-brand-wrapper strong, .content-branding-container, .content-branding-container p, .content-branding-container span, .content-branding-container li, .content-branding-container td, .content-branding-container th, .content-branding-container strong, .public-branding-header, .public-branding-header p, .public-branding-header span, .public-branding-header li, .public-branding-header td, .public-branding-header th, .public-branding-header strong, .main-curtain-overlay, .main-curtain-overlay p, .main-curtain-overlay span, .main-curtain-overlay li, .main-curtain-overlay td, .main-curtain-overlay th, .main-curtain-overlay strong, .site-curtain-shadow, .site-curtain-shadow p, .site-curtain-shadow span, .site-curtain-shadow li, .site-curtain-shadow td, .site-curtain-shadow th, .site-curtain-shadow strong, .page-date-status-bar, .page-date-status-bar p, .page-date-status-bar span, .page-date-status-bar li, .page-date-status-bar td, .page-date-status-bar th, .page-date-status-bar strong, .layout-dialog-backdrop, .layout-dialog-backdrop p, .layout-dialog-backdrop span, .layout-dialog-backdrop li, .layout-dialog-backdrop td, .layout-dialog-backdrop th, .layout-dialog-backdrop strong, .app-dialog-box, .app-dialog-box p, .app-dialog-box span, .app-dialog-box li, .app-dialog-box td, .app-dialog-box th, .app-dialog-box strong, .core-dialog-card, .core-dialog-card p, .core-dialog-card span, .core-dialog-card li, .core-dialog-card td, .core-dialog-card th, .core-dialog-card strong, .custom-dialog-dimmer, .custom-dialog-dimmer p, .custom-dialog-dimmer span, .custom-dialog-dimmer li, .custom-dialog-dimmer td, .custom-dialog-dimmer th, .custom-dialog-dimmer strong, .primary-dialog-panel, .primary-dialog-panel p, .primary-dialog-panel span, .primary-dialog-panel li, .primary-dialog-panel td, .primary-dialog-panel th, .primary-dialog-panel strong, .primary-dialog-shell, .primary-dialog-shell p, .primary-dialog-shell span, .primary-dialog-shell li, .primary-dialog-shell td, .primary-dialog-shell th, .primary-dialog-shell strong, .primary-dialog-wrapper, .primary-dialog-wrapper p, .primary-dialog-wrapper span, .primary-dialog-wrapper li, .primary-dialog-wrapper td, .primary-dialog-wrapper th, .primary-dialog-wrapper strong, .brand-dimmer-screen, .brand-dimmer-screen p, .brand-dimmer-screen span, .brand-dimmer-screen li, .brand-dimmer-screen td, .brand-dimmer-screen th, .brand-dimmer-screen strong, .web-faq-content, .web-faq-content p, .web-faq-content span, .web-faq-content li, .web-faq-content td, .web-faq-content th, .web-faq-content strong, .public-faq-item, .public-faq-item p, .public-faq-item span, .public-faq-item li, .public-faq-item td, .public-faq-item th, .public-faq-item strong, .web-faq-summary, .web-faq-summary p, .web-faq-summary span, .web-faq-summary li, .web-faq-summary td, .web-faq-summary th, .web-faq-summary strong, .shell-feature-frame, .shell-feature-frame p, .shell-feature-frame span, .shell-feature-frame li, .shell-feature-frame td, .shell-feature-frame th, .shell-feature-frame strong, .web-first-view, .web-first-view p, .web-first-view span, .web-first-view li, .web-first-view td, .web-first-view th, .web-first-view strong, .shell-foot-section, .shell-foot-section p, .shell-foot-section span, .shell-foot-section li, .shell-foot-section td, .shell-foot-section th, .shell-foot-section strong, .view-footer, .view-footer p, .view-footer span, .view-footer li, .view-footer td, .view-footer th, .view-footer strong, .web-footer-area, .web-footer-area p, .web-footer-area span, .web-footer-area li, .web-footer-area td, .web-footer-area th, .web-footer-area strong, .global-footer-area-container, .global-footer-area-container p, .global-footer-area-container span, .global-footer-area-container li, .global-footer-area-container td, .global-footer-area-container th, .global-footer-area-container strong, .local-footer-base, .local-footer-base p, .local-footer-base span, .local-footer-base li, .local-footer-base td, .local-footer-base th, .local-footer-base strong, .content-footer-block, .content-footer-block p, .content-footer-block span, .content-footer-block li, .content-footer-block td, .content-footer-block th, .content-footer-block strong, .public-footer-body, .public-footer-body p, .public-footer-body span, .public-footer-body li, .public-footer-body td, .public-footer-body th, .public-footer-body strong, .layout-footer-bottom-container, .layout-footer-bottom-container p, .layout-footer-bottom-container span, .layout-footer-bottom-container li, .layout-footer-bottom-container td, .layout-footer-bottom-container th, .layout-footer-bottom-container strong, .screen-footer-box, .screen-footer-box p, .screen-footer-box span, .screen-footer-box li, .screen-footer-box td, .screen-footer-box th, .screen-footer-box strong, .core-footer-box-container, .core-footer-box-container p, .core-footer-box-container span, .core-footer-box-container li, .core-footer-box-container td, .core-footer-box-container th, .core-footer-box-container strong, .footer-box, .footer-box p, .footer-box span, .footer-box li, .footer-box td, .footer-box th, .footer-box strong, .portal-footer-container-root, .portal-footer-container-root p, .portal-footer-container-root span, .portal-footer-container-root li, .portal-footer-container-root td, .portal-footer-container-root th, .portal-footer-container-root strong, .site-footer-content, .site-footer-content p, .site-footer-content span, .site-footer-content li, .site-footer-content td, .site-footer-content th, .site-footer-content strong, .ui-footer-content-wrap, .ui-footer-content-wrap p, .ui-footer-content-wrap span, .ui-footer-content-wrap li, .ui-footer-content-wrap td, .ui-footer-content-wrap th, .ui-footer-content-wrap strong, .main-footer-flex, .main-footer-flex p, .main-footer-flex span, .main-footer-flex li, .main-footer-flex td, .main-footer-flex th, .main-footer-flex strong, .public-footer-grid-container, .public-footer-grid-container p, .public-footer-grid-container span, .public-footer-grid-container li, .public-footer-grid-container td, .public-footer-grid-container th, .public-footer-grid-container strong, .view-footer-holder, .view-footer-holder p, .view-footer-holder span, .view-footer-holder li, .view-footer-holder td, .view-footer-holder th, .view-footer-holder strong, .app-footer-holder-wrap, .app-footer-holder-wrap p, .app-footer-holder-wrap span, .app-footer-holder-wrap li, .app-footer-holder-wrap td, .app-footer-holder-wrap th, .app-footer-holder-wrap strong, .local-footer-inner, .local-footer-inner p, .local-footer-inner span, .local-footer-inner li, .local-footer-inner td, .local-footer-inner th, .local-footer-inner strong, .layout-footer-inner-wrapper, .layout-footer-inner-wrapper p, .layout-footer-inner-wrapper span, .layout-footer-inner-wrapper li, .layout-footer-inner-wrapper td, .layout-footer-inner-wrapper th, .layout-footer-inner-wrapper strong, .global-footer-layout-box, .global-footer-layout-box p, .global-footer-layout-box span, .global-footer-layout-box li, .global-footer-layout-box td, .global-footer-layout-box th, .global-footer-layout-box strong, .page-footer-main-box, .page-footer-main-box p, .page-footer-main-box span, .page-footer-main-box li, .page-footer-main-box td, .page-footer-main-box th, .page-footer-main-box strong, .content-footer-navigation, .content-footer-navigation p, .content-footer-navigation span, .content-footer-navigation li, .content-footer-navigation td, .content-footer-navigation th, .content-footer-navigation strong, .content-footer-panel, .content-footer-panel p, .content-footer-panel span, .content-footer-panel li, .content-footer-panel td, .content-footer-panel th, .content-footer-panel strong, .public-footer-row, .public-footer-row p, .public-footer-row span, .public-footer-row li, .public-footer-row td, .public-footer-row th, .public-footer-row strong, .core-footer-section, .core-footer-section p, .core-footer-section span, .core-footer-section li, .core-footer-section td, .core-footer-section th, .core-footer-section strong, .ui-footer-shell, .ui-footer-shell p, .ui-footer-shell span, .ui-footer-shell li, .ui-footer-shell td, .ui-footer-shell th, .ui-footer-shell strong, .main-footer-shell-container, .main-footer-shell-container p, .main-footer-shell-container span, .main-footer-shell-container li, .main-footer-shell-container td, .main-footer-shell-container th, .main-footer-shell-container strong, .local-footer-wrap, .local-footer-wrap p, .local-footer-wrap span, .local-footer-wrap li, .local-footer-wrap td, .local-footer-wrap th, .local-footer-wrap strong, .screen-footer-wrap-box, .screen-footer-wrap-box p, .screen-footer-wrap-box span, .screen-footer-wrap-box li, .screen-footer-wrap-box td, .screen-footer-wrap-box th, .screen-footer-wrap-box strong, .brand-footer-wrapper, .brand-footer-wrapper p, .brand-footer-wrapper span, .brand-footer-wrapper li, .brand-footer-wrapper td, .brand-footer-wrapper th, .brand-footer-wrapper strong, .brand-gateway-banner, .brand-gateway-banner p, .brand-gateway-banner span, .brand-gateway-banner li, .brand-gateway-banner td, .brand-gateway-banner th, .brand-gateway-banner strong, .theme-glassmorphism-bg, .theme-glassmorphism-bg p, .theme-glassmorphism-bg span, .theme-glassmorphism-bg li, .theme-glassmorphism-bg td, .theme-glassmorphism-bg th, .theme-glassmorphism-bg strong, .custom-global-footer, .custom-global-footer p, .custom-global-footer span, .custom-global-footer li, .custom-global-footer td, .custom-global-footer th, .custom-global-footer strong, .core-global-header, .core-global-header p, .core-global-header span, .core-global-header li, .core-global-header td, .core-global-header th, .core-global-header strong, .ui-head-section, .ui-head-section p, .ui-head-section span, .ui-head-section li, .ui-head-section td, .ui-head-section th, .ui-head-section strong, .web-head-wrapper, .web-head-wrapper p, .web-head-wrapper span, .web-head-wrapper li, .web-head-wrapper td, .web-head-wrapper th, .web-head-wrapper strong, .local-header, .local-header p, .local-header span, .local-header li, .local-header td, .local-header th, .local-header strong, .public-header-area, .public-header-area p, .public-header-area span, .public-header-area li, .public-header-area td, .public-header-area th, .public-header-area strong, .navigation-box, .navigation-box p, .navigation-box span, .navigation-box li, .navigation-box td, .navigation-box th, .navigation-box strong, .brand-header-content, .brand-header-content p, .brand-header-content span, .brand-header-content li, .brand-header-content td, .brand-header-content th, .brand-header-content strong, .primary-header-flex, .primary-header-flex p, .primary-header-flex span, .primary-header-flex li, .primary-header-flex td, .primary-header-flex th, .primary-header-flex strong, .main-header-holder, .main-header-holder p, .main-header-holder span, .main-header-holder li, .main-header-holder td, .main-header-holder th, .main-header-holder strong, .public-header-inner, .public-header-inner p, .public-header-inner span, .public-header-inner li, .public-header-inner td, .public-header-inner th, .public-header-inner strong, .view-header-navigation, .view-header-navigation p, .view-header-navigation span, .view-header-navigation li, .view-header-navigation td, .view-header-navigation th, .view-header-navigation strong, .public-header-shell, .public-header-shell p, .public-header-shell span, .public-header-shell li, .public-header-shell td, .public-header-shell th, .public-header-shell strong, .theme-header-wrap, .theme-header-wrap p, .theme-header-wrap span, .theme-header-wrap li, .theme-header-wrap td, .theme-header-wrap th, .theme-header-wrap strong, .portal-headline-panel, .portal-headline-panel p, .portal-headline-panel span, .portal-headline-panel li, .portal-headline-panel td, .portal-headline-panel th, .portal-headline-panel strong, .view-hero-box, .view-hero-box p, .view-hero-box span, .view-hero-box li, .view-hero-box td, .view-hero-box th, .view-hero-box strong, .content-hero-card, .content-hero-card p, .content-hero-card span, .content-hero-card li, .content-hero-card td, .content-hero-card th, .content-hero-card strong, .promo-wrapper, .promo-wrapper p, .promo-wrapper span, .promo-wrapper li, .promo-wrapper td, .promo-wrapper th, .promo-wrapper strong, .screen-hero-content, .screen-hero-content p, .screen-hero-content span, .screen-hero-content li, .screen-hero-content td, .screen-hero-content th, .screen-hero-content strong, .core-hero-grid, .core-hero-grid p, .core-hero-grid span, .core-hero-grid li, .core-hero-grid td, .core-hero-grid th, .core-hero-grid strong, .content-hero-holder, .content-hero-holder p, .content-hero-holder span, .content-hero-holder li, .content-hero-holder td, .content-hero-holder th, .content-hero-holder strong, .layout-hero-inner, .layout-hero-inner p, .layout-hero-inner span, .layout-hero-inner li, .layout-hero-inner td, .layout-hero-inner th, .layout-hero-inner strong, .screen-hero-panel, .screen-hero-panel p, .screen-hero-panel span, .screen-hero-panel li, .screen-hero-panel td, .screen-hero-panel th, .screen-hero-panel strong, .top-promotion, .top-promotion p, .top-promotion span, .top-promotion li, .top-promotion td, .top-promotion th, .top-promotion strong, .web-hero-shell, .web-hero-shell p, .web-hero-shell span, .web-hero-shell li, .web-hero-shell td, .web-hero-shell th, .web-hero-shell strong, .global-hero-wrapper, .global-hero-wrapper p, .global-hero-wrapper span, .global-hero-wrapper li, .global-hero-wrapper td, .global-hero-wrapper th, .global-hero-wrapper strong, .ui-info-card, .ui-info-card p, .ui-info-card span, .ui-info-card li, .ui-info-card td, .ui-info-card th, .ui-info-card strong, .custom-info-modal, .custom-info-modal p, .custom-info-modal span, .custom-info-modal li, .custom-info-modal td, .custom-info-modal th, .custom-info-modal strong, .public-intro-block, .public-intro-block p, .public-intro-block span, .public-intro-block li, .public-intro-block td, .public-intro-block th, .public-intro-block strong, .theme-intro-container, .theme-intro-container p, .theme-intro-container span, .theme-intro-container li, .theme-intro-container td, .theme-intro-container th, .theme-intro-container strong, .view-intro-wrapper, .view-intro-wrapper p, .view-intro-wrapper span, .view-intro-wrapper li, .view-intro-wrapper td, .view-intro-wrapper th, .view-intro-wrapper strong, .page-last-modified-panel, .page-last-modified-panel p, .page-last-modified-panel span, .page-last-modified-panel li, .page-last-modified-panel td, .page-last-modified-panel th, .page-last-modified-panel strong, .main-latest-update-box, .main-latest-update-box p, .main-latest-update-box span, .main-latest-update-box li, .main-latest-update-box td, .main-latest-update-box th, .main-latest-update-box strong, .theme-lead-banner, .theme-lead-banner p, .theme-lead-banner span, .theme-lead-banner li, .theme-lead-banner td, .theme-lead-banner th, .theme-lead-banner strong, .shell-lightbox-box, .shell-lightbox-box p, .shell-lightbox-box span, .shell-lightbox-box li, .shell-lightbox-box td, .shell-lightbox-box th, .shell-lightbox-box strong, .global-lightbox-card, .global-lightbox-card p, .global-lightbox-card span, .global-lightbox-card li, .global-lightbox-card td, .global-lightbox-card th, .global-lightbox-card strong, .global-lightbox-overlay, .global-lightbox-overlay p, .global-lightbox-overlay span, .global-lightbox-overlay li, .global-lightbox-overlay td, .global-lightbox-overlay th, .global-lightbox-overlay strong, .ui-lobby-intro, .ui-lobby-intro p, .ui-lobby-intro span, .ui-lobby-intro li, .ui-lobby-intro td, .ui-lobby-intro th, .ui-lobby-intro strong, .custom-lower-panel, .custom-lower-panel p, .custom-lower-panel span, .custom-lower-panel li, .custom-lower-panel td, .custom-lower-panel th, .custom-lower-panel strong, .content-main-footer, .content-main-footer p, .content-main-footer span, .content-main-footer li, .content-main-footer td, .content-main-footer th, .content-main-footer strong, .content-main-header, .content-main-header p, .content-main-header span, .content-main-header li, .content-main-header td, .content-main-header th, .content-main-header strong, .public-main-showcase, .public-main-showcase p, .public-main-showcase span, .public-main-showcase li, .public-main-showcase td, .public-main-showcase th, .public-main-showcase strong, .custom-menu-container, .custom-menu-container p, .custom-menu-container span, .custom-menu-container li, .custom-menu-container td, .custom-menu-container th, .custom-menu-container strong, .shell-menu-header, .shell-menu-header p, .shell-menu-header span, .shell-menu-header li, .shell-menu-header td, .shell-menu-header th, .shell-menu-header strong, .ui-modal-box, .ui-modal-box p, .ui-modal-box span, .ui-modal-box li, .ui-modal-box td, .ui-modal-box th, .ui-modal-box strong, .public-modal-card, .public-modal-card p, .public-modal-card span, .public-modal-card li, .public-modal-card td, .public-modal-card th, .public-modal-card strong, .theme-modal-container, .theme-modal-container p, .theme-modal-container span, .theme-modal-container li, .theme-modal-container td, .theme-modal-container th, .theme-modal-container strong, .content-modal-curtain, .content-modal-curtain p, .content-modal-curtain span, .content-modal-curtain li, .content-modal-curtain td, .content-modal-curtain th, .content-modal-curtain strong, .global-modal-dimmer, .global-modal-dimmer p, .global-modal-dimmer span, .global-modal-dimmer li, .global-modal-dimmer td, .global-modal-dimmer th, .global-modal-dimmer strong, .layout-modal-frame, .layout-modal-frame p, .layout-modal-frame span, .layout-modal-frame li, .layout-modal-frame td, .layout-modal-frame th, .layout-modal-frame strong, .page-modal-panel, .page-modal-panel p, .page-modal-panel span, .page-modal-panel li, .page-modal-panel td, .page-modal-panel th, .page-modal-panel strong, .site-modal-shadow, .site-modal-shadow p, .site-modal-shadow span, .site-modal-shadow li, .site-modal-shadow td, .site-modal-shadow th, .site-modal-shadow strong, .ui-modal-wrapper-bg, .ui-modal-wrapper-bg p, .ui-modal-wrapper-bg span, .ui-modal-wrapper-bg li, .ui-modal-wrapper-bg td, .ui-modal-wrapper-bg th, .ui-modal-wrapper-bg strong, .content-modified-date, .content-modified-date p, .content-modified-date span, .content-modified-date li, .content-modified-date td, .content-modified-date th, .content-modified-date strong, .local-nav-header, .local-nav-header p, .local-nav-header span, .local-nav-header li, .local-nav-header td, .local-nav-header th, .local-nav-header strong, .custom-nav-inner, .custom-nav-inner p, .custom-nav-inner span, .custom-nav-inner li, .custom-nav-inner td, .custom-nav-inner th, .custom-nav-inner strong, .local-nav-wrap, .local-nav-wrap p, .local-nav-wrap span, .local-nav-wrap li, .local-nav-wrap td, .local-nav-wrap th, .local-nav-wrap strong, .public-navbar-box, .public-navbar-box p, .public-navbar-box span, .public-navbar-box li, .public-navbar-box td, .public-navbar-box th, .public-navbar-box strong, .public-navbar-container, .public-navbar-container p, .public-navbar-container span, .public-navbar-container li, .public-navbar-container td, .public-navbar-container th, .public-navbar-container strong, .layout-navbar-inner, .layout-navbar-inner p, .layout-navbar-inner span, .layout-navbar-inner li, .layout-navbar-inner td, .layout-navbar-inner th, .layout-navbar-inner strong, .layout-navigation-box, .layout-navigation-box p, .layout-navigation-box span, .layout-navigation-box li, .layout-navigation-box td, .layout-navigation-box th, .layout-navigation-box strong, .site-overlay-backdrop, .site-overlay-backdrop p, .site-overlay-backdrop span, .site-overlay-backdrop li, .site-overlay-backdrop td, .site-overlay-backdrop th, .site-overlay-backdrop strong, .shell-overlay-curtain, .shell-overlay-curtain p, .shell-overlay-curtain span, .shell-overlay-curtain li, .shell-overlay-curtain td, .shell-overlay-curtain th, .shell-overlay-curtain strong, .view-overlay-shield, .view-overlay-shield p, .view-overlay-shield span, .view-overlay-shield li, .view-overlay-shield td, .view-overlay-shield th, .view-overlay-shield strong, .core-page-freshness, .core-page-freshness p, .core-page-freshness span, .core-page-freshness li, .core-page-freshness td, .core-page-freshness th, .core-page-freshness strong, .public-phone-submenu-bar, .public-phone-submenu-bar p, .public-phone-submenu-bar span, .public-phone-submenu-bar li, .public-phone-submenu-bar td, .public-phone-submenu-bar th, .public-phone-submenu-bar strong, .core-popup-card, .core-popup-card p, .core-popup-card span, .core-popup-card li, .core-popup-card td, .core-popup-card th, .core-popup-card strong, .site-popup-dimmer, .site-popup-dimmer p, .site-popup-dimmer span, .site-popup-dimmer li, .site-popup-dimmer td, .site-popup-dimmer th, .site-popup-dimmer strong, .global-popup-frame, .global-popup-frame p, .global-popup-frame span, .global-popup-frame li, .global-popup-frame td, .global-popup-frame th, .global-popup-frame strong, .view-popup-shadow, .view-popup-shadow p, .view-popup-shadow span, .view-popup-shadow li, .view-popup-shadow td, .view-popup-shadow th, .view-popup-shadow strong, .public-popup-window, .public-popup-window p, .public-popup-window span, .public-popup-window li, .public-popup-window td, .public-popup-window th, .public-popup-window strong, .screen-popup-wrapper, .screen-popup-wrapper p, .screen-popup-wrapper span, .screen-popup-wrapper li, .screen-popup-wrapper td, .screen-popup-wrapper th, .screen-popup-wrapper strong, .portal-portal-header, .portal-portal-header p, .portal-portal-header span, .portal-portal-header li, .portal-portal-header td, .portal-portal-header th, .portal-portal-header strong, .shell-portal-intro, .shell-portal-intro p, .shell-portal-intro span, .shell-portal-intro li, .shell-portal-intro td, .shell-portal-intro th, .shell-portal-intro strong, .theme-primary-header, .theme-primary-header p, .theme-primary-header span, .theme-primary-header li, .theme-primary-header td, .theme-primary-header th, .theme-primary-header strong, .global-prime-header, .global-prime-header p, .global-prime-header span, .global-prime-header li, .global-prime-header td, .global-prime-header th, .global-prime-header strong, .content-promo-banner, .content-promo-banner p, .content-promo-banner span, .content-promo-banner li, .content-promo-banner td, .content-promo-banner th, .content-promo-banner strong, .site-promo-container, .site-promo-container p, .site-promo-container span, .site-promo-container li, .site-promo-container td, .site-promo-container th, .site-promo-container strong, .site-promo-content, .site-promo-content p, .site-promo-content span, .site-promo-content li, .site-promo-content td, .site-promo-content th, .site-promo-content strong, .ui-promo-hero, .ui-promo-hero p, .ui-promo-hero span, .ui-promo-hero li, .ui-promo-hero td, .ui-promo-hero th, .ui-promo-hero strong, .layout-promo-popup, .layout-promo-popup p, .layout-promo-popup span, .layout-promo-popup li, .layout-promo-popup td, .layout-promo-popup th, .layout-promo-popup strong, .app-promo-wrapper, .app-promo-wrapper p, .app-promo-wrapper span, .app-promo-wrapper li, .app-promo-wrapper td, .app-promo-wrapper th, .app-promo-wrapper strong, .content-refresh-stamp, .content-refresh-stamp p, .content-refresh-stamp span, .content-refresh-stamp li, .content-refresh-stamp td, .content-refresh-stamp th, .content-refresh-stamp strong, .public-revision-tag, .public-revision-tag p, .public-revision-tag span, .public-revision-tag li, .public-revision-tag td, .public-revision-tag th, .public-revision-tag strong, .local-screen-overlay, .local-screen-overlay p, .local-screen-overlay span, .local-screen-overlay li, .local-screen-overlay td, .local-screen-overlay th, .local-screen-overlay strong, .primary-shading-overlay, .primary-shading-overlay p, .primary-shading-overlay span, .primary-shading-overlay li, .primary-shading-overlay td, .primary-shading-overlay th, .primary-shading-overlay strong, .view-shadow-backdrop, .view-shadow-backdrop p, .view-shadow-backdrop span, .view-shadow-backdrop li, .view-shadow-backdrop td, .view-shadow-backdrop th, .view-shadow-backdrop strong, .bottom-menu-bar, .bottom-menu-bar p, .bottom-menu-bar span, .bottom-menu-bar li, .bottom-menu-bar td, .bottom-menu-bar th, .bottom-menu-bar strong, .head-section, .head-section p, .head-section span, .head-section li, .head-section td, .head-section th, .head-section strong, .global-site-info-footer, .global-site-info-footer p, .global-site-info-footer span, .global-site-info-footer li, .global-site-info-footer td, .global-site-info-footer th, .global-site-info-footer strong, .local-site-navigation, .local-site-navigation p, .local-site-navigation span, .local-site-navigation li, .local-site-navigation td, .local-site-navigation th, .local-site-navigation strong, .public-slots-toolbar, .public-slots-toolbar p, .public-slots-toolbar span, .public-slots-toolbar li, .public-slots-toolbar td, .public-slots-toolbar th, .public-slots-toolbar strong, .content-sticky-header-wrapper, .content-sticky-header-wrapper p, .content-sticky-header-wrapper span, .content-sticky-header-wrapper li, .content-sticky-header-wrapper td, .content-sticky-header-wrapper th, .content-sticky-header-wrapper strong, .global-system-footer, .global-system-footer p, .global-system-footer span, .global-system-footer li, .global-system-footer td, .global-system-footer th, .global-system-footer strong, .layout-system-header, .layout-system-header p, .layout-system-header span, .layout-system-header li, .layout-system-header td, .layout-system-header th, .layout-system-header strong, .screen-timestamp-marker, .screen-timestamp-marker p, .screen-timestamp-marker span, .screen-timestamp-marker li, .screen-timestamp-marker td, .screen-timestamp-marker th, .screen-timestamp-marker strong, .ui-top-bar, .ui-top-bar p, .ui-top-bar span, .ui-top-bar li, .ui-top-bar td, .ui-top-bar th, .ui-top-bar strong, .shell-top-bar-container, .shell-top-bar-container p, .shell-top-bar-container span, .shell-top-bar-container li, .shell-top-bar-container td, .shell-top-bar-container th, .shell-top-bar-container strong, .theme-top-box, .theme-top-box p, .theme-top-box span, .theme-top-box li, .theme-top-box td, .theme-top-box th, .theme-top-box strong, .primary-top-grid, .primary-top-grid p, .primary-top-grid span, .primary-top-grid li, .primary-top-grid td, .primary-top-grid th, .primary-top-grid strong, .core-top-menu-bar, .core-top-menu-bar p, .core-top-menu-bar span, .core-top-menu-bar li, .core-top-menu-bar td, .core-top-menu-bar th, .core-top-menu-bar strong, .main-top-nav-bar, .main-top-nav-bar p, .main-top-nav-bar span, .main-top-nav-bar li, .main-top-nav-bar td, .main-top-nav-bar th, .main-top-nav-bar strong, .custom-top-panel, .custom-top-panel p, .custom-top-panel span, .custom-top-panel li, .custom-top-panel td, .custom-top-panel th, .custom-top-panel strong, .content-top-promotion, .content-top-promotion p, .content-top-promotion span, .content-top-promotion li, .content-top-promotion td, .content-top-promotion th, .content-top-promotion strong, .layout-top-row, .layout-top-row p, .layout-top-row span, .layout-top-row li, .layout-top-row td, .layout-top-row th, .layout-top-row strong, .page-top-wrapper, .page-top-wrapper p, .page-top-wrapper span, .page-top-wrapper li, .page-top-wrapper td, .page-top-wrapper th, .page-top-wrapper strong, .main-update-indicator, .main-update-indicator p, .main-update-indicator span, .main-update-indicator li, .main-update-indicator td, .main-update-indicator th, .main-update-indicator strong, .custom-update-notify, .custom-update-notify p, .custom-update-notify span, .custom-update-notify li, .custom-update-notify td, .custom-update-notify th, .custom-update-notify strong, .layout-update-ribbon, .layout-update-ribbon p, .layout-update-ribbon span, .layout-update-ribbon li, .layout-update-ribbon td, .layout-update-ribbon th, .layout-update-ribbon strong, .portal-updated-info, .portal-updated-info p, .portal-updated-info span, .portal-updated-info li, .portal-updated-info td, .portal-updated-info th, .portal-updated-info strong, .theme-upper-nav, .theme-upper-nav p, .theme-upper-nav span, .theme-upper-nav li, .theme-upper-nav td, .theme-upper-nav th, .theme-upper-nav strong, .site-welcome-area, .site-welcome-area p, .site-welcome-area span, .site-welcome-area li, .site-welcome-area td, .site-welcome-area th, .site-welcome-area strong, .core-welcome-billboard, .core-welcome-billboard p, .core-welcome-billboard span, .core-welcome-billboard li, .core-welcome-billboard td, .core-welcome-billboard th, .core-welcome-billboard strong, .web-welcome-box, .web-welcome-box p, .web-welcome-box span, .web-welcome-box li, .web-welcome-box td, .web-welcome-box th, .web-welcome-box strong, .global-welcome-content, .global-welcome-content p, .global-welcome-content span, .global-welcome-content li, .global-welcome-content td, .global-welcome-content th, .global-welcome-content strong, .public-welcome-holder, .public-welcome-holder p, .public-welcome-holder span, .public-welcome-holder li, .public-welcome-holder td, .public-welcome-holder th, .public-welcome-holder strong, .brand-welcome-stage, .brand-welcome-stage p, .brand-welcome-stage span, .brand-welcome-stage li, .brand-welcome-stage td, .brand-welcome-stage th, .brand-welcome-stage strong, .theme-welcome-wrapper, .theme-welcome-wrapper p, .theme-welcome-wrapper span, .theme-welcome-wrapper li, .theme-welcome-wrapper td, .theme-welcome-wrapper th, .theme-welcome-wrapper strong, header, header p, header span, footer, footer p, footer span, footer li, table, th, td, table p, table span, table strong, table td, table th {
  color: var(--text-gray) !important;
}
.site-action-header a, .portal-alert-dialog a, .shell-app-footer a, .site-app-header a, .web-backdrop-overlay a, .local-banner-box a, .portal-banner-content a, .public-banner-inner a, .content-bonus-header a, .core-bottom-bar a, .site-bottom-footer a, .global-bottom-menu-bar a, .custom-brand-bar a, .app-brand-footer a, .content-brand-hero a, .layout-brand-wrapper a, .content-branding-container a, .public-branding-header a, .main-curtain-overlay a, .site-curtain-shadow a, .page-date-status-bar a, .layout-dialog-backdrop a, .app-dialog-box a, .core-dialog-card a, .custom-dialog-dimmer a, .primary-dialog-panel a, .primary-dialog-shell a, .primary-dialog-wrapper a, .brand-dimmer-screen a, .web-faq-content a, .public-faq-item a, .web-faq-summary a, .shell-feature-frame a, .web-first-view a, .shell-foot-section a, .view-footer a, .web-footer-area a, .global-footer-area-container a, .local-footer-base a, .content-footer-block a, .public-footer-body a, .layout-footer-bottom-container a, .screen-footer-box a, .core-footer-box-container a, .footer-box a, .portal-footer-container-root a, .site-footer-content a, .ui-footer-content-wrap a, .main-footer-flex a, .public-footer-grid-container a, .view-footer-holder a, .app-footer-holder-wrap a, .local-footer-inner a, .layout-footer-inner-wrapper a, .global-footer-layout-box a, .page-footer-main-box a, .content-footer-navigation a, .content-footer-panel a, .public-footer-row a, .core-footer-section a, .ui-footer-shell a, .main-footer-shell-container a, .local-footer-wrap a, .screen-footer-wrap-box a, .brand-footer-wrapper a, .brand-gateway-banner a, .theme-glassmorphism-bg a, .custom-global-footer a, .core-global-header a, .ui-head-section a, .web-head-wrapper a, .local-header a, .public-header-area a, .navigation-box a, .brand-header-content a, .primary-header-flex a, .main-header-holder a, .public-header-inner a, .view-header-navigation a, .public-header-shell a, .theme-header-wrap a, .portal-headline-panel a, .view-hero-box a, .content-hero-card a, .promo-wrapper a, .screen-hero-content a, .core-hero-grid a, .content-hero-holder a, .layout-hero-inner a, .screen-hero-panel a, .top-promotion a, .web-hero-shell a, .global-hero-wrapper a, .ui-info-card a, .custom-info-modal a, .public-intro-block a, .theme-intro-container a, .view-intro-wrapper a, .page-last-modified-panel a, .main-latest-update-box a, .theme-lead-banner a, .shell-lightbox-box a, .global-lightbox-card a, .global-lightbox-overlay a, .ui-lobby-intro a, .custom-lower-panel a, .content-main-footer a, .content-main-header a, .public-main-showcase a, .custom-menu-container a, .shell-menu-header a, .ui-modal-box a, .public-modal-card a, .theme-modal-container a, .content-modal-curtain a, .global-modal-dimmer a, .layout-modal-frame a, .page-modal-panel a, .site-modal-shadow a, .ui-modal-wrapper-bg a, .content-modified-date a, .local-nav-header a, .custom-nav-inner a, .local-nav-wrap a, .public-navbar-box a, .public-navbar-container a, .layout-navbar-inner a, .layout-navigation-box a, .site-overlay-backdrop a, .shell-overlay-curtain a, .view-overlay-shield a, .core-page-freshness a, .public-phone-submenu-bar a, .core-popup-card a, .site-popup-dimmer a, .global-popup-frame a, .view-popup-shadow a, .public-popup-window a, .screen-popup-wrapper a, .portal-portal-header a, .shell-portal-intro a, .theme-primary-header a, .global-prime-header a, .content-promo-banner a, .site-promo-container a, .site-promo-content a, .ui-promo-hero a, .layout-promo-popup a, .app-promo-wrapper a, .content-refresh-stamp a, .public-revision-tag a, .local-screen-overlay a, .primary-shading-overlay a, .view-shadow-backdrop a, .bottom-menu-bar a, .head-section a, .global-site-info-footer a, .local-site-navigation a, .public-slots-toolbar a, .content-sticky-header-wrapper a, .global-system-footer a, .layout-system-header a, .screen-timestamp-marker a, .ui-top-bar a, .shell-top-bar-container a, .theme-top-box a, .primary-top-grid a, .core-top-menu-bar a, .main-top-nav-bar a, .custom-top-panel a, .content-top-promotion a, .layout-top-row a, .page-top-wrapper a, .main-update-indicator a, .custom-update-notify a, .layout-update-ribbon a, .portal-updated-info a, .theme-upper-nav a, .site-welcome-area a, .core-welcome-billboard a, .web-welcome-box a, .global-welcome-content a, .public-welcome-holder a, .brand-welcome-stage a, .theme-welcome-wrapper a, header a, footer a {
  color: #cbd5e1 !important;
}
.site-action-header a:hover, .portal-alert-dialog a:hover, .shell-app-footer a:hover, .site-app-header a:hover, .web-backdrop-overlay a:hover, .local-banner-box a:hover, .portal-banner-content a:hover, .public-banner-inner a:hover, .content-bonus-header a:hover, .core-bottom-bar a:hover, .site-bottom-footer a:hover, .global-bottom-menu-bar a:hover, .custom-brand-bar a:hover, .app-brand-footer a:hover, .content-brand-hero a:hover, .layout-brand-wrapper a:hover, .content-branding-container a:hover, .public-branding-header a:hover, .main-curtain-overlay a:hover, .site-curtain-shadow a:hover, .page-date-status-bar a:hover, .layout-dialog-backdrop a:hover, .app-dialog-box a:hover, .core-dialog-card a:hover, .custom-dialog-dimmer a:hover, .primary-dialog-panel a:hover, .primary-dialog-shell a:hover, .primary-dialog-wrapper a:hover, .brand-dimmer-screen a:hover, .web-faq-content a:hover, .public-faq-item a:hover, .web-faq-summary a:hover, .shell-feature-frame a:hover, .web-first-view a:hover, .shell-foot-section a:hover, .view-footer a:hover, .web-footer-area a:hover, .global-footer-area-container a:hover, .local-footer-base a:hover, .content-footer-block a:hover, .public-footer-body a:hover, .layout-footer-bottom-container a:hover, .screen-footer-box a:hover, .core-footer-box-container a:hover, .footer-box a:hover, .portal-footer-container-root a:hover, .site-footer-content a:hover, .ui-footer-content-wrap a:hover, .main-footer-flex a:hover, .public-footer-grid-container a:hover, .view-footer-holder a:hover, .app-footer-holder-wrap a:hover, .local-footer-inner a:hover, .layout-footer-inner-wrapper a:hover, .global-footer-layout-box a:hover, .page-footer-main-box a:hover, .content-footer-navigation a:hover, .content-footer-panel a:hover, .public-footer-row a:hover, .core-footer-section a:hover, .ui-footer-shell a:hover, .main-footer-shell-container a:hover, .local-footer-wrap a:hover, .screen-footer-wrap-box a:hover, .brand-footer-wrapper a:hover, .brand-gateway-banner a:hover, .theme-glassmorphism-bg a:hover, .custom-global-footer a:hover, .core-global-header a:hover, .ui-head-section a:hover, .web-head-wrapper a:hover, .local-header a:hover, .public-header-area a:hover, .navigation-box a:hover, .brand-header-content a:hover, .primary-header-flex a:hover, .main-header-holder a:hover, .public-header-inner a:hover, .view-header-navigation a:hover, .public-header-shell a:hover, .theme-header-wrap a:hover, .portal-headline-panel a:hover, .view-hero-box a:hover, .content-hero-card a:hover, .promo-wrapper a:hover, .screen-hero-content a:hover, .core-hero-grid a:hover, .content-hero-holder a:hover, .layout-hero-inner a:hover, .screen-hero-panel a:hover, .top-promotion a:hover, .web-hero-shell a:hover, .global-hero-wrapper a:hover, .ui-info-card a:hover, .custom-info-modal a:hover, .public-intro-block a:hover, .theme-intro-container a:hover, .view-intro-wrapper a:hover, .page-last-modified-panel a:hover, .main-latest-update-box a:hover, .theme-lead-banner a:hover, .shell-lightbox-box a:hover, .global-lightbox-card a:hover, .global-lightbox-overlay a:hover, .ui-lobby-intro a:hover, .custom-lower-panel a:hover, .content-main-footer a:hover, .content-main-header a:hover, .public-main-showcase a:hover, .custom-menu-container a:hover, .shell-menu-header a:hover, .ui-modal-box a:hover, .public-modal-card a:hover, .theme-modal-container a:hover, .content-modal-curtain a:hover, .global-modal-dimmer a:hover, .layout-modal-frame a:hover, .page-modal-panel a:hover, .site-modal-shadow a:hover, .ui-modal-wrapper-bg a:hover, .content-modified-date a:hover, .local-nav-header a:hover, .custom-nav-inner a:hover, .local-nav-wrap a:hover, .public-navbar-box a:hover, .public-navbar-container a:hover, .layout-navbar-inner a:hover, .layout-navigation-box a:hover, .site-overlay-backdrop a:hover, .shell-overlay-curtain a:hover, .view-overlay-shield a:hover, .core-page-freshness a:hover, .public-phone-submenu-bar a:hover, .core-popup-card a:hover, .site-popup-dimmer a:hover, .global-popup-frame a:hover, .view-popup-shadow a:hover, .public-popup-window a:hover, .screen-popup-wrapper a:hover, .portal-portal-header a:hover, .shell-portal-intro a:hover, .theme-primary-header a:hover, .global-prime-header a:hover, .content-promo-banner a:hover, .site-promo-container a:hover, .site-promo-content a:hover, .ui-promo-hero a:hover, .layout-promo-popup a:hover, .app-promo-wrapper a:hover, .content-refresh-stamp a:hover, .public-revision-tag a:hover, .local-screen-overlay a:hover, .primary-shading-overlay a:hover, .view-shadow-backdrop a:hover, .bottom-menu-bar a:hover, .head-section a:hover, .global-site-info-footer a:hover, .local-site-navigation a:hover, .public-slots-toolbar a:hover, .content-sticky-header-wrapper a:hover, .global-system-footer a:hover, .layout-system-header a:hover, .screen-timestamp-marker a:hover, .ui-top-bar a:hover, .shell-top-bar-container a:hover, .theme-top-box a:hover, .primary-top-grid a:hover, .core-top-menu-bar a:hover, .main-top-nav-bar a:hover, .custom-top-panel a:hover, .content-top-promotion a:hover, .layout-top-row a:hover, .page-top-wrapper a:hover, .main-update-indicator a:hover, .custom-update-notify a:hover, .layout-update-ribbon a:hover, .portal-updated-info a:hover, .theme-upper-nav a:hover, .site-welcome-area a:hover, .core-welcome-billboard a:hover, .web-welcome-box a:hover, .global-welcome-content a:hover, .public-welcome-holder a:hover, .brand-welcome-stage a:hover, .theme-welcome-wrapper a:hover, header a:hover, footer a:hover {
  color: #ffffff !important;
}
.site-action-header h1, .site-action-header h2, .site-action-header h3, .site-action-header strong, .site-action-header th, .site-action-header td:first-child, .portal-alert-dialog h1, .portal-alert-dialog h2, .portal-alert-dialog h3, .portal-alert-dialog strong, .portal-alert-dialog th, .portal-alert-dialog td:first-child, .shell-app-footer h1, .shell-app-footer h2, .shell-app-footer h3, .shell-app-footer strong, .shell-app-footer th, .shell-app-footer td:first-child, .site-app-header h1, .site-app-header h2, .site-app-header h3, .site-app-header strong, .site-app-header th, .site-app-header td:first-child, .web-backdrop-overlay h1, .web-backdrop-overlay h2, .web-backdrop-overlay h3, .web-backdrop-overlay strong, .web-backdrop-overlay th, .web-backdrop-overlay td:first-child, .local-banner-box h1, .local-banner-box h2, .local-banner-box h3, .local-banner-box strong, .local-banner-box th, .local-banner-box td:first-child, .portal-banner-content h1, .portal-banner-content h2, .portal-banner-content h3, .portal-banner-content strong, .portal-banner-content th, .portal-banner-content td:first-child, .public-banner-inner h1, .public-banner-inner h2, .public-banner-inner h3, .public-banner-inner strong, .public-banner-inner th, .public-banner-inner td:first-child, .content-bonus-header h1, .content-bonus-header h2, .content-bonus-header h3, .content-bonus-header strong, .content-bonus-header th, .content-bonus-header td:first-child, .core-bottom-bar h1, .core-bottom-bar h2, .core-bottom-bar h3, .core-bottom-bar strong, .core-bottom-bar th, .core-bottom-bar td:first-child, .site-bottom-footer h1, .site-bottom-footer h2, .site-bottom-footer h3, .site-bottom-footer strong, .site-bottom-footer th, .site-bottom-footer td:first-child, .global-bottom-menu-bar h1, .global-bottom-menu-bar h2, .global-bottom-menu-bar h3, .global-bottom-menu-bar strong, .global-bottom-menu-bar th, .global-bottom-menu-bar td:first-child, .custom-brand-bar h1, .custom-brand-bar h2, .custom-brand-bar h3, .custom-brand-bar strong, .custom-brand-bar th, .custom-brand-bar td:first-child, .app-brand-footer h1, .app-brand-footer h2, .app-brand-footer h3, .app-brand-footer strong, .app-brand-footer th, .app-brand-footer td:first-child, .content-brand-hero h1, .content-brand-hero h2, .content-brand-hero h3, .content-brand-hero strong, .content-brand-hero th, .content-brand-hero td:first-child, .layout-brand-wrapper h1, .layout-brand-wrapper h2, .layout-brand-wrapper h3, .layout-brand-wrapper strong, .layout-brand-wrapper th, .layout-brand-wrapper td:first-child, .content-branding-container h1, .content-branding-container h2, .content-branding-container h3, .content-branding-container strong, .content-branding-container th, .content-branding-container td:first-child, .public-branding-header h1, .public-branding-header h2, .public-branding-header h3, .public-branding-header strong, .public-branding-header th, .public-branding-header td:first-child, .main-curtain-overlay h1, .main-curtain-overlay h2, .main-curtain-overlay h3, .main-curtain-overlay strong, .main-curtain-overlay th, .main-curtain-overlay td:first-child, .site-curtain-shadow h1, .site-curtain-shadow h2, .site-curtain-shadow h3, .site-curtain-shadow strong, .site-curtain-shadow th, .site-curtain-shadow td:first-child, .page-date-status-bar h1, .page-date-status-bar h2, .page-date-status-bar h3, .page-date-status-bar strong, .page-date-status-bar th, .page-date-status-bar td:first-child, .layout-dialog-backdrop h1, .layout-dialog-backdrop h2, .layout-dialog-backdrop h3, .layout-dialog-backdrop strong, .layout-dialog-backdrop th, .layout-dialog-backdrop td:first-child, .app-dialog-box h1, .app-dialog-box h2, .app-dialog-box h3, .app-dialog-box strong, .app-dialog-box th, .app-dialog-box td:first-child, .core-dialog-card h1, .core-dialog-card h2, .core-dialog-card h3, .core-dialog-card strong, .core-dialog-card th, .core-dialog-card td:first-child, .custom-dialog-dimmer h1, .custom-dialog-dimmer h2, .custom-dialog-dimmer h3, .custom-dialog-dimmer strong, .custom-dialog-dimmer th, .custom-dialog-dimmer td:first-child, .primary-dialog-panel h1, .primary-dialog-panel h2, .primary-dialog-panel h3, .primary-dialog-panel strong, .primary-dialog-panel th, .primary-dialog-panel td:first-child, .primary-dialog-shell h1, .primary-dialog-shell h2, .primary-dialog-shell h3, .primary-dialog-shell strong, .primary-dialog-shell th, .primary-dialog-shell td:first-child, .primary-dialog-wrapper h1, .primary-dialog-wrapper h2, .primary-dialog-wrapper h3, .primary-dialog-wrapper strong, .primary-dialog-wrapper th, .primary-dialog-wrapper td:first-child, .brand-dimmer-screen h1, .brand-dimmer-screen h2, .brand-dimmer-screen h3, .brand-dimmer-screen strong, .brand-dimmer-screen th, .brand-dimmer-screen td:first-child, .web-faq-content h1, .web-faq-content h2, .web-faq-content h3, .web-faq-content strong, .web-faq-content th, .web-faq-content td:first-child, .public-faq-item h1, .public-faq-item h2, .public-faq-item h3, .public-faq-item strong, .public-faq-item th, .public-faq-item td:first-child, .web-faq-summary h1, .web-faq-summary h2, .web-faq-summary h3, .web-faq-summary strong, .web-faq-summary th, .web-faq-summary td:first-child, .shell-feature-frame h1, .shell-feature-frame h2, .shell-feature-frame h3, .shell-feature-frame strong, .shell-feature-frame th, .shell-feature-frame td:first-child, .web-first-view h1, .web-first-view h2, .web-first-view h3, .web-first-view strong, .web-first-view th, .web-first-view td:first-child, .shell-foot-section h1, .shell-foot-section h2, .shell-foot-section h3, .shell-foot-section strong, .shell-foot-section th, .shell-foot-section td:first-child, .view-footer h1, .view-footer h2, .view-footer h3, .view-footer strong, .view-footer th, .view-footer td:first-child, .web-footer-area h1, .web-footer-area h2, .web-footer-area h3, .web-footer-area strong, .web-footer-area th, .web-footer-area td:first-child, .global-footer-area-container h1, .global-footer-area-container h2, .global-footer-area-container h3, .global-footer-area-container strong, .global-footer-area-container th, .global-footer-area-container td:first-child, .local-footer-base h1, .local-footer-base h2, .local-footer-base h3, .local-footer-base strong, .local-footer-base th, .local-footer-base td:first-child, .content-footer-block h1, .content-footer-block h2, .content-footer-block h3, .content-footer-block strong, .content-footer-block th, .content-footer-block td:first-child, .public-footer-body h1, .public-footer-body h2, .public-footer-body h3, .public-footer-body strong, .public-footer-body th, .public-footer-body td:first-child, .layout-footer-bottom-container h1, .layout-footer-bottom-container h2, .layout-footer-bottom-container h3, .layout-footer-bottom-container strong, .layout-footer-bottom-container th, .layout-footer-bottom-container td:first-child, .screen-footer-box h1, .screen-footer-box h2, .screen-footer-box h3, .screen-footer-box strong, .screen-footer-box th, .screen-footer-box td:first-child, .core-footer-box-container h1, .core-footer-box-container h2, .core-footer-box-container h3, .core-footer-box-container strong, .core-footer-box-container th, .core-footer-box-container td:first-child, .footer-box h1, .footer-box h2, .footer-box h3, .footer-box strong, .footer-box th, .footer-box td:first-child, .portal-footer-container-root h1, .portal-footer-container-root h2, .portal-footer-container-root h3, .portal-footer-container-root strong, .portal-footer-container-root th, .portal-footer-container-root td:first-child, .site-footer-content h1, .site-footer-content h2, .site-footer-content h3, .site-footer-content strong, .site-footer-content th, .site-footer-content td:first-child, .ui-footer-content-wrap h1, .ui-footer-content-wrap h2, .ui-footer-content-wrap h3, .ui-footer-content-wrap strong, .ui-footer-content-wrap th, .ui-footer-content-wrap td:first-child, .main-footer-flex h1, .main-footer-flex h2, .main-footer-flex h3, .main-footer-flex strong, .main-footer-flex th, .main-footer-flex td:first-child, .public-footer-grid-container h1, .public-footer-grid-container h2, .public-footer-grid-container h3, .public-footer-grid-container strong, .public-footer-grid-container th, .public-footer-grid-container td:first-child, .view-footer-holder h1, .view-footer-holder h2, .view-footer-holder h3, .view-footer-holder strong, .view-footer-holder th, .view-footer-holder td:first-child, .app-footer-holder-wrap h1, .app-footer-holder-wrap h2, .app-footer-holder-wrap h3, .app-footer-holder-wrap strong, .app-footer-holder-wrap th, .app-footer-holder-wrap td:first-child, .local-footer-inner h1, .local-footer-inner h2, .local-footer-inner h3, .local-footer-inner strong, .local-footer-inner th, .local-footer-inner td:first-child, .layout-footer-inner-wrapper h1, .layout-footer-inner-wrapper h2, .layout-footer-inner-wrapper h3, .layout-footer-inner-wrapper strong, .layout-footer-inner-wrapper th, .layout-footer-inner-wrapper td:first-child, .global-footer-layout-box h1, .global-footer-layout-box h2, .global-footer-layout-box h3, .global-footer-layout-box strong, .global-footer-layout-box th, .global-footer-layout-box td:first-child, .page-footer-main-box h1, .page-footer-main-box h2, .page-footer-main-box h3, .page-footer-main-box strong, .page-footer-main-box th, .page-footer-main-box td:first-child, .content-footer-navigation h1, .content-footer-navigation h2, .content-footer-navigation h3, .content-footer-navigation strong, .content-footer-navigation th, .content-footer-navigation td:first-child, .content-footer-panel h1, .content-footer-panel h2, .content-footer-panel h3, .content-footer-panel strong, .content-footer-panel th, .content-footer-panel td:first-child, .public-footer-row h1, .public-footer-row h2, .public-footer-row h3, .public-footer-row strong, .public-footer-row th, .public-footer-row td:first-child, .core-footer-section h1, .core-footer-section h2, .core-footer-section h3, .core-footer-section strong, .core-footer-section th, .core-footer-section td:first-child, .ui-footer-shell h1, .ui-footer-shell h2, .ui-footer-shell h3, .ui-footer-shell strong, .ui-footer-shell th, .ui-footer-shell td:first-child, .main-footer-shell-container h1, .main-footer-shell-container h2, .main-footer-shell-container h3, .main-footer-shell-container strong, .main-footer-shell-container th, .main-footer-shell-container td:first-child, .local-footer-wrap h1, .local-footer-wrap h2, .local-footer-wrap h3, .local-footer-wrap strong, .local-footer-wrap th, .local-footer-wrap td:first-child, .screen-footer-wrap-box h1, .screen-footer-wrap-box h2, .screen-footer-wrap-box h3, .screen-footer-wrap-box strong, .screen-footer-wrap-box th, .screen-footer-wrap-box td:first-child, .brand-footer-wrapper h1, .brand-footer-wrapper h2, .brand-footer-wrapper h3, .brand-footer-wrapper strong, .brand-footer-wrapper th, .brand-footer-wrapper td:first-child, .brand-gateway-banner h1, .brand-gateway-banner h2, .brand-gateway-banner h3, .brand-gateway-banner strong, .brand-gateway-banner th, .brand-gateway-banner td:first-child, .theme-glassmorphism-bg h1, .theme-glassmorphism-bg h2, .theme-glassmorphism-bg h3, .theme-glassmorphism-bg strong, .theme-glassmorphism-bg th, .theme-glassmorphism-bg td:first-child, .custom-global-footer h1, .custom-global-footer h2, .custom-global-footer h3, .custom-global-footer strong, .custom-global-footer th, .custom-global-footer td:first-child, .core-global-header h1, .core-global-header h2, .core-global-header h3, .core-global-header strong, .core-global-header th, .core-global-header td:first-child, .ui-head-section h1, .ui-head-section h2, .ui-head-section h3, .ui-head-section strong, .ui-head-section th, .ui-head-section td:first-child, .web-head-wrapper h1, .web-head-wrapper h2, .web-head-wrapper h3, .web-head-wrapper strong, .web-head-wrapper th, .web-head-wrapper td:first-child, .local-header h1, .local-header h2, .local-header h3, .local-header strong, .local-header th, .local-header td:first-child, .public-header-area h1, .public-header-area h2, .public-header-area h3, .public-header-area strong, .public-header-area th, .public-header-area td:first-child, .navigation-box h1, .navigation-box h2, .navigation-box h3, .navigation-box strong, .navigation-box th, .navigation-box td:first-child, .brand-header-content h1, .brand-header-content h2, .brand-header-content h3, .brand-header-content strong, .brand-header-content th, .brand-header-content td:first-child, .primary-header-flex h1, .primary-header-flex h2, .primary-header-flex h3, .primary-header-flex strong, .primary-header-flex th, .primary-header-flex td:first-child, .main-header-holder h1, .main-header-holder h2, .main-header-holder h3, .main-header-holder strong, .main-header-holder th, .main-header-holder td:first-child, .public-header-inner h1, .public-header-inner h2, .public-header-inner h3, .public-header-inner strong, .public-header-inner th, .public-header-inner td:first-child, .view-header-navigation h1, .view-header-navigation h2, .view-header-navigation h3, .view-header-navigation strong, .view-header-navigation th, .view-header-navigation td:first-child, .public-header-shell h1, .public-header-shell h2, .public-header-shell h3, .public-header-shell strong, .public-header-shell th, .public-header-shell td:first-child, .theme-header-wrap h1, .theme-header-wrap h2, .theme-header-wrap h3, .theme-header-wrap strong, .theme-header-wrap th, .theme-header-wrap td:first-child, .portal-headline-panel h1, .portal-headline-panel h2, .portal-headline-panel h3, .portal-headline-panel strong, .portal-headline-panel th, .portal-headline-panel td:first-child, .view-hero-box h1, .view-hero-box h2, .view-hero-box h3, .view-hero-box strong, .view-hero-box th, .view-hero-box td:first-child, .content-hero-card h1, .content-hero-card h2, .content-hero-card h3, .content-hero-card strong, .content-hero-card th, .content-hero-card td:first-child, .promo-wrapper h1, .promo-wrapper h2, .promo-wrapper h3, .promo-wrapper strong, .promo-wrapper th, .promo-wrapper td:first-child, .screen-hero-content h1, .screen-hero-content h2, .screen-hero-content h3, .screen-hero-content strong, .screen-hero-content th, .screen-hero-content td:first-child, .core-hero-grid h1, .core-hero-grid h2, .core-hero-grid h3, .core-hero-grid strong, .core-hero-grid th, .core-hero-grid td:first-child, .content-hero-holder h1, .content-hero-holder h2, .content-hero-holder h3, .content-hero-holder strong, .content-hero-holder th, .content-hero-holder td:first-child, .layout-hero-inner h1, .layout-hero-inner h2, .layout-hero-inner h3, .layout-hero-inner strong, .layout-hero-inner th, .layout-hero-inner td:first-child, .screen-hero-panel h1, .screen-hero-panel h2, .screen-hero-panel h3, .screen-hero-panel strong, .screen-hero-panel th, .screen-hero-panel td:first-child, .top-promotion h1, .top-promotion h2, .top-promotion h3, .top-promotion strong, .top-promotion th, .top-promotion td:first-child, .web-hero-shell h1, .web-hero-shell h2, .web-hero-shell h3, .web-hero-shell strong, .web-hero-shell th, .web-hero-shell td:first-child, .global-hero-wrapper h1, .global-hero-wrapper h2, .global-hero-wrapper h3, .global-hero-wrapper strong, .global-hero-wrapper th, .global-hero-wrapper td:first-child, .ui-info-card h1, .ui-info-card h2, .ui-info-card h3, .ui-info-card strong, .ui-info-card th, .ui-info-card td:first-child, .custom-info-modal h1, .custom-info-modal h2, .custom-info-modal h3, .custom-info-modal strong, .custom-info-modal th, .custom-info-modal td:first-child, .public-intro-block h1, .public-intro-block h2, .public-intro-block h3, .public-intro-block strong, .public-intro-block th, .public-intro-block td:first-child, .theme-intro-container h1, .theme-intro-container h2, .theme-intro-container h3, .theme-intro-container strong, .theme-intro-container th, .theme-intro-container td:first-child, .view-intro-wrapper h1, .view-intro-wrapper h2, .view-intro-wrapper h3, .view-intro-wrapper strong, .view-intro-wrapper th, .view-intro-wrapper td:first-child, .page-last-modified-panel h1, .page-last-modified-panel h2, .page-last-modified-panel h3, .page-last-modified-panel strong, .page-last-modified-panel th, .page-last-modified-panel td:first-child, .main-latest-update-box h1, .main-latest-update-box h2, .main-latest-update-box h3, .main-latest-update-box strong, .main-latest-update-box th, .main-latest-update-box td:first-child, .theme-lead-banner h1, .theme-lead-banner h2, .theme-lead-banner h3, .theme-lead-banner strong, .theme-lead-banner th, .theme-lead-banner td:first-child, .shell-lightbox-box h1, .shell-lightbox-box h2, .shell-lightbox-box h3, .shell-lightbox-box strong, .shell-lightbox-box th, .shell-lightbox-box td:first-child, .global-lightbox-card h1, .global-lightbox-card h2, .global-lightbox-card h3, .global-lightbox-card strong, .global-lightbox-card th, .global-lightbox-card td:first-child, .global-lightbox-overlay h1, .global-lightbox-overlay h2, .global-lightbox-overlay h3, .global-lightbox-overlay strong, .global-lightbox-overlay th, .global-lightbox-overlay td:first-child, .ui-lobby-intro h1, .ui-lobby-intro h2, .ui-lobby-intro h3, .ui-lobby-intro strong, .ui-lobby-intro th, .ui-lobby-intro td:first-child, .custom-lower-panel h1, .custom-lower-panel h2, .custom-lower-panel h3, .custom-lower-panel strong, .custom-lower-panel th, .custom-lower-panel td:first-child, .content-main-footer h1, .content-main-footer h2, .content-main-footer h3, .content-main-footer strong, .content-main-footer th, .content-main-footer td:first-child, .content-main-header h1, .content-main-header h2, .content-main-header h3, .content-main-header strong, .content-main-header th, .content-main-header td:first-child, .public-main-showcase h1, .public-main-showcase h2, .public-main-showcase h3, .public-main-showcase strong, .public-main-showcase th, .public-main-showcase td:first-child, .custom-menu-container h1, .custom-menu-container h2, .custom-menu-container h3, .custom-menu-container strong, .custom-menu-container th, .custom-menu-container td:first-child, .shell-menu-header h1, .shell-menu-header h2, .shell-menu-header h3, .shell-menu-header strong, .shell-menu-header th, .shell-menu-header td:first-child, .ui-modal-box h1, .ui-modal-box h2, .ui-modal-box h3, .ui-modal-box strong, .ui-modal-box th, .ui-modal-box td:first-child, .public-modal-card h1, .public-modal-card h2, .public-modal-card h3, .public-modal-card strong, .public-modal-card th, .public-modal-card td:first-child, .theme-modal-container h1, .theme-modal-container h2, .theme-modal-container h3, .theme-modal-container strong, .theme-modal-container th, .theme-modal-container td:first-child, .content-modal-curtain h1, .content-modal-curtain h2, .content-modal-curtain h3, .content-modal-curtain strong, .content-modal-curtain th, .content-modal-curtain td:first-child, .global-modal-dimmer h1, .global-modal-dimmer h2, .global-modal-dimmer h3, .global-modal-dimmer strong, .global-modal-dimmer th, .global-modal-dimmer td:first-child, .layout-modal-frame h1, .layout-modal-frame h2, .layout-modal-frame h3, .layout-modal-frame strong, .layout-modal-frame th, .layout-modal-frame td:first-child, .page-modal-panel h1, .page-modal-panel h2, .page-modal-panel h3, .page-modal-panel strong, .page-modal-panel th, .page-modal-panel td:first-child, .site-modal-shadow h1, .site-modal-shadow h2, .site-modal-shadow h3, .site-modal-shadow strong, .site-modal-shadow th, .site-modal-shadow td:first-child, .ui-modal-wrapper-bg h1, .ui-modal-wrapper-bg h2, .ui-modal-wrapper-bg h3, .ui-modal-wrapper-bg strong, .ui-modal-wrapper-bg th, .ui-modal-wrapper-bg td:first-child, .content-modified-date h1, .content-modified-date h2, .content-modified-date h3, .content-modified-date strong, .content-modified-date th, .content-modified-date td:first-child, .local-nav-header h1, .local-nav-header h2, .local-nav-header h3, .local-nav-header strong, .local-nav-header th, .local-nav-header td:first-child, .custom-nav-inner h1, .custom-nav-inner h2, .custom-nav-inner h3, .custom-nav-inner strong, .custom-nav-inner th, .custom-nav-inner td:first-child, .local-nav-wrap h1, .local-nav-wrap h2, .local-nav-wrap h3, .local-nav-wrap strong, .local-nav-wrap th, .local-nav-wrap td:first-child, .public-navbar-box h1, .public-navbar-box h2, .public-navbar-box h3, .public-navbar-box strong, .public-navbar-box th, .public-navbar-box td:first-child, .public-navbar-container h1, .public-navbar-container h2, .public-navbar-container h3, .public-navbar-container strong, .public-navbar-container th, .public-navbar-container td:first-child, .layout-navbar-inner h1, .layout-navbar-inner h2, .layout-navbar-inner h3, .layout-navbar-inner strong, .layout-navbar-inner th, .layout-navbar-inner td:first-child, .layout-navigation-box h1, .layout-navigation-box h2, .layout-navigation-box h3, .layout-navigation-box strong, .layout-navigation-box th, .layout-navigation-box td:first-child, .site-overlay-backdrop h1, .site-overlay-backdrop h2, .site-overlay-backdrop h3, .site-overlay-backdrop strong, .site-overlay-backdrop th, .site-overlay-backdrop td:first-child, .shell-overlay-curtain h1, .shell-overlay-curtain h2, .shell-overlay-curtain h3, .shell-overlay-curtain strong, .shell-overlay-curtain th, .shell-overlay-curtain td:first-child, .view-overlay-shield h1, .view-overlay-shield h2, .view-overlay-shield h3, .view-overlay-shield strong, .view-overlay-shield th, .view-overlay-shield td:first-child, .core-page-freshness h1, .core-page-freshness h2, .core-page-freshness h3, .core-page-freshness strong, .core-page-freshness th, .core-page-freshness td:first-child, .public-phone-submenu-bar h1, .public-phone-submenu-bar h2, .public-phone-submenu-bar h3, .public-phone-submenu-bar strong, .public-phone-submenu-bar th, .public-phone-submenu-bar td:first-child, .core-popup-card h1, .core-popup-card h2, .core-popup-card h3, .core-popup-card strong, .core-popup-card th, .core-popup-card td:first-child, .site-popup-dimmer h1, .site-popup-dimmer h2, .site-popup-dimmer h3, .site-popup-dimmer strong, .site-popup-dimmer th, .site-popup-dimmer td:first-child, .global-popup-frame h1, .global-popup-frame h2, .global-popup-frame h3, .global-popup-frame strong, .global-popup-frame th, .global-popup-frame td:first-child, .view-popup-shadow h1, .view-popup-shadow h2, .view-popup-shadow h3, .view-popup-shadow strong, .view-popup-shadow th, .view-popup-shadow td:first-child, .public-popup-window h1, .public-popup-window h2, .public-popup-window h3, .public-popup-window strong, .public-popup-window th, .public-popup-window td:first-child, .screen-popup-wrapper h1, .screen-popup-wrapper h2, .screen-popup-wrapper h3, .screen-popup-wrapper strong, .screen-popup-wrapper th, .screen-popup-wrapper td:first-child, .portal-portal-header h1, .portal-portal-header h2, .portal-portal-header h3, .portal-portal-header strong, .portal-portal-header th, .portal-portal-header td:first-child, .shell-portal-intro h1, .shell-portal-intro h2, .shell-portal-intro h3, .shell-portal-intro strong, .shell-portal-intro th, .shell-portal-intro td:first-child, .theme-primary-header h1, .theme-primary-header h2, .theme-primary-header h3, .theme-primary-header strong, .theme-primary-header th, .theme-primary-header td:first-child, .global-prime-header h1, .global-prime-header h2, .global-prime-header h3, .global-prime-header strong, .global-prime-header th, .global-prime-header td:first-child, .content-promo-banner h1, .content-promo-banner h2, .content-promo-banner h3, .content-promo-banner strong, .content-promo-banner th, .content-promo-banner td:first-child, .site-promo-container h1, .site-promo-container h2, .site-promo-container h3, .site-promo-container strong, .site-promo-container th, .site-promo-container td:first-child, .site-promo-content h1, .site-promo-content h2, .site-promo-content h3, .site-promo-content strong, .site-promo-content th, .site-promo-content td:first-child, .ui-promo-hero h1, .ui-promo-hero h2, .ui-promo-hero h3, .ui-promo-hero strong, .ui-promo-hero th, .ui-promo-hero td:first-child, .layout-promo-popup h1, .layout-promo-popup h2, .layout-promo-popup h3, .layout-promo-popup strong, .layout-promo-popup th, .layout-promo-popup td:first-child, .app-promo-wrapper h1, .app-promo-wrapper h2, .app-promo-wrapper h3, .app-promo-wrapper strong, .app-promo-wrapper th, .app-promo-wrapper td:first-child, .content-refresh-stamp h1, .content-refresh-stamp h2, .content-refresh-stamp h3, .content-refresh-stamp strong, .content-refresh-stamp th, .content-refresh-stamp td:first-child, .public-revision-tag h1, .public-revision-tag h2, .public-revision-tag h3, .public-revision-tag strong, .public-revision-tag th, .public-revision-tag td:first-child, .local-screen-overlay h1, .local-screen-overlay h2, .local-screen-overlay h3, .local-screen-overlay strong, .local-screen-overlay th, .local-screen-overlay td:first-child, .primary-shading-overlay h1, .primary-shading-overlay h2, .primary-shading-overlay h3, .primary-shading-overlay strong, .primary-shading-overlay th, .primary-shading-overlay td:first-child, .view-shadow-backdrop h1, .view-shadow-backdrop h2, .view-shadow-backdrop h3, .view-shadow-backdrop strong, .view-shadow-backdrop th, .view-shadow-backdrop td:first-child, .bottom-menu-bar h1, .bottom-menu-bar h2, .bottom-menu-bar h3, .bottom-menu-bar strong, .bottom-menu-bar th, .bottom-menu-bar td:first-child, .head-section h1, .head-section h2, .head-section h3, .head-section strong, .head-section th, .head-section td:first-child, .global-site-info-footer h1, .global-site-info-footer h2, .global-site-info-footer h3, .global-site-info-footer strong, .global-site-info-footer th, .global-site-info-footer td:first-child, .local-site-navigation h1, .local-site-navigation h2, .local-site-navigation h3, .local-site-navigation strong, .local-site-navigation th, .local-site-navigation td:first-child, .public-slots-toolbar h1, .public-slots-toolbar h2, .public-slots-toolbar h3, .public-slots-toolbar strong, .public-slots-toolbar th, .public-slots-toolbar td:first-child, .content-sticky-header-wrapper h1, .content-sticky-header-wrapper h2, .content-sticky-header-wrapper h3, .content-sticky-header-wrapper strong, .content-sticky-header-wrapper th, .content-sticky-header-wrapper td:first-child, .global-system-footer h1, .global-system-footer h2, .global-system-footer h3, .global-system-footer strong, .global-system-footer th, .global-system-footer td:first-child, .layout-system-header h1, .layout-system-header h2, .layout-system-header h3, .layout-system-header strong, .layout-system-header th, .layout-system-header td:first-child, .screen-timestamp-marker h1, .screen-timestamp-marker h2, .screen-timestamp-marker h3, .screen-timestamp-marker strong, .screen-timestamp-marker th, .screen-timestamp-marker td:first-child, .ui-top-bar h1, .ui-top-bar h2, .ui-top-bar h3, .ui-top-bar strong, .ui-top-bar th, .ui-top-bar td:first-child, .shell-top-bar-container h1, .shell-top-bar-container h2, .shell-top-bar-container h3, .shell-top-bar-container strong, .shell-top-bar-container th, .shell-top-bar-container td:first-child, .theme-top-box h1, .theme-top-box h2, .theme-top-box h3, .theme-top-box strong, .theme-top-box th, .theme-top-box td:first-child, .primary-top-grid h1, .primary-top-grid h2, .primary-top-grid h3, .primary-top-grid strong, .primary-top-grid th, .primary-top-grid td:first-child, .core-top-menu-bar h1, .core-top-menu-bar h2, .core-top-menu-bar h3, .core-top-menu-bar strong, .core-top-menu-bar th, .core-top-menu-bar td:first-child, .main-top-nav-bar h1, .main-top-nav-bar h2, .main-top-nav-bar h3, .main-top-nav-bar strong, .main-top-nav-bar th, .main-top-nav-bar td:first-child, .custom-top-panel h1, .custom-top-panel h2, .custom-top-panel h3, .custom-top-panel strong, .custom-top-panel th, .custom-top-panel td:first-child, .content-top-promotion h1, .content-top-promotion h2, .content-top-promotion h3, .content-top-promotion strong, .content-top-promotion th, .content-top-promotion td:first-child, .layout-top-row h1, .layout-top-row h2, .layout-top-row h3, .layout-top-row strong, .layout-top-row th, .layout-top-row td:first-child, .page-top-wrapper h1, .page-top-wrapper h2, .page-top-wrapper h3, .page-top-wrapper strong, .page-top-wrapper th, .page-top-wrapper td:first-child, .main-update-indicator h1, .main-update-indicator h2, .main-update-indicator h3, .main-update-indicator strong, .main-update-indicator th, .main-update-indicator td:first-child, .custom-update-notify h1, .custom-update-notify h2, .custom-update-notify h3, .custom-update-notify strong, .custom-update-notify th, .custom-update-notify td:first-child, .layout-update-ribbon h1, .layout-update-ribbon h2, .layout-update-ribbon h3, .layout-update-ribbon strong, .layout-update-ribbon th, .layout-update-ribbon td:first-child, .portal-updated-info h1, .portal-updated-info h2, .portal-updated-info h3, .portal-updated-info strong, .portal-updated-info th, .portal-updated-info td:first-child, .theme-upper-nav h1, .theme-upper-nav h2, .theme-upper-nav h3, .theme-upper-nav strong, .theme-upper-nav th, .theme-upper-nav td:first-child, .site-welcome-area h1, .site-welcome-area h2, .site-welcome-area h3, .site-welcome-area strong, .site-welcome-area th, .site-welcome-area td:first-child, .core-welcome-billboard h1, .core-welcome-billboard h2, .core-welcome-billboard h3, .core-welcome-billboard strong, .core-welcome-billboard th, .core-welcome-billboard td:first-child, .web-welcome-box h1, .web-welcome-box h2, .web-welcome-box h3, .web-welcome-box strong, .web-welcome-box th, .web-welcome-box td:first-child, .global-welcome-content h1, .global-welcome-content h2, .global-welcome-content h3, .global-welcome-content strong, .global-welcome-content th, .global-welcome-content td:first-child, .public-welcome-holder h1, .public-welcome-holder h2, .public-welcome-holder h3, .public-welcome-holder strong, .public-welcome-holder th, .public-welcome-holder td:first-child, .brand-welcome-stage h1, .brand-welcome-stage h2, .brand-welcome-stage h3, .brand-welcome-stage strong, .brand-welcome-stage th, .brand-welcome-stage td:first-child, .theme-welcome-wrapper h1, .theme-welcome-wrapper h2, .theme-welcome-wrapper h3, .theme-welcome-wrapper strong, .theme-welcome-wrapper th, .theme-welcome-wrapper td:first-child, header h1, header h2, header h3, header strong, footer h1, footer h2, footer h3, footer strong, footer .brand-footer-heading, th, td:first-child, table th, table td:first-child, .primary-clock-graphics, .ui-clock-symbol, .primary-date-label, .view-freshness-icon, .primary-freshness-stamp-text, .screen-last-edit-info, .view-last-updated-icon, .web-last-updated-text, .portal-modified-text, .app-refresh-indicator, .shell-time-marker-svg, .local-time-vector, .custom-timestamp-icon, .app-timestamp-value, .shell-update-glyph, .screen-updated-on-caption, .screen-action-join-btn, .ui-action-login, .view-action-register, .portal-auth-login, .site-auth-signin-btn, .content-btn-accept, .view-btn-account-login, .local-btn-action, .site-btn-action-start, .brand-btn-activate, .local-btn-activate-bonus, .web-btn-activate-promo, .site-btn-agree, .btn-claim-now, .public-btn-claim, .primary-btn-claim-bonus, .ui-btn-claim-now, .screen-btn-claim-offer, .content-btn-collect-bonus, .theme-btn-confirm, .custom-btn-continue, .local-btn-create-account, .portal-btn-cta, .view-btn-cta-action, .brand-btn-enter, .web-btn-expand-games, .brand-btn-expand-list, .app-btn-fetch-more, .shell-btn-fetch-slots, .main-btn-game-action, .shell-btn-game-launch, .brand-btn-game-play, .view-btn-game-spin, .global-btn-get-bonus, .main-btn-get-more-slots, .view-btn-get-now, .public-btn-get-offer, .core-btn-get-started, .ui-btn-get-started-hero, .main-btn-go, .core-btn-go-login, .shell-btn-go-signup, .core-btn-grab-bonus, .portal-btn-hero-action, .global-btn-hero-play, .local-btn-join, .shell-btn-join-now, .brand-btn-join-promo, .screen-btn-launch, .public-btn-launch-game, .core-btn-load-extra, .portal-btn-load-games, .btn-view-more, .page-btn-load-more-slots, .view-btn-load-next, .btn-user-enter, .ui-btn-main-action, .site-btn-modal-action, .screen-btn-more-games, .portal-btn-more-games-list, .ui-btn-more-items, .global-btn-more-slots, .primary-btn-new-account, .global-btn-next-page, .screen-btn-next-slots, .custom-btn-open-account, .primary-btn-optin, .btn-slot-launch, .primary-btn-play-demo, .custom-btn-play-direct, .brand-btn-play-game, .core-btn-play-hero, .brand-btn-play-now, .global-btn-play-now-slot, .site-btn-popup-action, .public-btn-portal-login, .page-btn-proceed, .custom-btn-promo-action, .view-btn-receive-bonus, .primary-btn-receive-offer, .local-btn-register, .primary-btn-request-more, .custom-btn-run-game, .web-btn-run-slot, .screen-btn-see-more, .global-btn-show-more, .primary-btn-show-next, .layout-btn-sign-in, .page-btn-sign-up, .custom-btn-signin, .layout-btn-signup, .public-btn-signup-now, .ui-btn-slot-action, .main-btn-slot-launch, .view-btn-slot-play, .core-btn-spin, .primary-btn-spin-now, .signup-button, .ui-btn-start-bonus, .primary-btn-start-game, .main-btn-start-playing, .theme-btn-start-spin, .shell-btn-submit, .web-btn-submit-action, .local-btn-take-bonus, .primary-btn-take-offer, .web-btn-trigger, .view-btn-trigger-game, .custom-btn-user-enter, .primary-btn-view-more, .global-enter-button, .brand-join-now-btn, .layout-login-action, .site-login-click, .primary-login-control, .layout-login-link-btn, .primary-login-trigger, .content-member-login, .btn-submit-action, .screen-register-trigger-btn, .custom-signin-button, .shell-signup-button, .page-trigger-login, .brand-trigger-signup, .main-user-login {
  color: var(--text-main) !important;
}

.layout-last-updated-badge{display:flex;align-items:center;gap:8px;background:var(--bg-subpanel,#0d1b3e);color:var(--text-main,#fff);padding:14px 20px;border-radius:8px;margin-top:30px;margin-bottom:10px;font-size:14px;font-weight:500;font-family:sans-serif;box-shadow:0 4px 12px rgba(0,0,0,0.1);border:1px solid var(--border-color,transparent)}
.view-last-updated-icon{color:var(--accent-gold,#3b82f6);min-width:16px}
@media(max-width:700px){h1{text-align:center}}

.overlay-backdrop { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.75); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); z-index: 99999; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.5s ease, visibility 0.5s ease; }
.overlay-backdrop.portal-show { opacity: 1; visibility: visible; }
.promo-popup { background-color: var(--bg-panel, #0b1220); background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('../ui/site_images/woolbet-hero.webp'); background-size: cover; background-position: center; border: 2px solid var(--accent-gold, #ffd014); border-radius: 20px; width: 90%; max-width: 420px; padding: 32px 24px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); position: relative; text-align: center; transform: scale(0.8); transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.overlay-backdrop.portal-show .promo-popup { transform: scale(1); }
.cross-close { position: absolute; top: 14px; right: 18px; font-size: 24px; color: var(--text-muted, #8e9aa8); cursor: pointer; background: transparent; border: none; outline: none; transition: color 0.2s ease, transform 0.2s ease; }
.dialog-description { font-size: 1.15rem; line-height: 1.5; color: #ffffff; margin-bottom: 24px; margin-top: 10px; font-family: 'Outfit', sans-serif; font-weight: 800; text-transform: uppercase; letter-spacing: 0.02em; }
.main-popunder-highlight { color: var(--accent-gold, #ffd014); }
.btn-submit-action { display: inline-block; background-color: var(--accent-gold, #ffd014); color: #000000; font-weight: bold; text-transform: uppercase; padding: 14px 36px; border-radius: 30px; text-decoration: none; font-size: 1.05rem; font-family: sans-serif; letter-spacing: 0.05em; border: none; outline: none; cursor: pointer; box-shadow: 0 4px 15px rgba(255, 208, 20, 0.3); transition: background-color 0.2s ease, transform 0.2s ease; animation: popunder-pulse 2s infinite; }
.btn-submit-action:hover { background-color: var(--accent-hover, #e5b90f); transform: translateY(-2px); }
@keyframes popunder-pulse { 0% { box-shadow: 0 0 0 0 var(--accent-gold, #ffd014); } 70% { box-shadow: 0 0 0 15px rgba(255, 208, 20, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 208, 20, 0); } }
/* generator-layout-overrides:v2 */
header [data-site-logo='true'] { display: block; width: auto; height: auto; max-width: 180px; max-height: 42px; object-fit: contain; flex-shrink: 0; }
@media (max-width: 768px) { header [data-site-logo='true'] { max-height: clamp(32px, 9.5vw, 38px); max-width: clamp(120px, 40vw, 170px); } }
body header, body header[class], footer, section, .content-sticky-header-wrapper, .ui-head-section, .theme-header-wrap, .head-section, .brand-gateway-banner, .web-first-view, .top-promotion, .theme-lead-banner, .main-games-wrapper, .portal-slots-wrapper, .screen-casino-slots-area, .slots-wrapper, .site-article-section, .app-info-section, .core-bottom-bar, .shell-app-footer, .bottom-menu-bar { width: 100%; max-width: 100%; margin-left: 0; margin-right: 0; box-sizing: border-box; }
@media (min-width: 769px) { header > :first-child, header .main-header-holder, header .public-header-inner, header .navigation-box, header .public-header-shell, header .public-navbar-box, header .portal-portal-header, header .content-header-wrapper, header .brand-header-content, header .public-navbar-container, section .app-promo-wrapper, section .site-promo-content, section .promo-wrapper, section .public-banner-inner, section .global-hero-wrapper, .screen-hero-content, .view-section-container, .main-games-wrapper > .view-section-container, .portal-slots-wrapper > .view-section-container, .slots-wrapper > .view-section-container, .screen-casino-slots-area > .view-section-container, .public-slots-area > .view-section-container, section .public-slots-toolbar, section .local-games-list, section .slots-row, section .content-slots-layout, section .portal-slots-flex-grid, main, article, .web-article-wrapper, .brand-article-shell, .primary-article-body, .layout-article-content, .custom-article-holder, .public-post-wrapper, .article-inner, .app-info-wrapper, .view-main-article-box, .primary-content-wrapper, .site-article-section .view-section-container, .public-article-inner, .page-article-grid, .ui-post-content, .global-content-area, .brand-footer-wrapper, .local-footer-blocks-grid, .global-footer-bottom, footer .screen-footer-wrap-box, footer .page-footer-main-box, footer .footer-box, footer .global-footer-layout-box, footer .view-footer-info-grid, footer .global-footer-widgets-grid { max-width: 1240px; margin-left: auto; margin-right: auto;  box-sizing: border-box; width: 100%; } }
@media (min-width: 769px) { .app-promo-wrapper > p, .site-promo-content > p, .public-banner-inner > p, .global-hero-wrapper > p, .view-banner-text, .custom-welcome-paragraph, .shell-banner-desc, .screen-welcome-desc, .ui-intro-desc, .screen-promo-desc { max-width: 620px; } }
.page-slot-img-wrapper { border-radius: 18px; }
@media (min-width: 769px) { .top-promotion, .brand-gateway-banner, .web-first-view { padding-top: 89px; padding-bottom: 89px; min-height: 448px; } }
@media (min-width: 769px) { .slots-row, .local-games-list, .content-slots-layout, .portal-slots-flex-grid { gap: 15px; } }
@media (max-width: 768px) { .slots-row, .local-games-list, .content-slots-layout, .portal-slots-flex-grid { gap: 8px; } }
.bottom-menu-bar, .core-bottom-bar, .shell-app-footer { padding-top: 38px; padding-bottom: 38px; }
.btn-claim-now, .shell-btn-join-now, .global-enter-button { border-radius: 6px; }
a[data-affiliate-filled='true'] { color: var(--cta-text-color, #ffffff) !important; -webkit-text-fill-color: var(--cta-text-color, #ffffff) !important; }
body header a[data-affiliate-login='true'] { color: var(--text-main); -webkit-text-fill-color: var(--text-main); }
body [data-hero-background='true'] { --text-main: #ffffff; --text-gray: #e2e8f0; --text-muted: #cbd5e1; }
body [data-hero-background='true'] p { color: var(--text-gray); }

@media (min-width: 769px) {
  .slots-row, .ui-games-grid, .content-slots-layout, .ui-games-layout, .custom-slots-matrix, .global-games-matrix, .custom-lobby-grid, .ui-slots-display, .global-games-display, .local-slots-row, .theme-games-row, .layout-slots-list, .local-games-list, .public-slots-deck, .portal-games-deck, .layout-lobby-layout, .portal-slots-gallery, .custom-games-gallery, .main-lobby-matrix, .portal-slots-flex-grid, .brand-games-flex-grid {
    grid-template-columns: repeat(7, 1fr);
  }
}

@media (max-width: 768px) {
  .slots-row, .ui-games-grid, .content-slots-layout, .ui-games-layout, .custom-slots-matrix, .global-games-matrix, .custom-lobby-grid, .ui-slots-display, .global-games-display, .local-slots-row, .theme-games-row, .layout-slots-list, .local-games-list, .public-slots-deck, .portal-games-deck, .layout-lobby-layout, .portal-slots-gallery, .custom-games-gallery, .main-lobby-matrix, .portal-slots-flex-grid, .brand-games-flex-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
