/* =========================================================
   ninong game - theme.css
   Mobile-first HTML5 gaming website (Philippines / en-PH)
   Prefix: w33c5-
   Palette: #228B22 | #DEE2E6 | #34495E | #8470FF
   ========================================================= */

/* ---------- CSS Variables ---------- */
:root {
  --w33c5-primary: #228B22;      /* forest green */
  --w33c5-accent:  #8470FF;      /* vivid violet */
  --w33c5-bg:      #34495E;      /* dark slate background */
  --w33c5-bg-2:    #2b3a4a;      /* darker panel */
  --w33c5-bg-3:    #1f2b38;      /* deepest panel */
  --w33c5-text:    #DEE2E6;      /* light grey text */
  --w33c5-text-dim:#aeb9c4;
  --w33c5-gold:    #f5c542;
  --w33c5-danger:  #e0556b;
  --w33c5-radius:  14px;
  --w33c5-shadow:  0 6px 22px rgba(0,0,0,.28);
  --w33c5-shadow-soft: 0 3px 10px rgba(0,0,0,.18);
  --w33c5-header-h: 60px;
  --w33c5-bottomnav-h: 62px;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  font-size: 62.5%;            /* 1rem = 10px */
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: "Segoe UI", "Helvetica Neue", Roboto, Arial, sans-serif;
  background: var(--w33c5-bg);
  color: var(--w33c5-text);
  line-height: 1.5rem;
  font-size: 1.5rem;
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- Layout primitives ---------- */
.w33c5-wrapper {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  position: relative;
}
.w33c5-container {
  width: 100%;
  padding: 0 1.4rem;
}
.w33c5-section {
  padding: 2.4rem 0 1.6rem;
}
.w33c5-section-alt { background: var(--w33c5-bg-2); }

/* ---------- Header ---------- */
.w33c5-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--w33c5-header-h);
  background: linear-gradient(90deg, var(--w33c5-bg-3) 0%, var(--w33c5-bg-2) 100%);
  border-bottom: 2px solid var(--w33c5-primary);
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.w33c5-header-inner {
  max-width: 430px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.2rem;
}
.w33c5-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
}
.w33c5-logo img {
  width: 30px; height: 30px;
  border-radius: 8px;
  border: 1px solid var(--w33c5-primary);
}
.w33c5-logo-name {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--w33c5-text);
  letter-spacing: .3px;
}
.w33c5-logo-name b { color: var(--w33c5-primary); }
.w33c5-header-actions {
  display: flex;
  align-items: center;
  gap: .6rem;
}
.w33c5-menu-btn {
  width: 38px; height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(132,112,255,.14);
  color: var(--w33c5-accent);
  font-size: 2rem;
}

/* ---------- Buttons ---------- */
.w33c5-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .8rem 1.4rem;
  border-radius: 30px;
  font-size: 1.4rem;
  font-weight: 700;
  min-height: 38px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.w33c5-btn:active { transform: scale(.96); }
