/* ============================================================
   RIFAPRESS — Design System v2
   Carregado após pro-dynamic-css para máxima prioridade
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;500;600;700;800&display=swap');

/* ── Variáveis ─────────────────────────────────────────────── */
:root {
  --bg:          #0d003d;
  --bg-card:     #333333;
  --bg-surface:  #333333;
  --bg-hover:    #292929;
  --border:      rgba(255,255,255,0.12);
  --border-md:   rgba(255,255,255,0.22);

  --purple:      #007bff;
  --purple-lt:   #17a2b8;
  --gold:        #ffc107;
  --gold-dk:     #e0a800;
  --green:       #28a745;
  --green-dk:    #006d47;
  --orange:      #17a2b8;
  --blue:        #007bff;
  --cyan:        #17a2b8;
  --red:         #dc3545;

  --txt:         #ffffff;
  --txt-muted:   #e3e3e3;

  --r:           14px;
  --r-sm:        9px;
  --shadow:      0 4px 28px rgba(0,0,0,.55);
  --shadow-lg:   0 10px 48px rgba(0,0,0,.7);
}

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

body {
  font-family: 'Lato', 'Roboto', sans-serif !important;
  background: var(--bg) !important;
  color: var(--txt) !important;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6,
a, li, span, p, div, label, input, select, textarea {
  font-family: 'Lato', 'Roboto', sans-serif !important;
}

/* ── Scrollbar ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2a2a42; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #3a3a58; }

/* ── Navbar ─────────────────────────────────────────────────── */
nav.navbar,
nav.navbar.bg-dark,
nav.navbar.bg_custum_menu {
  background: rgba(11,11,22,0.97) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border-bottom: 1px solid var(--border-md) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,.6) !important;
  padding: 0.6rem 0 !important;
}

.navbar-brand {
  font-weight: 800 !important;
  font-size: 1.25rem !important;
  color: #fff !important;
  letter-spacing: -0.4px;
}

.navbar-nav .nav-link {
  color: rgba(255,255,255,.65) !important;
  font-size: 0.76rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.7px !important;
  padding: 0.45rem 0.8rem !important;
  border-radius: 6px;
  transition: color .2s, background .2s !important;
}

.navbar-nav .nav-link:hover {
  color: #fff !important;
  background: rgba(255,255,255,.07) !important;
}

.navbar-toggler {
  border-color: var(--border-md) !important;
}

/* ── Home — Cards ───────────────────────────────────────────── */
.main_card {
  padding: 10px !important;
}

.main_card .card {
  background: var(--bg-card) !important;
  border: 1px solid var(--border-md) !important;
  border-radius: var(--r) !important;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.main_card .card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(124,58,237,.45) !important;
}

/* Image */
.main_card .card > a > div.position-relative {
  overflow: hidden;
}

.main_card .card-img-top {
  width: 100% !important;
  height: 210px !important;
  object-fit: cover !important;
  display: block;
  transition: transform .4s ease;
}

.main_card .card:hover .card-img-top {
  transform: scale(1.04);
}

/* Price badge */
.bg_custom_price,
.main_card span.bg-success.position-absolute {
  background: linear-gradient(135deg, var(--green-dk), var(--green)) !important;
  color: #fff !important;
  font-family: 'Lato', sans-serif !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  padding: 5px 10px !important;
  border-radius: 8px !important;
  letter-spacing: 0.2px;
  box-shadow: 0 2px 10px rgba(0,0,0,.4);
}