.w33c5-btn-primary {
  background: linear-gradient(135deg, var(--w33c5-primary) 0%, #1c7a1c 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(34,139,34,.4);
}
.w33c5-btn-accent {
  background: linear-gradient(135deg, var(--w33c5-accent) 0%, #6b5cf0 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(132,112,255,.45);
}
.w33c5-btn-gold {
  background: linear-gradient(135deg, var(--w33c5-gold) 0%, #e0a82e 100%);
  color: #1f2b38;
}
.w33c5-btn-ghost {
  border: 1px solid var(--w33c5-text-dim);
  color: var(--w33c5-text);
}
.w33c5-btn-block {
  display: flex;
  width: 100%;
  padding: 1.1rem;
  font-size: 1.6rem;
}
.w33c5-text-link {
  color: var(--w33c5-accent);
  font-weight: 700;
  border-bottom: 1px dashed rgba(132,112,255,.5);
}
.w33c5-text-link.green { color: var(--w33c5-primary); border-bottom-color: rgba(34,139,34,.6); }

/* ---------- Mobile Menu Drawer ---------- */
.w33c5-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease;
}
.w33c5-menu-overlay.open { opacity: 1; visibility: visible; }
.w33c5-mobile-menu {
  position: fixed;
  top: 0; right: -82%;
  width: 78%; max-width: 340px;
  height: 100vh;
  background: var(--w33c5-bg-3);
  z-index: 9999;
  padding: 2rem 1.6rem;
  overflow-y: auto;
  transition: right .3s ease;
  border-left: 2px solid var(--w33c5-primary);
}
.w33c5-mobile-menu.open { right: 0; }
.w33c5-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.6rem;
}
.w33c5-menu-head h3 {
  font-size: 1.8rem;
  color: var(--w33c5-text);
}
.w33c5-menu-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(224,85,107,.15);
  color: var(--w33c5-danger);
  font-size: 1.8rem;
}
.w33c5-menu-list li {
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.w33c5-menu-list a {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: 1.25rem .6rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--w33c5-text);
}
.w33c5-menu-list a i,
.w33c5-menu-list a span.mi,
.w33c5-menu-list a span.bi {
  color: var(--w33c5-primary);
  font-size: 2rem;
  width: 24px;
  text-align: center;
}
.w33c5-menu-list a:hover { color: var(--w33c5-accent); }
.w33c5-menu-cta {
  display: flex;
  gap: .8rem;
  margin-top: 1.6rem;
}
.w33c5-menu-cta .w33c5-btn { flex: 1; }

/* ---------- Main / sections ---------- */
.w33c5-main {
  padding-top: var(--w33c5-header-h);
  padding-bottom: calc(var(--w33c5-bottomnav-h) + 24px);
}
.w33c5-section-title {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--w33c5-text);
  margin-bottom: 1.2rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid rgba(34,139,34,.4);
}
.w33c5-section-title .w33c5-bar {
  width: 5px; height: 22px;
  background: var(--w33c5-primary);
  border-radius: 3px;
}
.w33c5-section-title small {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--w33c5-text-dim);
  margin-left: auto;
}
.w33c5-h1 {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--w33c5-text);
}
.w33c5-h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--w33c5-text);
  margin: 1.6rem 0 1rem;
}
.w33c5-h3 {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--w33c5-primary);
  margin: 1.2rem 0 .8rem;
}
.w33c5-lead {
  font-size: 1.5rem;
  color: var(--w33c5-text-dim);
  margin-bottom: 1rem;
}
.w33c5-p {
  margin-bottom: 1rem;
  color: var(--w33c5-text);
}

/* ---------- Hero / Carousel ---------- */
.w33c5-hero {
  position: relative;
  margin-top: 1rem;
  border-radius: var(--w33c5-radius);
  overflow: hidden;
  box-shadow: var(--w33c5-shadow);
}
.w33c5-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--w33c5-radius);
}
.w33c5-carousel-track {
  display: flex;
  transition: transform .45s ease;
}
.w33c5-carousel-slide {
  min-width: 100%;
  position: relative;
}
.w33c5-carousel-slide img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.w33c5-carousel-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1rem 1.2rem;
  background: linear-gradient(0deg, rgba(31,43,56,.92) 0%, rgba(31,43,56,0) 100%);
}
.w33c5-carousel-cap h2 {
  color: #fff;
  font-size: 1.7rem;
  font-weight: 800;
  margin: 0 0 .3rem;
}
.w33c5-carousel-cap p {
  font-size: 1.3rem;
  color: var(--w33c5-text);
}
.w33c5-carousel-dots {
  position: absolute;
  bottom: 8px; right: 10px;
  display: flex;
  gap: 5px;
  z-index: 5;
}
.w33c5-carousel-dots span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
}
.w33c5-carousel-dots span.active {
  background: var(--w33c5-gold);
  width: 16px;
  border-radius: 5px;
}

/* ---------- Hero CTA banner ---------- */
.w33c5-hero-cta {
  background: linear-gradient(135deg, rgba(34,139,34,.95) 0%, rgba(132,112,255,.95) 100%);
  padding: 1.6rem;
  border-radius: var(--w33c5-radius);
  margin: 1.2rem 0;
  text-align: center;
  box-shadow: var(--w33c5-shadow);
}
.w33c5-hero-cta h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: .4rem;
}
.w33c5-hero-cta p {
  color: rgba(255,255,255,.92);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

/* ---------- Game grid ---------- */
.w33c5-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
}
.w33c5-grid-4 { grid-template-columns: repeat(4, 1fr); }
.w33c5-game-card {
  background: var(--w33c5-bg-2);
  border-radius: 12px;
  padding: .6rem;
  text-align: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.05);
  transition: transform .2s ease, box-shadow .2s ease;
}
.w33c5-game-card:active { transform: scale(.96); }
.w33c5-game-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: .4rem;
  background: #1f2b38;
}
.w33c5-game-card .w33c5-game-name {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--w33c5-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.w33c5-game-card .w33c5-game-tag {
  display: inline-block;
  font-size: 1rem;
  color: var(--w33c5-gold);
  margin-top: .2rem;
}

/* ---------- Category header strip ---------- */
.w33c5-cat-strip {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: linear-gradient(90deg, rgba(34,139,34,.25) 0%, rgba(132,112,255,.18) 100%);
  padding: .8rem 1rem;
  border-radius: 10px;
  margin: 1.4rem 0 .9rem;
  border-left: 4px solid var(--w33c5-primary);
}
.w33c5-cat-strip h2 {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--w33c5-text);
  margin: 0;
}
.w33c5-cat-strip .w33c5-count {
  margin-left: auto;
  font-size: 1.2rem;
  color: var(--w33c5-text-dim);
}

/* ---------- Cards ---------- */
.w33c5-card {
  background: var(--w33c5-bg-2);
  border-radius: var(--w33c5-radius);
  padding: 1.4rem;
  box-shadow: var(--w33c5-shadow-soft);
  margin-bottom: 1rem;
  border: 1px solid rgba(255,255,255,.04);
}
.w33c5-card-accent {
  border-top: 3px solid var(--w33c5-accent);
}
.w33c5-card-green {
  border-top: 3px solid var(--w33c5-primary);
}
.w33c5-card-gold {
  border-top: 3px solid var(--w33c5-gold);
}
.w33c5-card h3 { margin-top: 0; }
.w33c5-info-list li {
  position: relative;
  padding: .6rem 0 .6rem 1.6rem;
  font-size: 1.4rem;
  border-bottom: 1px dashed rgba(255,255,255,.07);
}
.w33c5-info-list li:last-child { border-bottom: none; }
.w33c5-info-list li::before {
  content: "▸";
  position: absolute;
  left: 0; top: .6rem;
  color: var(--w33c5-primary);
  font-size: 1.4rem;
}

/* ---------- Steps ---------- */
.w33c5-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.w33c5-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--w33c5-bg-2);
  padding: 1rem;
  border-radius: 12px;
}
.w33c5-step-num {
  flex: 0 0 32px;
  width: 32px; height: 32px;
  background: var(--w33c5-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.5rem;
}
.w33c5-step-body h4 {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--w33c5-text);
  margin-bottom: .2rem;
}
.w33c5-step-body p {
  font-size: 1.3rem;
  color: var(--w33c5-text-dim);
}