/* Encerrado badge */
.bg_custom_statu,
.main_card .bg-danger.position-absolute {
  background: linear-gradient(135deg, #b91c1c, var(--red)) !important;
  color: #fff !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  border-radius: 7px !important;
  padding: 4px 9px !important;
}

/* Card body */
.main_card .card-body {
  background: var(--bg-card) !important;
  padding: 1rem 1rem 0.6rem !important;
}

.main_card .card-title,
.main_card .color_main_title,
.main_card a.color_main_title,
.main_card a.color_main_title h5,
.main_card h5.card-title {
  color: #eeeeff !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  margin-bottom: 0.75rem !important;
  display: block;
}

/* Stats pills */
.main_card .card-body .btn-light {
  background: var(--bg-surface) !important;
  border: 1px solid var(--border-md) !important;
  border-radius: 20px !important;
  padding: 4px 12px !important;
  font-size: 0.7rem !important;
  font-weight: 600 !important;
  margin: 2px 1px !important;
  line-height: 1.5 !important;
  transition: border-color .2s !important;
}

.main_card .card-body .btn-light.text-success { color: var(--green)  !important; border-color: rgba(16,185,129,.3) !important; }
.main_card .card-body .btn-light.text-warning { color: var(--orange) !important; border-color: rgba(249,115,22,.3) !important; }
.main_card .card-body .btn-light.text-danger  { color: #f87171      !important; border-color: rgba(248,113,113,.3) !important; }

/* CTA button */
.main_card .btn-success.d-block,
.main_card a.btn.btn-success {
  background: linear-gradient(135deg, var(--green-dk), var(--green)) !important;
  border: none !important;
  border-radius: 0 0 var(--r) var(--r) !important;
  padding: 13px 16px !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.6px !important;
  color: #fff !important;
  transition: filter .2s !important;
}

.main_card .btn-success.d-block:hover {
  filter: brightness(1.12) !important;
  color: #fff !important;
}

.main_card .btn-danger.d-block,
.main_card a.btn.btn-danger {
  background: linear-gradient(135deg, #b91c1c, var(--red)) !important;
  border: none !important;
  border-radius: 0 0 var(--r) var(--r) !important;
  padding: 13px 16px !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  color: #fff !important;
}

/* ── Single — Stats bar ────────────────────────────────────── */
ul.caption-numbers {
  background: var(--bg-surface) !important;
  border: 1px solid var(--border-md) !important;
  border-radius: var(--r-sm) !important;
  padding: 8px 10px !important;
  margin: 14px 0 !important;
  display: flex !important;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

ul.caption-numbers li {
  border-radius: 20px !important;
  padding: 5px 14px !important;
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  margin: 0 !important;
  border-width: 1px !important;
  border-style: solid !important;
  display: inline-flex !important;
  align-items: center;
  gap: 5px;
  transition: opacity .2s;
}

li.available {
  background: rgba(16,185,129,.12) !important;
  border-color: rgba(16,185,129,.35) !important;
  color: var(--green) !important;
}

.caption-numbers li.reserved {
  background: rgba(249,115,22,.12) !important;
  border-color: rgba(249,115,22,.35) !important;
  color: var(--orange) !important;
  cursor: default !important;
}

.caption-numbers li.paid {
  background: rgba(59,130,246,.12) !important;
  border-color: rgba(59,130,246,.35) !important;
  color: var(--blue) !important;
  cursor: default !important;
}

.caption-numbers li.your-purchase,
.btn-your-purchase {
  background: rgba(124,58,237,.15) !important;
  border-color: rgba(124,58,237,.4) !important;
  color: var(--purple-lt) !important;
  cursor: default !important;
}

ul.caption-numbers li.send-receipt {
  background: linear-gradient(135deg, var(--purple), var(--purple-lt)) !important;
  border-color: transparent !important;
  color: #fff !important;
  cursor: pointer !important;
  box-shadow: 0 2px 10px rgba(124,58,237,.4);
}

ul.caption-numbers li.send-receipt:hover {
  filter: brightness(1.1);
}

/* ── Single — Reserve button ────────────────────────────────── */
.btn-success.btn-lg.btn-block.btnSubmit,
.main-selected-numbers .btn-success {
  background: linear-gradient(135deg, var(--purple), var(--purple-lt)) !important;
  border: none !important;
  border-radius: var(--r-sm) !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  padding: 14px !important;
  box-shadow: 0 4px 20px rgba(124,58,237,.4) !important;
  letter-spacing: 0.3px;
  color: #fff !important;
  transition: filter .2s !important;
}

.btn-success.btn-lg.btn-block.btnSubmit:hover {
  filter: brightness(1.1) !important;
}

/* Selected value display */
.main-selected-numbers span.js-value {
  background: var(--bg-surface) !important;
  color: var(--gold) !important;
  font-weight: 700 !important;
  font-size: 1.05rem !important;
  border-radius: var(--r-sm) var(--r-sm) 0 0;
  border-bottom: 1px solid var(--border-md);
  padding: 10px 16px !important;
}

/* ── Number Grid ────────────────────────────────────────────── */
ul.list_card {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, 52px) !important;
  gap: 6px !important;
  padding: 4px 0 !important;
  justify-content: start !important;
}

ul.list_card li {
  width: 52px !important;
  margin: 0 !important;
  text-align: center;
}

ul.list_card li a,
ul.list_card li span {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 52px !important;
  height: 40px !important;
  max-width: none !important;
  line-height: 1 !important;
  border-radius: 8px !important;
  border: 1.5px solid var(--border-md) !important;
  background: var(--bg-surface) !important;
  color: var(--txt-muted) !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  transition: background .15s, border-color .15s, color .15s, transform .15s, box-shadow .15s !important;
  cursor: pointer;
  padding: 0 !important;
  padding-bottom: 0 !important;
  letter-spacing: 0.3px;
}

/* Available hover */
ul.list_card li a:not(.reserved):not(.paid):not(.disabled):not(.your-purchase):hover {
  background: rgba(14,165,233,.15) !important;
  border-color: var(--cyan) !important;
  color: var(--cyan) !important;
  transform: scale(1.12) !important;
  box-shadow: 0 0 10px rgba(14,165,233,.35) !important;
}

/* Checked / selected */
.checked,
ul.list_card li a.checked {
  background: linear-gradient(135deg, #0284c7, var(--cyan)) !important;
  border-color: var(--cyan) !important;
  color: #fff !important;
  box-shadow: 0 0 12px rgba(14,165,233,.5) !important;
  transform: scale(1.05) !important;
}

/* Reserved */
ul.list_card li a.reserved,
ul.list_card li span.reserved {
  background: rgba(249,115,22,.12) !important;
  border-color: rgba(249,115,22,.4) !important;
  color: var(--orange) !important;
  cursor: not-allowed !important;
}

/* Paid */
ul.list_card li a.paid,
ul.list_card li span.paid {
  background: rgba(16,185,129,.12) !important;
  border-color: rgba(16,185,129,.4) !important;
  color: var(--green) !important;
  cursor: not-allowed !important;
}

/* Your numbers */
ul.list_card li a.your-purchase,
ul.list_card li span.your-purchase {
  background: rgba(124,58,237,.18) !important;
  border-color: rgba(124,58,237,.55) !important;
  color: var(--purple-lt) !important;
  cursor: not-allowed !important;
  box-shadow: 0 0 8px rgba(124,58,237,.3) !important;
}

/* ── Modal ──────────────────────────────────────────────────── */
.modal-content {
  background: var(--bg-card) !important;
  border: 1px solid var(--border-md) !important;
  border-radius: var(--r) !important;
  color: var(--txt) !important;
  box-shadow: var(--shadow-lg) !important;
}

.modal-header {
  border-bottom: 1px solid var(--border) !important;
  padding: 1rem 1.25rem !important;
}

.modal-title {
  color: var(--txt) !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
}

.modal-header .close {
  color: var(--txt-muted) !important;
  opacity: 1 !important;
  text-shadow: none !important;
}

.modal-footer {
  border-top: 1px solid var(--border) !important;
  padding: 0.75rem 1.25rem !important;
}

.modal-body {
  padding: 1.25rem !important;
}

.modal-body p {
  color: var(--txt-muted) !important;
  font-size: 0.88rem !important;
}

.modal-body .form-control,
.modal-body input,
.modal-body select,
.modal-body textarea {
  background: var(--bg-surface) !important;
  border: 1px solid var(--border-md) !important;
  color: var(--txt) !important;
  border-radius: var(--r-sm) !important;
  font-size: 0.9rem !important;
}

.modal-body .form-control:focus {
  border-color: var(--purple) !important;
  box-shadow: 0 0 0 3px rgba(124,58,237,.2) !important;
  background: var(--bg-hover) !important;
}

.modal-body label {
  color: var(--txt-muted) !important;
  font-size: 0.8rem !important;
  font-weight: 500 !important;
}

.modal-body .custom-control-label {
  color: var(--txt-muted) !important;
  font-size: 0.78rem !important;
}

/* Modal submit button */
.modal-footer .btn-success,
.modal-body .btn-success {
  background: linear-gradient(135deg, var(--green-dk), var(--green)) !important;
  border: none !important;
  border-radius: var(--r-sm) !important;
  font-weight: 700 !important;
  color: #fff !important;
  padding: 10px 20px !important;
}

.modal-footer .btn-light {
  background: var(--bg-surface) !important;
  border: 1px solid var(--border-md) !important;
  color: var(--txt-muted) !important;
  border-radius: var(--r-sm) !important;
}

/* ── Alert ──────────────────────────────────────────────────── */
.alert.alert-danger {
  background: rgba(239,68,68,.1) !important;
  border: 1px solid rgba(239,68,68,.3) !important;
  color: #fca5a5 !important;
  border-radius: var(--r-sm) !important;
}

/* ── Footer ─────────────────────────────────────────────────── */
footer.bg-dark,
footer.bg_custom_main_footer {
  background: var(--bg-card) !important;
  border-top: 1px solid var(--border-md);
}

.bg-success.social_footer,
.container-fluid.bg-success.social_footer {
  background: linear-gradient(135deg, #064e3b, #065f46) !important;
  border-top: 1px solid rgba(255,255,255,.08) !important;
  border-bottom: 1px solid rgba(255,255,255,.08) !important;
}

.bg_custom_secondary_footer,
.bg-success.text-white.text-center.py-3.bg_custom_secondary_footer {
  background: #060610 !important;
}

.bg_custom_secondary_footer p {
  color: var(--txt-muted) !important;
  font-size: 0.78rem !important;
  margin: 0 !important;
}

/* Social icons */
ul.social a {
  background: var(--bg-surface) !important;
  color: var(--txt-muted) !important;
  border: 1px solid var(--border-md) !important;
  width: 42px !important;
  height: 42px !important;
  line-height: 42px !important;
  transition: all .22s !important;
}

ul.social a:hover {
  transform: translateY(-4px) !important;
  color: #fff !important;
}

ul.social a.instagram:hover { background: #bc3090 !important; border-color: #bc3090 !important; box-shadow: 0 4px 14px rgba(188,48,144,.4) !important; }
ul.social a.facebook:hover  { background: #1877f2 !important; border-color: #1877f2 !important; box-shadow: 0 4px 14px rgba(24,119,242,.4) !important; }
ul.social a.youtube:hover   { background: #e22c29 !important; border-color: #e22c29 !important; box-shadow: 0 4px 14px rgba(226,44,41,.4) !important; }
ul.social a.whatsapp:hover  { background: #25d366 !important; border-color: #25d366 !important; box-shadow: 0 4px 14px rgba(37,211,102,.4) !important; }
ul.social a.twitter:hover   { background: #1da1f2 !important; border-color: #1da1f2 !important; box-shadow: 0 4px 14px rgba(29,161,242,.4) !important; }

/* ── How it works section ───────────────────────────────────── */
.bg-success.py-4 {
  background: linear-gradient(135deg, #064e3b, #065f46) !important;
}

/* Footer widget — "Como funciona" */
footer h1, footer h2, footer h3, footer h4, footer h5, footer h6 {
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  margin-bottom: 0.35rem !important;
}

footer p {
  font-size: 0.72rem !important;
  line-height: 1.55 !important;
  color: rgba(255,255,255,.6) !important;
  margin-bottom: 0 !important;
}

/* ── Misc ───────────────────────────────────────────────────── */
.favorite i { color: var(--gold) !important; }

.wpcf7-validation-errors {
  background: rgba(239,68,68,.1) !important;
  border-color: rgba(239,68,68,.3) !important;
  color: #fca5a5 !important;
  border-radius: var(--r-sm) !important;
}

/* Card detail tabs */
.bg_nav {
  background: var(--bg-surface) !important;
  border-radius: var(--r-sm) var(--r-sm) 0 0 !important;
  border-bottom: 1px solid var(--border-md) !important;
}

.bg_nav a {
  color: var(--txt-muted) !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  padding: 8px 16px !important;
  border-radius: var(--r-sm) var(--r-sm) 0 0 !important;
  transition: color .2s, background .2s !important;
}

.bg_nav a:hover,
.bg_nav a.active {
  background: var(--purple) !important;
  color: #fff !important;
}

/* ── Number filter tabs ─────────────────────────────────────── */
.numbers-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
  align-items: center;
}

.numbers-filter-bar button {
  background: var(--bg-surface) !important;
  border: 1.5px solid var(--border-md) !important;
  color: var(--txt-muted) !important;
  border-radius: 8px !important;
  padding: 7px 16px !important;
  font-size: 0.76rem !important;
  font-weight: 600 !important;
  cursor: pointer;
  transition: all .18s;
  line-height: 1.4;
  font-family: 'Lato', sans-serif !important;
}

/* Todos — gold */
.numbers-filter-bar button.filter-btn:not(.filter-available):not(.filter-reserved):not(.filter-paid):not(.filter-mine) {
  background: #ca8a04 !important;
  border-color: #ca8a04 !important;
  color: #fff !important;
}
.numbers-filter-bar button.filter-btn:not(.filter-available):not(.filter-reserved):not(.filter-paid):not(.filter-mine).active {
  background: #eab308 !important;
  border-color: #eab308 !important;
  color: #000 !important;
}

/* Livre — light */
.numbers-filter-bar button.filter-available {
  background: #e2e8f0 !important;
  border-color: #cbd5e1 !important;
  color: #1e293b !important;
}
.numbers-filter-bar button.filter-available.active {
  background: #f8fafc !important;
  border-color: #94a3b8 !important;
  color: #0f172a !important;
  font-weight: 700 !important;
}

/* Reservado — teal */
.numbers-filter-bar button.filter-reserved {
  background: #0891b2 !important;
  border-color: #0891b2 !important;
  color: #fff !important;
}
.numbers-filter-bar button.filter-reserved.active {
  background: #06b6d4 !important;
  border-color: #06b6d4 !important;
  color: #fff !important;
  font-weight: 700 !important;
}

/* Pago — green */
.numbers-filter-bar button.filter-paid {
  background: #16a34a !important;
  border-color: #16a34a !important;
  color: #fff !important;
}
.numbers-filter-bar button.filter-paid.active {
  background: #22c55e !important;
  border-color: #22c55e !important;
  color: #fff !important;
  font-weight: 700 !important;
}

/* Ver meus números — red */
.numbers-filter-bar button.filter-mine {
  background: #dc2626 !important;
  border-color: #dc2626 !important;
  color: #fff !important;
}
.numbers-filter-bar button.filter-mine.active {
  background: #ef4444 !important;
  border-color: #ef4444 !important;
  color: #fff !important;
  font-weight: 700 !important;
}

.numbers-search-wrap {
  margin-left: auto;
}

.numbers-search-wrap input {
  background: var(--bg-surface) !important;
  border: 1.5px solid var(--border-md) !important;
  border-radius: 8px !important;
  color: var(--txt) !important;
  padding: 6px 12px !important;
  font-size: 0.8rem !important;
  font-family: 'Lato', sans-serif !important;
  outline: none;
  width: 120px;
  transition: border-color .2s;
}

.numbers-search-wrap input:focus {
  border-color: var(--cyan) !important;
}

.numbers-search-wrap input::placeholder {
  color: var(--txt-muted);
}

ul.list_card li.hidden-number {
  display: none !important;
}

/* ── Number section header ──────────────────────────────────── */
.numbers-section {
  background: var(--bg-card);
  border: 1px solid var(--border-md);
  border-radius: var(--r);
  padding: 20px;
}

.numbers-section-title {
  color: var(--txt) !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  margin-bottom: 14px !important;
  display: flex;
  align-items: center;
  gap: 8px;
}

.numbers-section-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 16px;
  background: var(--cyan);
  border-radius: 2px;
}

/* ── Single page wrappers ───────────────────────────────────── */
.single-image-wrap .img-fluid,
.single-image-wrap .royalSlider {
  border-radius: var(--r) !important;
  overflow: hidden;
}

.single-info-wrap {
  padding-left: 0;
}

@media (min-width: 992px) {
  .single-info-wrap { padding-left: 20px; }
}

.single-title {
  font-size: 1.35rem !important;
  font-weight: 800 !important;
  line-height: 1.3 !important;
  color: var(--txt) !important;
  margin-bottom: 14px !important;
}

.single-price {
  background: linear-gradient(135deg, rgba(14,165,233,.12), rgba(14,165,233,.06));
  border: 1px solid rgba(14,165,233,.3);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  margin-bottom: 18px;
  display: inline-block;
  min-width: 180px;
}

.single-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.single-stat-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-md);
  border-radius: var(--r-sm);
  padding: 10px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.stat-num {
  font-size: 1.2rem !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
}

.stat-lbl {
  font-size: 0.65rem !important;
  font-weight: 500 !important;
  color: var(--txt-muted) !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── Sticky bottom bar ──────────────────────────────────────── */
.main-selected-numbers {
  background: var(--bg-card) !important;
  border-top: 1px solid var(--border-md) !important;
  padding: 10px 16px !important;
}

/* Responsive number grid override */
@media (max-width: 400px) {
  ul.list_card {
    grid-template-columns: repeat(auto-fill, 44px) !important;
  }
  ul.list_card li { width: 44px !important; }
  ul.list_card li a,
  ul.list_card li span { width: 44px !important; height: 36px !important; font-size: 0.65rem !important; }
}

/* Ludo Rifas palette */
body {
  background: #0d003d !important;
  color: #fff !important;
}

nav.navbar,
nav.navbar.bg-dark,
nav.navbar.bg_custum_menu {
  background: #08013a !important;
  border-bottom: 0 !important;
}

nav.navbar .nav-link,
nav.navbar .navbar-nav .nav-link,
nav.navbar .menu-item a,
nav.navbar a,
.bg_custum_menu .nav-link,
.bg_custum_menu a {
  color: #fff !important;
}

nav.navbar .nav-link:hover,
nav.navbar .navbar-nav .nav-link:hover,
nav.navbar .menu-item a:hover,
nav.navbar a:hover,
.bg_custum_menu .nav-link:hover,
.bg_custum_menu a:hover {
  color: #fff !important;
}

.home h1,
.home h2,
.home h3,
.page h1,
.page h2,
.page h3,
.color_custom_title,
.color_custom_title_featured,
.color_main_title,
.main_title,
.section-title {
  color: #fff !important;
}

.main_card .card,
.main_card .card-body,
.numbers-section,
.single-stat-item,
.modal-content,
footer.bg-dark,
footer.bg_custom_main_footer {
  background: #333333 !important;
  border-color: rgba(255,255,255,.16) !important;
}

.main_card .card:hover {
  border-color: rgba(255,255,255,.35) !important;
}

.bg_custom_price,
.main_card span.bg-success.position-absolute,
.main_card .btn-success.d-block,
.main_card a.btn.btn-success,
.modal-footer .btn-success,
.modal-body .btn-success,
.btn-success.btn-lg.btn-block.btnSubmit,
.main-selected-numbers .btn-success,
ul.list_card li a.paid,
ul.list_card li span.paid {
  background: #28a745 !important;
  border-color: #28a745 !important;
  color: #fff !important;
  box-shadow: none !important;
}

.main_card .btn-danger.d-block,
.main_card a.btn.btn-danger,
.bg_custom_statu,
.main_card .bg-danger.position-absolute,
ul.list_card li a.your-purchase,
ul.list_card li span.your-purchase {
  background: #dc3545 !important;
  border-color: #dc3545 !important;
  color: #fff !important;
  box-shadow: none !important;
}

ul.list_card li a,
ul.list_card li span,
.cotas-item--content {
  background: #333333 !important;
  border-color: rgba(255,255,255,.2) !important;
  color: #fff !important;
}

ul.list_card li a:not(.reserved):not(.paid):not(.disabled):not(.your-purchase):hover,
.checked,
ul.list_card li a.checked {
  background: #007bff !important;
  border-color: #007bff !important;
  color: #fff !important;
  box-shadow: none !important;
}

ul.list_card li a.reserved,
ul.list_card li span.reserved,
ul.caption-numbers li.send-receipt,
.caption-numbers li.reserved {
  background: #17a2b8 !important;
  border-color: #17a2b8 !important;
  color: #fff !important;
  box-shadow: none !important;
}

li.available,
.caption-numbers li.paid,
.caption-numbers li.your-purchase,
.btn-your-purchase {
  background: #28a745 !important;
  border-color: #28a745 !important;
  color: #fff !important;
}

.numbers-filter-bar button.filter-btn:not(.filter-available):not(.filter-reserved):not(.filter-paid):not(.filter-mine),
.numbers-filter-bar button.filter-btn:not(.filter-available):not(.filter-reserved):not(.filter-paid):not(.filter-mine).active,
.btn-warning {
  background: #ffc107 !important;
  border-color: #ffc107 !important;
  color: #212529 !important;
}

.numbers-filter-bar button.filter-available,
.numbers-filter-bar button.filter-available.active,
.btn-light,
.modal-footer .btn-light {
  background: #f8f9fa !important;
  border-color: #f8f9fa !important;
  color: #212529 !important;
}

.numbers-filter-bar button.filter-reserved,
.numbers-filter-bar button.filter-reserved.active,
.btn-info {
  background: #17a2b8 !important;
  border-color: #17a2b8 !important;
  color: #fff !important;
}

.numbers-filter-bar button.filter-paid,
.numbers-filter-bar button.filter-paid.active,
.btn-success,
.progress-bar.bg-success {
  background: #28a745 !important;
  border-color: #28a745 !important;
  color: #fff !important;
}

.numbers-filter-bar button.filter-mine,
.numbers-filter-bar button.filter-mine.active,
.btn-danger {
  background: #dc3545 !important;
  border-color: #dc3545 !important;
  color: #fff !important;
}

.single-price {
  background: #17a2b8 !important;
  border-color: #17a2b8 !important;
  color: #fff !important;
}

.single-price *,
.badge-info,
.badge-info *,
.btn-info,
.btn-info *,
.numbers-filter-bar button.filter-reserved,
.numbers-filter-bar button.filter-reserved *,
ul.list_card li a.reserved,
ul.list_card li a.reserved *,
ul.list_card li span.reserved,
ul.list_card li span.reserved *,
.caption-numbers li.reserved,
.caption-numbers li.reserved *,
ul.caption-numbers li.send-receipt,
ul.caption-numbers li.send-receipt * {
  color: #fff !important;
}

.bg_nav a:hover,
.bg_nav a.active,
.numbers-section-title::before {
  background: #007bff !important;
}

body ul.list_card li a.btn.checked,
body ul.list_card li a.checked,
body ul.list_card li span.checked {
  background: #007bff !important;
  background-color: #007bff !important;
  background-image: none !important;
  border-color: #007bff !important;
  color: #fff !important;
}