/* ---------- RTP table ---------- */
.w33c5-rtp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.3rem;
  background: var(--w33c5-bg-2);
  border-radius: 10px;
  overflow: hidden;
}
.w33c5-rtp-table th,
.w33c5-rtp-table td {
  padding: .7rem .8rem;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.w33c5-rtp-table th {
  background: var(--w33c5-primary);
  color: #fff;
  font-size: 1.25rem;
}
.w33c5-rtp-table td.w33c5-pct {
  color: var(--w33c5-gold);
  font-weight: 700;
}

/* ---------- Testimonials ---------- */
.w33c5-testi {
  background: var(--w33c5-bg-2);
  padding: 1.1rem;
  border-radius: 12px;
  margin-bottom: .8rem;
  border-left: 3px solid var(--w33c5-accent);
}
.w33c5-testi-head {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: .5rem;
}
.w33c5-testi-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--w33c5-primary), var(--w33c5-accent));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.4rem;
}
.w33c5-testi-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--w33c5-text);
}
.w33c5-testi-stars {
  color: var(--w33c5-gold);
  font-size: 1.2rem;
  margin-left: auto;
}
.w33c5-testi p {
  font-size: 1.3rem;
  color: var(--w33c5-text-dim);
}

/* ---------- Payment grid ---------- */
.w33c5-pay-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .6rem;
}
.w33c5-pay-item {
  background: var(--w33c5-bg-2);
  border-radius: 10px;
  padding: .8rem .4rem;
  text-align: center;
  font-size: 1.1rem;
  color: var(--w33c5-text-dim);
}
.w33c5-pay-item i,
.w33c5-pay-item span.mi {
  font-size: 2rem;
  color: var(--w33c5-primary);
  display: block;
  margin-bottom: .3rem;
}

/* ---------- Winners ticker ---------- */
.w33c5-winner {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .7rem .9rem;
  background: var(--w33c5-bg-2);
  border-radius: 10px;
  margin-bottom: .6rem;
}
.w33c5-winner-badge {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--w33c5-gold), #e0a82e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1f2b38;
  font-size: 1.6rem;
}
.w33c5-winner-info { flex: 1; }
.w33c5-winner-info b {
  font-size: 1.35rem;
  color: var(--w33c5-text);
  display: block;
}
.w33c5-winner-info span {
  font-size: 1.15rem;
  color: var(--w33c5-text-dim);
}
.w33c5-winner-amt {
  color: var(--w33c5-gold);
  font-weight: 800;
  font-size: 1.4rem;
}

/* ---------- FAQ ---------- */
.w33c5-faq-item {
  background: var(--w33c5-bg-2);
  border-radius: 10px;
  margin-bottom: .7rem;
  overflow: hidden;
}
.w33c5-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.2rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--w33c5-text);
}
.w33c5-faq-q .w33c5-icon {
  color: var(--w33c5-accent);
  transition: transform .25s;
}
.w33c5-faq-item.open .w33c5-faq-q .w33c5-icon { transform: rotate(45deg); }
.w33c5-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  padding: 0 1.2rem;
  color: var(--w33c5-text-dim);
  font-size: 1.3rem;
}
.w33c5-faq-item.open .w33c5-faq-a {
  max-height: 320px;
  padding: 0 1.2rem 1rem;
}

/* ---------- Achievement / Tricks ---------- */
.w33c5-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.w33c5-chip {
  padding: .5rem .9rem;
  background: rgba(132,112,255,.14);
  color: var(--w33c5-accent);
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: 600;
}
.w33c5-chip.green {
  background: rgba(34,139,34,.18);
  color: var(--w33c5-primary);
}

/* ---------- App Download CTA ---------- */
.w33c5-app-cta {
  background: linear-gradient(135deg, var(--w33c5-bg-3) 0%, #1a2533 100%);
  border: 1px solid var(--w33c5-primary);
  border-radius: var(--w33c5-radius);
  padding: 1.6rem;
  text-align: center;
  margin: 1rem 0;
}
.w33c5-app-cta h3 {
  color: #fff;
  margin-top: 0;
}
.w33c5-app-btns {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  margin-top: 1rem;
}

/* ---------- Footer ---------- */
.w33c5-footer {
  background: var(--w33c5-bg-3);
  padding: 2rem 0 1.4rem;
  border-top: 2px solid var(--w33c5-primary);
  margin-top: 1.6rem;
}
.w33c5-footer-brand {
  font-size: 1.4rem;
  color: var(--w33c5-text-dim);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.w33c5-footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .6rem 1rem;
  margin-bottom: 1rem;
}
.w33c5-footer-links a {
  font-size: 1.3rem;
  color: var(--w33c5-text);
  padding: .3rem 0;
}
.w33c5-footer-links a:hover { color: var(--w33c5-accent); }
.w33c5-footer-promos {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: .8rem 0 1.2rem;
}
.w33c5-footer-promos .w33c5-btn {
  font-size: 1.2rem;
  padding: .55rem .9rem;
  min-height: 32px;
}
.w33c5-footer-copy {
  font-size: 1.2rem;
  color: var(--w33c5-text-dim);
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.06);
}

/* ---------- Mobile Bottom Nav ---------- */
.w33c5-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: var(--w33c5-bottomnav-h);
  background: linear-gradient(180deg, var(--w33c5-bg-2) 0%, var(--w33c5-bg-3) 100%);
  border-top: 2px solid var(--w33c5-primary);
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  z-index: 1000;
  box-shadow: 0 -3px 12px rgba(0,0,0,.35);
}
.w33c5-bottom-nav-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: var(--w33c5-text-dim);
  font-size: 1.05rem;
  min-width: 60px;
  min-height: 60px;
  position: relative;
  transition: color .2s ease, transform .2s ease;
}
.w33c5-bottom-nav-btn i,
.w33c5-bottom-nav-btn span.mi,
.w33c5-bottom-nav-btn span.bi {
  font-size: 2.2rem;
}
.w33c5-bottom-nav-btn:active { transform: scale(.92); }
.w33c5-bottom-nav-btn.active { color: var(--w33c5-primary); }
.w33c5-bottom-nav-btn .w33c5-bn-promo {
  color: var(--w33c5-gold);
}
.w33c5-bottom-nav-btn .w33c5-bn-badge {
  position: absolute;
  top: 6px; right: 14px;
  background: var(--w33c5-danger);
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  border-radius: 50%;
  width: 16px; height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.w33c5-bn-center {
  position: relative;
  top: -14px;
  background: linear-gradient(135deg, var(--w33c5-primary) 0%, #1c7a1c 100%);
  width: 50px; height: 50px;
  border-radius: 50%;
  align-self: center;
  color: #fff;
  box-shadow: 0 4px 14px rgba(34,139,34,.5);
  border: 3px solid var(--w33c5-bg-3);
}

/* ---------- Utilities ---------- */
.w33c5-mt-1 { margin-top: .6rem; }
.w33c5-mt-2 { margin-top: 1.2rem; }
.w33c5-mb-1 { margin-bottom: .6rem; }
.w33c5-mb-2 { margin-bottom: 1.2rem; }
.w33c5-text-center { text-align: center; }
.w33c5-text-gold { color: var(--w33c5-gold); }
.w33c5-text-green { color: var(--w33c5-primary); }
.w33c5-text-accent { color: var(--w33c5-accent); }
.w33c5-bold { font-weight: 800; }
.w33c5-divider {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: 1.2rem 0;
}
.w33c5-flex { display: flex; align-items: center; gap: .6rem; }

/* ---------- Desktop: hide bottom nav, widen container ---------- */
@media (min-width: 769px) {
  .w33c5-bottom-nav { display: none; }
  .w33c5-wrapper { max-width: 430px; }
}
@media (max-width: 768px) {
  .w33c5-main { padding-bottom: calc(var(--w33c5-bottomnav-h) + 24px); }
}

/* icon font helpers */
.mi {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}
