/*
 Theme Name:   Bricks Child
 Theme URI:    https://bricksbuilder.io/
 Description:  ReploQ Financial Intelligence Engine - Child Theme
 Author:       ReploQ
 Author URI:   https://reploq.com
 Template:     bricks
 Version:      1.0.0
 Text Domain:  bricks-child
*/

.rq-skeleton {
    background: linear-gradient(90deg,
        var(--color-background-secondary) 25%,
        var(--color-background-tertiary) 50%,
        var(--color-background-secondary) 75%);
    background-size: 200% 100%;
    animation: rq-shimmer 1.4s infinite;
    border-radius: var(--border-radius-md);
    color: transparent;
    user-select: none;
}
@keyframes rq-shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.rq-dash-card-table-title {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #547f7f;
    padding: 24px;
}

.rq-shared-upgrade-badge {
    font-size: 10px;
    font-weight: 500;
    padding: 3px 9px;
    border-radius: 5px;
    background: #FD5353;
    color: #fff;
    text-decoration: none;
    letter-spacing: .03em;
    white-space: nowrap;
    z-index: 2;
}

.rq-shared-upgrade-overlay {
    margin-top: 12px;
    padding: 10px 12px;
    background: #F0F7F7;
    border-radius: 5px;
    border: 0.5px solid #C0D8D8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1px;
}

.rq-shared-upgrade-overlay p {
    font-size: 11px;
    color: #4A6A6A;
    margin: 0;
    line-height: 1.5;
}

.rq-shared-upgrade-btn {
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 400;
    padding: 6px 14px;
    border-radius: 8px;
    background: #0D4747;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}
/* ════════════════════════════════════════════════════════════════════
   [rq_financial_pulse_card]
   Paste into: child theme style.css  OR  Bricks Settings > Custom CSS
   ════════════════════════════════════════════════════════════════════ */

/* ── Outer wrapper ──────────────────────────────────────────────── */
.rq-fpc-wrap {
  background: linear-gradient(135deg, #184d47, #1f6f64);
  border-radius: var(--reploq-radius);
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 200px;
  box-shadow: 0 1px 4px rgba(13, 71, 71, .06), 0 0 1px rgba(13, 71, 71, .04);
}

/* ── Left column ────────────────────────────────────────────────── */
.rq-fpc-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
  /* flex: 1; */
  min-width: 0;
  width: 25%;
}

/* ── Header row: eyebrow + period label ─────────────────────────── */
.rq-fpc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rq-fpc-eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #85b7ac;
}

.rq-fpc-period {
  font-size: 12px;
  font-weight: 400;
  color: #85b7ac;
}

/* ── Hero number ────────────────────────────────────────────────── */
.rq-fpc-hero {
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -.5px;
  line-height: 1;
}

/* ── Sub label + trend ──────────────────────────────────────────── */
.rq-fpc-sub {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: #85b7ac;
	white-space: nowrap;
}

.rq-fpc-trend {
  font-size: 11px;
  font-weight: 400;
  padding: 2px 8px;
  border-radius: 20px;
	white-space: nowrap;
}

.rq-fpc-trend--up {
  background: rgba(18,183,106,.25);
  color: #9FE1CB;
}

.rq-fpc-trend--dn {
  background: rgba(253,83,83,.25);
  color: #F5C4B3;
}

/* ── Income / Expense bars ──────────────────────────────────────── */
.rq-fpc-bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px 0 4px;
  border-top: 1px solid rgba(255,255,255,.08);
  /* border-bottom: 1px solid rgba(255,255,255,.08); */
}

.rq-fpc-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rq-fpc-bar-label {
  width: 100px;
  font-size: 12px;
  font-weight: 500;
  color: #85b7ac;
  flex-shrink: 0;
}

.rq-fpc-track {
  flex: 1;
  height: 5px;
  background: rgba(255,255,255,.1);
  border-radius: 20px;
  overflow: hidden;
}

.rq-fpc-fill {
  height: 100%;
  border-radius: 20px;
  transition: width .4s ease;
}

.rq-fpc-fill--income  { background: #12B76A; }
.rq-fpc-fill--expense { background: #FD5353; }

.rq-fpc-bar-val {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  text-align: right;
  flex-shrink: 0;
  min-width: 80px;
}

/* ── Sub-metric rows ────────────────────────────────────────────── */
.rq-fpc-metrics {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 20%;
}

.rq-fpc-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rq-fpc-metric-left {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.8);
}

.rq-fpc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
}

.rq-fpc-metric-val {
  font-size: 12px;
  font-weight: 400;
  color: #fff;
}

/* ── Right column — ring ────────────────────────────────────────── */
.rq-fpc-right {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  width: 75%;
  justify-content: flex-end;
}

.rq-fpc-ring-wrap {
  position: relative;
  width: 125px;
  height: 125px;
}

.rq-fpc-svg {
  display: block;
}

/* ── NIR block below ring ───────────────────────────────────────── */
.rq-fpc-nir {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-align: left;
}

.rq-fpc-nir-label {
  font-size: 12px;
  color: #85b7ac;
}

.rq-fpc-nir-val {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
}

.rq-fpc-nir-sub {
  font-size: 12px;
  color: #85b7ac;
}
@media (max-width: 1024px) {
	.rq-fpc-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 0;
  width: 100%;
}
	.rq-fpc-metrics {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: auto;
}
}

/* ── Mobile ─────────────────────────────────────────────────────── */
@media (max-width: 767.98px) {
	.rq-dash-card-table-title {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #547f7f;
    padding: 16px;
}
   .rq-fpc-wrap {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
	   padding: 16px;
  }
	.rq-fpc-ring-wrap {
		width: 100px;
		height: 100px;
	}
	.rq-fpc-ring-wrap svg{
		width: 100px !important;
		height: 100px !important;
	}
	.rq-fpc-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 0;
  width: 100%;
}
   .rq-fpc-right {
    flex-direction: row;
    width: auto;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
  }
	.rq-fpc-metrics {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 20%;
}
  .rq-fpc-nir { align-items: flex-end; text-align: right; }
}

/* ═══════════════════════════════════════════════════════════════════════
   BUCKET PULSE
   ═══════════════════════════════════════════════════════════════════════ */
 
.rq-policy-tag {
  font-size: 10px;
  font-weight: 600;
  color: #0D4747;
  background: #E4F0F0;
  padding: 3px 9px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 10px;
}
 .rq-bp-row .rq-dp-track {
  width: 100%;
  flex: unset;
}
.rq-bucket-pulse-list { display: flex; flex-direction: column; gap: 10px; }
.rq-bp-row            { display: flex; flex-direction: column; gap: 3px; }
.rq-bp-hdr            { display: flex; justify-content: space-between; align-items: center; }
.rq-bp-name           {display: flex;align-items: center;gap: 5px;font-size: 12px;font-weight: 500;color: var(--rqtext,#0A2424);}
.rq-bp-dot            { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.rq-bp-pct {
  font-size: 12px;
  font-weight: 400;
  color: rgba(11,31,46,.5);
  text-align: right;
}
.rq-bp-amounts        { display: flex; justify-content: space-between; }
.rq-bp-spent          { font-size: 10px; color: var(--rq-text3,#8AABAB); }
.rq-bp-remaining      { font-size: 10px; font-weight: 500; color: #12B76A; }
.rq-bp-remaining--over{ color: #FD5353; }

.rq-bp-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  margin-top: 6px;
  border-top: 1px solid #EEF3F3;
}
.rq-bp-footer-label {
  font-size: 12px;
  color: #4A6A6A;
}
.rq-bp-footer-val {
  font-size: 12px;
  font-weight: 500;
  color: var(--rq-text, #0A2424);
}

/* ═══════════════════════════════════════════════════════════════════════
   FINANCIAL SCORE
   ═══════════════════════════════════════════════════════════════════════ */
 
.rq-score-quality    { font-size: 10px; color: var(--rq-text3,#8AABAB); margin: 2px 0 6px; }
.rq-score-label      { font-size: 16px; font-weight: 700; color: var(--rq-text,#0A2424); }
.rq-score-pct        { font-size: 13px; font-weight: 600; color: #0D4747; }
 
/* The bar track is a Bricks element; the fill width is set by rq_financial_score_detail JS */
.rq-score-bar-track  { height: 6px; background: #EEF3F3; border-radius: 20px; overflow: hidden; margin: 6px 0 12px; }
.rq-score-bar-fill   { height: 100%; border-radius: 20px; transition: width .5s ease; }
 
/* Factor rows */
.rq-score-factors       { display: flex; flex-direction: column; gap: 8px; }
.rq-score-factor-row    { display: flex; align-items: center; gap: 6px; }
.rq-score-factor-meta   { display: flex; flex-direction: column; gap: 1px; width: 82px; flex-shrink: 0; }
.rq-score-factor-label  {font-size: 12px;font-weight: 500;color: var(--rqtext,#0A2424);}
.rq-score-factor-val    {font-size: 12px;color: rgba(11,31,46,.5);}
.rq-score-factor-track  { flex: 1; }
.rq-score-factor-pts    {font-size: 12px;color: rgba(11,31,46,.5);width: 28px;text-align: right;flex-shrink: 0;}
.rq-score-metrics       { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.rq-score-metric-row    { display: flex; justify-content: space-between; align-items: center; }
.rq-score-metric-label  { display: flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 500; color: var(--rqtext, #0A2424); }
.rq-score-metric-dot    { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.rq-score-metric-val    { font-size: 12px; font-weight: 400; color: rgba(11,31,46,.5); }

/* ── Dashboard grid ───────────────────────────────────────── */
.rq-dash-grid {
  display: flex;
  grid-template-columns: 1fr 0.5fr 0.5fr;
  gap: 24px;
  align-items: start;
}

.rq-dash-col-left,
.rq-dash-col-mid,
.rq-dash-col-right {
  display: flex;
  flex-direction: column;
  gap: 11px;
  min-width: 0;
}
.rq-finpulse-card-body .content {
	display: flex;
    flex-direction: column;
    gap: 5px;
	width: 100%;
}
/* ── Base card ────────────────────────────────────────────── */
.rq-dash-card {
  background: #fff;
  border-radius: 13px;
  border: 1px solid #E0EAEA;
  overflow: hidden;
  padding: 13px;
}

/* ── Card header ──────────────────────────────────────────── */
.rq-dash-card-title {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #547f7f;
  margin-bottom: 4px;
}

/* ── Hero number ──────────────────────────────────────────── */
.rq-dash-hero {
  font-size: 22px;
  font-weight: 500;
  color: #0A2424;
  letter-spacing: -.5px;
  line-height: 1;
  margin-bottom: 3px;
}

/* ── Trend badge ──────────────────────────────────────────── */
.rq-dash-trend {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  font-weight: 400;
  padding: 2px 7px;
  border-radius: 20px;
  margin-left: 5px;
}
.rq-dash-trend--up   { background: #ECFDF5; color: #0A7A43; }
.rq-dash-trend--down { background: #FEF2F2; color: #B91C1C; }
.rq-dash-trend--warn { background: #FFFBEB; color: #92400E; }

/* ── Sub label ────────────────────────────────────────────── */
.rq-dash-sub {
  font-size: 12px;
  color: #4A6A6A;
  margin-bottom: 4px;
}

/* ── Income/Expense bar rows (Financial Pulse) ────────────── */
.rq-dp-rows {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
}

.rq-dp-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}

.rq-dp-label {
  width: 52px;
  color: #4A6A6A;
  font-weight: 500;
  flex-shrink: 0;
}

.rq-dp-track {
  flex: 1;
  height: 5px;
  background: #E0EAEA;
  border-radius: 3px;
  overflow: hidden;
}

.rq-dp-fill, .rq-dp-fill--income, .rq-dp-fill--expense {
  height: 100%;
  border-radius: 3px;
}

.rq-dp-val {
  font-size: 11px;
  color: #0A2424;
  font-weight: 500;
  white-space: nowrap;
  min-width: 36px;
  text-align: right;
}

/* ── Mini 2-col card grid (Project + Shared) ──────────────── */
.rq-dash-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ── Project Allocation card ──────────────────────────────── */
.rq-proj-alloc-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #8AABAB;
  margin-bottom: 4px;
}

.rq-proj-alloc-hero {
  	color: #0A2424;
    margin-bottom: 2px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.rq-proj-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  margin: 6px 0 3px;
}

.rq-proj-name { color: #0A2424; font-weight: 600; }
.rq-proj-pct  { color: #4A6A6A; }

.rq-proj-track {
  width: 100%;
  height: 5px;
  background: #E0EAEA;
  border-radius: 3px;
  overflow: hidden;
}

.rq-proj-fill {
  height: 100%;
  border-radius: 3px;
  background: #F59E0B;
}

/* ── Shared Balance card ──────────────────────────────────── */
.rq-shared-bar {
  display: flex;
  gap: 2px;
  height: 5px;
  border-radius: 3px;
  overflow: hidden;
  margin: 8px 0 10px;
}

.rq-shared-bar-a { background: #0D4747; }
.rq-shared-bar-b { background: #fd5353; }

.rq-shared-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rq-shared-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
}

.rq-shared-who { color: #4A6A6A; font-weight: 500; }
.rq-shared-amt { font-weight: 500; color: #0A2424; font-size: 10.5px; }

.rq-shared-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 4px;
  vertical-align: middle;
}

/* ── Bucket Pulse bars ────────────────────────────────────── */
.rq-bp-pulse-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 10px;
}

.rq-bp-pulse-item {}

.rq-bp-pulse-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3px;
}

.rq-bp-pulse-name {
  font-size: 11px;
  font-weight: 500;
  color: #0A2424;
}

.rq-bp-pulse-amt {
  font-size: 9px;
  color: #8AABAB;
}

.rq-bp-pulse-track {
  width: 100%;
  height: 5px;
  background: #E0EAEA;
  border-radius: 3px;
  overflow: hidden;
}

.rq-bp-pulse-fill {
  height: 100%;
  border-radius: 3px;
}

.rq-bp-pulse-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding-top: 9px;
  border-top: 1px solid #E0EAEA;
  font-size: 10px;
}

.rq-bp-pulse-foot-label { color: #8AABAB; }
.rq-bp-pulse-foot-val   { font-weight: 600; color: #0A2424; }

/* ── Policy tag ───────────────────────────────────────────── */
.rq-policy-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #ebfdf5;
  color: #097a43;
  font-size: 11px;
  font-weight: 400;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 18px;
  line-height: 1;
  letter-spacing: .04em;
}

/* ── Financial Score ──────────────────────────────────────── */
.rq-score-quality {
  font-size: 12.5px;
  color: #4A6A6A;
  margin-bottom: 2px;
}

.rq-score-label {
  font-size: 18px;
  font-weight: 500;
  color: #0D4747;
}

.rq-score-pct {
  font-size: 18px;
  font-weight: 500;
  color: #0D4747;
}

.rq-score-bar-track {
  width: 100%;
  height: 7px;
  background: #E0EAEA;
  border-radius: 4px;
  overflow: hidden;
  margin: 9px 0 10px;
}

.rq-score-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, #12B76A, #0D4747) !important;
}

.rq-score-rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rq-score-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10.5px;
}

.rq-score-row-label {
  color: #4A6A6A;
  display: flex;
  align-items: center;
  gap: 4px;
}

.rq-score-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}

.rq-score-row-val {
  font-weight: 600;
  color: #0A2424;
}

/* ── Goals widget ─────────────────────────────────────────── */
.rq-goals-total-label {
  font-size: 12.5px;
  color: #4A6A6A;
  margin-bottom: 2px;
}

.rq-goals-total-val {
  font-size: 17px;
  font-weight: 500;
  color: #0A2424;
  margin-bottom: 11px;
}

.rq-goal-item { margin-bottom: 10px; }
.rq-goal-item:last-child { margin-bottom: 0; }

.rq-goal-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.rq-goal-name { font-size: 11px; font-weight: 500; color: #0A2424; }
.rq-goal-pct  { font-size: 10px; font-weight: 700; color: #4A6A6A; }

.rq-goal-track {
  width: 100%;
  height: 5px;
  background: #E0EAEA;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 3px;
}

.rq-goal-fill { height: 100%; border-radius: 3px; }

.rq-goal-amts {
  font-size: 9px;
  color: #8AABAB;
}

.rq-goal-add {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px;
  border: 1px dashed #E0EAEA;
  border-radius: 7px;
  font-size: 10.5px;
  color: #4A6A6A;
  cursor: pointer;
  margin-top: 9px;
  text-decoration: none;
  transition: .12s;
}

.rq-goal-add:hover { border-color: #fd5353; color: #fd5353; }
.rq-exp-breakdown-card .rq-gbese-tab {
    padding: 5px 24px;
    border-radius: 8px;
    font;font-size: 12.5px;
    font-weight: 500;
    line-height: 1.4;
    color: #4A6A6A;
    text-decoration: none;
    transition: all .15s ease;
    white-space: nowrap;
    flex: 1;
    justify-content: center;
    align-items: center;
    display: inline-flex;
}
.rq-exp-breakdown-card .rq-gbese-tab--active {
    background: #ffffff;
    color: var(--rqprimary);
    box-shadow: 0 1px 3px 0 var(--tw-shadow-color, #0000001a), 0 1px 2px -1px var(--tw-shadow-color, #0000001a);
}
/* ── Recent Activities ────────────────────────────────────── */
.rq-act-group-day {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #8AABAB;
  margin-bottom: 8px;
}

.rq-act-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 9px;
}

.rq-act-item:last-child { margin-bottom: 0; }

.rq-act-ico {
  width: 25px;
  height: 25px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 1px;
}

.rq-act-time {
  font-size: 8.5px;
  color: #8AABAB;
  margin-bottom: 1px;
}

.rq-act-text {
  font-size: 10.5px;
  color: #4A6A6A;
  line-height: 1.45;
}

.rq-act-text strong { color: #0A2424; font-weight: 600; }

/* ── Recent Transactions table ────────────────────────────── */
.rq-txn-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 13px;
  border-bottom: 1px solid #E0EAEA;
}

.rq-txn-hdr-title {
  font-size: 13px;
  font-weight: 700;
  color: #0A2424;
}

.rq-txn-filter {
  font-size: 10px;
  color: #4A6A6A;
  border: 1px solid #E0EAEA;
  border-radius: 6px;
  padding: 3px 9px;
  cursor: pointer;
}

/* ── Cashflow card ────────────────────────────────────────── */
.rq-cf-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 11px;
}

.rq-cf-title {
  font-size: 13px;
  font-weight: 700;
  color: #0A2424;
}

.rq-cf-net-label { font-size: 10px; color: #4A6A6A; }

.rq-cf-net-val {
  font-size: 21px;
  font-weight: 500;
  color: #0A2424;
  margin: 2px 0 9px;
}

.rq-cf-legend {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.rq-cf-leg-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #4A6A6A;
}

.rq-cf-leg-line {
  width: 14px;
  height: 3px;
  border-radius: 2px;
}

/* ── Expense breakdown tabs ───────────────────────────────── */
.rq-exp-tab-bar {
  display: flex;
  border-bottom: 1px solid #E0EAEA;
  margin-bottom: 0;
}

.rq-exp-tab {
  padding: 7px 11px;
  font-size: 11px;
  font-weight: 600;
  color: #4A6A6A;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  text-decoration: none;
  transition: .12s;
}

.rq-exp-tab.active {
  color: #0D4747;
  border-bottom-color: #fd5353;
}

/* ── Mobile ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .rq-dash-grid {
    grid-template-columns: 1fr 1fr;
  }
  .rq-dash-col-right {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 11px;
  }
}

@media (max-width: 767px) {
  .rq-dash-grid {
    grid-template-columns: 1fr;
    padding: 8px;
  }
  .rq-dash-col-right {
    grid-column: span 1;
    display: flex;
  }
  .rq-dash-mini-grid {
    grid-template-columns: 1fr;
  }
}

.authForm .mp_wrapper .authForm .mepr-submit, .authForm .mp_wrapper button, .authForm .mp_wrapper input[type="submit"], .authForm .mp_wrapper a.mepr-submit, .authForm .mp_wrapper .mepr-form button, .authForm .mp_wrapper .mepr-form input[type="submit"] {
    background-color: var(--reploq-accent) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: var(--reploq-radius-sm) !important;
    padding: 8px 24px !important;
    font-size: 14px !important;
    height: 42px;
    line-height: 1 !important;
    text-align: center;
    font-weight: 500 !important;
    cursor: pointer;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.05s ease;
    text-decoration: none !important;
    box-shadow: 0 1px 2px 0 #0000000d !important;
}


.gform_wrapper.gravity-theme .ginput_container_date img.ui-datepicker-trigger {
    display: block;
    max-height: 25.6px;
    max-width: 25.6px;
    position: absolute !important;
    right: 12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin-left: 0 !important;
    cursor: pointer !important;
    z-index: 10;
}
.gform_wrapper.gravity-theme .ginput_container_date {
    position: relative !important;
}
.gform_wrapper.gravity-theme input[type=color], .gform_wrapper.gravity-theme input[type=date], .gform_wrapper.gravity-theme input[type=datetime-local], .gform_wrapper.gravity-theme input[type=datetime], .gform_wrapper.gravity-theme input[type=email], .gform_wrapper.gravity-theme input[type=month], .gform_wrapper.gravity-theme input[type=number], .gform_wrapper.gravity-theme input[type=password], .gform_wrapper.gravity-theme input[type=search], .gform_wrapper.gravity-theme input[type=tel], .gform_wrapper.gravity-theme input[type=text], .gform_wrapper.gravity-theme input[type=time], .gform_wrapper.gravity-theme input[type=url], .gform_wrapper.gravity-theme input[type=week], .gform_wrapper.gravity-theme select, .gform_wrapper.gravity-theme textarea {
	padding: 8px 14px !important;
}
.rq-page-loader {
    position: fixed;
    top: 50%;
    left: calc(250px + ((100vw - 250px) / 2));
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 9999;
}

.rq-page-loader.rq-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.rq-page-loader .ring {
    display: inline-block;
    height: 32px;
    width: 32px;
}

.rq-page-loader .ring:after {
    animation: rq-ring 0.6s linear infinite;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: #fd5353;
    border-right-color: #fd5353;
    border-bottom-color: #fd535340;
    border-left-color: #fd535315;
    content: " ";
    display: block;
    height: 32px;
    width: 32px;
}

/* Mobile — no sidebar */
@media (max-width: 768px) {
    .rq-page-loader {
        left: 50%;
    }	

}

@keyframes rq-ring {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/* =====================================================
   ReploQ × WP 2FA COMPLETE OVERRIDE
   Accent: var(--reploq-accent)  (#fd5353)
===================================================== */

/* =============================
   GLOBAL FONT
============================= */

.wp2fa-modal,
.wp-2fa-configuration-form,
.wp-2fa-user-profile-form {
  font-family: "Galano GrotesqueAlt", sans-serif !important;
}

/* =============================
   REPL0Q MODAL STYLE
============================= */

.wp2fa-modal .modal__container {
  box-shadow: 0 10px 15px -3px #0000001a,
              0 4px 6px -4px #0000001a !important;
  border: 0.5px solid rgba(82, 82, 82, 0.15) !important;
  border-radius: 8px !important;
  width: 550px !important;
  max-width: 95vw !important;
  background: #ffffff !important;
  padding: 32px !important;
}

/* Remove plugin forced large width */
@media screen and (min-width: 1024px) {
  .wp2fa-modal .modal__container {
    min-width: unset !important;
  }
}

/* Overlay */
.wp2fa-modal .modal__overlay {
  background: rgba(15, 23, 42, 0.55) !important;
  backdrop-filter: blur(4px);
}

/* Header */
.wp2fa-modal .modal__header {
  margin-bottom: 16px;
}

/* Title */
.wp2fa-modal h3,
.wp2fa-modal h4 {
  font-size: 18px !important;
  font-weight: 500 !important;
  color: #111827 !important;
}
.wp2fa-modal.enable_styling h4, .wp2fa-modal.enable_styling h3 {
    font-family: "Galano GrotesqueAlt", sans-serif !important;
}
/* Body text */
.wp2fa-modal .modal__content,
.wp2fa-modal .modal__content p,
.wp2fa-modal .modal__content label {
  color: #374151 !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
	font-weight: 400 !important;
}
.wp2fa-modal.enable_styling {
	font-family: "Galano GrotesqueAlt", sans-serif !important;
}
/* Close button */
.wp2fa-modal .modal__close {
  font-size: 18px !important;
  font-weight: 500 !important;
  color: var(--reploq-accent) !important;
  top: 18px !important;
  right: 18px !important;
}

/* =============================
   ACCENT COLOR REPLACEMENTS
============================= */

/* Selected options */
.wp2fa-modal.enable_styling .radio-cells .option-pill.isSelected {
  border: 2px solid var(--reploq-accent) !important;
}

/* Step counter bubbles */
.enable_styling .wizard-custom-counter li::before {
  background: var(--reploq-accent) !important;
  color: #ffffff !important;
}

/* Tooltips */
.wp2fa-modal .wizard-tooltip {
  background: var(--reploq-accent) !important;
  color: #ffffff !important;
}

/* Links */
.wp2fa-modal a,
.wp-2fa-configuration-form a {
  color: var(--reploq-accent) !important;
}

/* Input focus */
.enable_styling .modal__content input:not([type="radio"]):focus-visible,
.enable_styling #backup-codes-wrapper:focus-visible {
  border-bottom: 3px solid var(--reploq-accent) !important;
}

/* Input base styling */
.enable_styling .modal__content input:not([type="radio"]),
.enable_styling #backup-codes-wrapper {
  font-family: "Galano GrotesqueAlt", sans-serif !important;
  color: var(--reploq-accent) !important;
  border-bottom: 2px solid rgba(253, 83, 83, 0.3) !important;
}

/* =============================
   REPL0Q BUTTON SYSTEM
============================= */

.wp2fa-modal .modal__btn,
.wp2fa-modal .wp2fa-setup-actions .button,
.wp-2fa-configuration-form .button,
.enable_styling .wp-2fa-button-primary,
.enable_styling .wp-2fa-button-secondary {

  background-color: var(--reploq-accent) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: var(--reploq-radius-sm) !important;
  padding: 12px 24px !important;
  font-size: 15px !important;
  min-width: 150px;
  height: 42px;
  line-height: 1 !important;
  text-align: center;
  font-weight: 500 !important;
  cursor: pointer;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.05s ease;
  text-decoration: none !important;
  text-transform: capitalize !important;
  letter-spacing: normal !important;
}

/* Hover */
.wp2fa-modal .modal__btn:hover,
.wp2fa-modal .wp2fa-setup-actions .button:hover,
.wp-2fa-configuration-form .button:hover {
  background-color: #e94a4a !important;
  transform: translateY(-1px);
}

/* Remove secondary gray */
.enable_styling .wp-2fa-button-secondary {
  border: none !important;
  color: #ffffff !important;
}

html,
body {
  height: 100%;
}

.mepr-signup-form.alignwide {
  margin-left: auto !important;
  margin-right: auto !important;
}

.mepr-signup-form,
.mepr-before-signup-form,
.mepr-pro-template #primary {
  max-width: 1000px;
  margin: 0 auto;
}

.mepr-before-signup-form {
  padding: 3em auto;
}

@media screen and (max-width: 1023px) {
  .mepr-pro-template #primary > * {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .mepr-pro-template #primary > #mepr_signup_form,
  .mepr-pro-template #primary > .mepr-signup-form {
    padding-left: 0;
    padding-right: 0;
  }
}

.mepr-checkout-container {
  display: flex;
  flex-direction: column-reverse;
  height: 100%;
  max-width: 610px;
  margin: 30px auto;
	padding-inline: 20px;
}
.mepr-rl-footer-widgets {
  padding-right: 3rem;
  padding-left: 3rem;
}
@media (min-width: 1024px) {
  .mepr-checkout-container {
    flex-direction: column-reverse;
    min-height: 100vh;
  }
  .mepr-checkout-container.mepr-is-footer-widget {
    min-height: 0;
  }
.mepr-checkout-container .form-wrapper {
    padding-right: 0;
    border-left: 0;
  }

  .mepr-checkout-container .invoice-wrapper {
    width: 100%;
    padding-right: 0;
    padding-top: 0;
    padding-left: 0 !important;
    border-bottom: 0 !important;
  }
  .mepr-checkout-container .form-wrapper {
  width: 550px;
  }
  .mepr-rl-footer-widgets {
    padding: .5rem 0 0;
  }
}
@media (max-width: 1024px) {
  .mepr-checkout-container.thankyou {
    flex-direction: column;
  }
}
.mepr-checkout-container img.thankyou-image {
  margin: 0 auto;
  display: block;
}
.mepr-checkout-container .invoice-wrapper {
  flex-shrink: 0;
  flex-grow: 1;
  padding-bottom: .5rem;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
}
.mepr-checkout-container .invoice-wrapper .invoice-heading {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.56);
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-weight: 500;
}
.mepr-checkout-container .invoice-wrapper .invoice-amount {
  font-size: 2rem;
  font-weight: normal;
  margin-top: 0;
  line-height: 1;
}
.mepr-checkout-container .invoice-wrapper .mepr-coupon-code {
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  height: calc(1.5em + 0.75rem + 2px);
  width: 100%;
}
.mepr-checkout-container .invoice-wrapper .mepr_price {
  margin-bottom: 1rem;
}
.mepr-checkout-container .invoice-wrapper.thankyou {
  text-align: center;
  border-top: 2px solid rgba(0, 0, 0, 0.1);
  border-bottom: 0;
}
.mepr-checkout-container .invoice-wrapper svg {
  color: #06429e;
  width: 4rem;
  height: auto;
}
.mepr-checkout-container .invoice-wrapper p {
  color: rgba(0, 0, 0, 0.56);
  margin: 0;
}
.mepr-checkout-container .invoice-wrapper .mepr-order-no {
  margin: 1rem 0;
}
.mepr-checkout-container .invoice-wrapper.thankyou .mepr-button {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1em;
  padding-top: 0.5625rem;
  padding-bottom: 0.5625rem;
  color: #fff;
}
.mepr-checkout-container .invoice-wrapper .mepr-button svg {
  width: 1.4rem;
  color: #fff;
  margin-right: 5px;
}
.mepr-checkout-container .invoice-wrapper .mp_price_str {
  display: none;
}
.mepr-checkout-container .invoice-wrapper table {
  table-layout: auto !important;
  border: 0;
  color: rgba(0, 0, 0, 0.56);
  text-align: left;
}
.mepr-checkout-container .invoice-wrapper table tr td {
  vertical-align: middle;
  line-height: 1.2;
}
.mepr-checkout-container .invoice-wrapper table tr td:first-child {
  width: 60px;
}
.mepr-checkout-container .invoice-wrapper table tr td p {
  margin: 0;
  color: rgba(0, 0, 0, 0.56);
}
.mepr-checkout-container .invoice-wrapper table tr th {
  font-weight: normal;
  text-transform: capitalize;
}
.mepr-checkout-container .invoice-wrapper table th,
.mepr-checkout-container .invoice-wrapper table td {
  border: 0;
  color: rgba(0, 0, 0, 0.56);
}
.mepr-checkout-container .invoice-wrapper table .desc {
  font-size: 14px;
}
.mepr-checkout-container .invoice-wrapper table .bt {
  border-top: 1px solid rgba(0, 0, 0, 0.56);
  border-width: 1px !important;
  border-color: rgba(0, 0, 0, 0.2);
}
.mepr-checkout-container .invoice-wrapper table .bb {
  border-bottom: 1px solid rgba(0, 0, 0, 0.56);
  border-width: 1px !important;
  border-color: rgba(0, 0, 0, 0.2);
}
.mepr-checkout-container .invoice-wrapper table .total_cell {
  color: #1d1d1d;
}
.mepr-checkout-container .form-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
}    
.mepr-checkout-container .form-wrapper input[type="submit"] {
  background-color: #1ab897 !important;
    color: #ffffff;
    border: none !important;
    border-radius: 5px !important;
    padding: 12px 24px !important;
    font-size: 15px !important;
    min-width: 150px !important;
	height: 46px;
    line-height: 1 !important;
    text-align: center;
    font-weight: 500 !important;
	width: 100%;
    cursor: pointer;
	margin-top: .5rem;
    display: inline-block !important;
    transition: background-color 0.3s ease !important;
}
.mepr-checkout-container .form-wrapper input[type="submit"]:hover {
	background-color: #148f75 !important;
}
.mepr-checkout-container .invoice-wrapper ul.mp-cart-body {
  margin: 0;
  padding: 0;
  list-style: none;
}
.mepr-checkout-container .invoice-wrapper .mp-cart-item {
  display: flex;
  margin-bottom: 20px;
  color: rgba(0, 0, 0, 0.56);
}
.mepr-checkout-container .invoice-wrapper .mp-cart-item-details {
  margin-right: auto;
  text-align: left;
}
.mepr-checkout-container .invoice-wrapper .mp-cart-item-image {
  margin-right: 20px;
}
.mepr-checkout-container .invoice-wrapper .mp-cart-footer > div {
  display: flex;
  justify-content: space-between;
}
.mepr-checkout-container .invoice-wrapper .mp-cart-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  margin-top: 10px;
  padding-top: 10px;
  margin-left: 60px;
  margin-bottom: 24px;
  color: rgba(0, 0, 0, 0.56);
}
.mepr-checkout-container .invoice-wrapper .mp-cart-coupon {
  display: flex;
  justify-content: space-between;
  color: rgba(0, 0, 0, 0.56);
}
.mepr-checkout-container .invoice-wrapper .mp-cart-coupon-desc {
  margin-left: 60px;
}
.mepr-checkout-container .invoice-wrapper .mp-cart-item-details .desc {
  font-size: 14px;
}
.mepr-checkout-container .invoice-wrapper .mp-currency-cell {
  margin-left: 10px;
}

.form-wrapper {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}
.form-wrapper > * + * {
  margin-top: 1rem;
}
.form-wrapper .mp-form-row input[type="text"],
.form-wrapper .mp-form-row input[type="email"],
.form-wrapper .mp-form-row input[type="url"],
.form-wrapper .mp-form-row input[type="tel"] {
  width: 100% !important;
    height: 42px;
    padding: 8px 12px !important;
    border: 1px solid #dce1e0;
    border-radius: 4px;
    letter-spacing: 0.25px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    font-size: 16px;
    color: #333;
    transition: all 0.2s ease-in-out;
    margin-bottom: 10px !important;
    outline: 0;
}
.form-wrapper textarea {
  border-radius: 0.25rem;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.08), 0px 1px 1px rgba(0, 0, 0, 0.04);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.mp-form-row.mp-address-group {
  box-shadow: none;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-wrapper .mp-form-row select {
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  padding-right: 2.25rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.form-wrapper .mp-form-row select[multiple],
.form-wrapper .mp-form-row select[size]:not([size="1"]) {
  padding-right: 0.75rem;
  background-image: none;
}
.form-wrapper .mp-form-row input[type="text"]:focus-visible,
.form-wrapper .mp-form-row input[type="email"]:focus-visible,
.form-wrapper .mp-form-row input[type="url"]:focus-visible,
.form-wrapper .mp-form-row input[type="tel"]:focus-visible,
.form-wrapper .mp-form-row select:focus-visible {
      border-color: #1ab897;
    box-shadow: 0 0 0 0.25rem rgb(0 214 183 / 25%);
	border: 1px solid #1ab897;
}
.form-wrapper .mp-form-row input[type="text"]::placeholder,
.form-wrapper .mp-form-row input[type="email"]::placeholder,
.form-wrapper .mp-form-row input[type="url"]::placeholder,
.form-wrapper .mp-form-row input[type="tel"]::placeholder {
	color: #999;
	font-size: 14px;
}
.form-wrapper .mp-form-row-group {
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
}
.mp-form-label label {
	    font-weight: 400;
    font-size: 12px;
    line-height: 24px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}
.form-wrapper .mp-form-row-group > .mepr-form-input + .mepr-form-input {
  margin-left: -1px;
}
.form-wrapper .mp-form-row-group .mepr-form-input {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
}
.form-wrapper .mp-form-row-group .mepr-form-input:focus {
  z-index: 3;
}
.form-wrapper .mp-form-row-group .mepr-form-input:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.form-wrapper .mp-form-row-group .mepr-form-input:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.form-wrapper .mp-address-group {
  margin-top: 15px;
  margin-bottom: 2rem;
}
.form-wrapper .mp-address-group .mepr-form-input,
.form-wrapper .mp-address-group input[type="text"] {
  height: calc(1.7em + 0.75rem + 2px);
  margin: 0;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.08), 0px 1px 1px rgba(0, 0, 0, 0.04);
  border-radius: 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-wrapper .mp-address-group > .mp-form-row + .mp-form-row .mepr-form-input {
  margin-top: -1px;
}
.form-wrapper .mp-address-group .mp-form-row {
  margin: 0 0 15px;
}
.form-wrapper .mp-address-group .mp-form-row:first-child .mepr-form-input {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.form-wrapper .mp-address-group .mp-form-row:last-child .mepr-form-input {
  border-bottom-left-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.form-wrapper .mepr-payment-option-label {
  display: flex;
  align-items: center;
}
.form-wrapper .mepr-payment-option-label svg {
  width: 4rem;
  height: auto;
  margin-left: auto;
}
.form-wrapper .mepr-payment-option-label input[type="radio"] {
  position: fixed;
  opacity: 0;
}
fieldset.mepr-order-bumps {
  padding: 0;
  margin-top: 1.3rem;
  border: none;
}
.mepr-order-bumps legend {
  font-weight: 700;
  margin: 21px 0;
}

.mepr-payment-methods-radios {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 2em;
}
.mepr-payment-methods-radios label {
  padding: 1rem;
  padding-right: 60px;
  border: 1px solid #ccc;
  border-radius: 6px;
  cursor: pointer;
  margin: 0 !important;
}
.mepr-payment-methods-radios label.checked {
  border: 2px solid #06429e;
}

.mepr_error ul {
  text-align: center;
}

.mepr-payment-option-label {
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: 4rem;

  background-size: 50px;
  line-height: normal;
}



.mepr_pro_error,
.mepr-unauthorized-message {
  display: flex;
  align-items: center;
}
.mepr_pro_error > * + *,
.mepr-unauthorized-message > * + * {
  margin-left: 1rem;
}
.mepr-account-container .mepr_pro_error ul,
.mepr_pro_error ul,
.mepr-unauthorized-message ul {
  list-style-type: none;
  padding: 0;
  margin-bottom: 0;
  margin-left: 1rem;
}
.mepr_pro_error p,
.mepr-unauthorized-message p {
  margin: 0;
}
.mepr_pro_error svg,
.mepr-account-container .mepr_pro_error svg,
.mepr-unauthorized-message svg {
  color: #eb5757;
  width: 3rem;
  height: 3rem;
}

.mepr-payment-option-label.payment-option-stripe {
  background-image: url(../../images/checkout/stripe.svg);
}
.mepr-payment-option-label.payment-option-paypal,
.mepr-payment-option-label.payment-option-paypalcommerce {
  background-image: url(../../images/checkout/paypal.svg);
}
.mepr-payment-option-label.payment-option-authorizeprofile,
.mepr-payment-option-label.payment-option-authorize {
  background-image: url(../../images/checkout/authorize.svg);
}
.mepr-payment-option-label.payment-option-square {
    background-image: url(../../images/checkout/square.png);
}
.mepr-pro-template .mepr-checkout-container .mepr-order-bump .mepr-custom-price{
  display: inline;
}

/* ReploQ x MemberPress: Bumpa-style Subscription Summary (ReadyLaunch) */

.mp_wrapper.mp_invoice.reploq-summary {
  width: 100%;
}

.reploq-summary-card{
  background: #fff;
  border: 0.5px solid rgba(82, 82, 82, 0.15);
  border-radius: 12px;
  overflow: hidden;
}

.reploq-summary-header{
  padding: 22px 22px 10px;
}

.reploq-summary-chip{
  display: inline-block;
  border: 2px solid #0c8f3e;
  color: #0c8f3e;
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 14px;
}

.reploq-summary-title{
  font-size: 34px;
  font-weight: 650;
  letter-spacing: -0.02em;
  margin: 0 0 6px 0;
  color: #0f172a;
}

.reploq-summary-subtitle{
  margin: 0;
  font-size: 16px;
  color: #64748b;
}

.reploq-summary-rows{
  padding: 0 22px 22px;
}

.reploq-summary-row{
  display: flex;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid #eef2f1;
}

.reploq-summary-row:first-child{
  border-top: 0;
}

.reploq-summary-label{
  font-size: 16px;
  color: #667085;
}

.reploq-summary-value{
  font-size: 16px;
  color: #0f172a;
  font-weight: 600;
  text-align: right;
}

.reploq-summary-amount{
  font-size: 22px;
}

.reploq-summary-muted .reploq-summary-value,
.reploq-summary-muted .reploq-summary-label{
  font-weight: 500;
  color: #475569;
}

.reploq-summary-total .reploq-summary-label,
.reploq-summary-total .reploq-summary-value{
  font-weight: 700;
}

/* Paystack Secure Card UI */
.paystack-secure-card {
    background: #f8faff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}
.paystack-secure-card .card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 16px;
	justify-content: space-between;
}
.paystack-secure-card .card-header img { height: 24px; }
.paystack-secure-card .card-body {
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 8px;
    padding: 15px;
    font-size: 14px;
    color: #4a5568;
    line-height: 1.5;
}


/* Responsive */
@media (max-width: 767px){
  .reploq-summary-title{ font-size: 26px; }
  .reploq-summary-header, .reploq-summary-rows{ padding-left: 16px; padding-right: 16px; }
}
.reploq-hidden-fields {
    display: none !important;
}
.reploq-back-btn {
	padding: 8px;
	width: 40px;
	height: 40px;
}
.reploq-plan-header {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
}
.reploq-icon-circle {
    background-color: #e66d3b; /* Orange color from screenshot */
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    box-shadow: 0 4px 10px rgba(230, 109, 59, 0.2);
}
.reploq-renew-badge {
    background-color: #f0f0f0;
    color: #666;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    margin-top: 10px;
    letter-spacing: 0.5px;
}
.reploq-price-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
/* Coupon savings row */
.reploq-summary-savings {
  margin-top: -6px;
}

.reploq-savings-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12); /* soft green */
  color: #15803d; /* deep green text */
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.reploq-savings-amount {
  font-weight: 500;
  opacity: 0.85;
}
/* Header alignment */
.reploq-summary-head-centered {
  text-align: center;
  padding-bottom: 20px;
}

/* Optional icon wrapper */
.reploq-summary-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #ff5a00; /* replace with brand orange */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Renewal badge */
.reploq-renewal-badge {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #f2f4f7;
  color: #667085;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.gv-widget-search {
    -js-display: flex;
    display: flex;
    flex-flow: nowrap;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: space-between;
    flex: 1 1 auto;
}

.gv-widget-search.gv-search-rows .gv-search-widget-area {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    flex-direction: row;
    width: 100%;
    gap: 16px
}

.gv-widget-search.gv-search-rows .gv-search-widget-area.gv-search-horizontal {
    flex-direction: row;
}

.gv-widget-search.gv-search-rows .gv-search-widget-area.gv-search-horizontal .gv-search-box {
    flex-direction: row;
}

.gv-widget-search.gv-search-horizontal .gv-search-box {
    flex-direction: row;
}

.gv-widget-search.gv-search-horizontal label.gv-check-radio {
    display: inline-block;
    margin-right: 1em
}

.gv-widget-search.gv-search-horizontal label.gv-check-radio input {
    display: inline
}

.gv-widget-search.gv-search-vertical {
    flex-direction: column
}

.gv-widget-search.gv-search-vertical .gv-search-box {
    flex: 1 1 auto
}

.gv-widget-search.gv-search-vertical label.gv-check-radio {
    display: block;
    margin-bottom: .25em
}

.gv-widget-search .gv-search-box-links .active {
    font-weight: bold
}

.gv-widget-search p {
    margin: 0;
    padding: 0
}

.gv-widget-search select {
    flex-basis: auto
}

.gv-widget-search select[multiple] {
    width: 100%
}

.gv-widget-search .gv-search-box {
    min-width: 100px;
    align-self: auto;
    margin: 0
}

.gv-widget-search .gv-search-box.gv-search-box-submit {
    display: block;
}

.gv-widget-search .gv-search-box.gv-search-box-submit .gv-search-button {
    order: -111
}

.gv-widget-search .gv-search-box.gv-search-field-search_all {
    flex-grow: unset
}

.gv-widget-search .gv-search-box.gv-search-date,.gv-widget-search .gv-search-box.gv-search-number {
    -js-display: flex;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start
}

.gv-search-horizontal .gv-widget-search .gv-search-box.gv-search-date,.gv-search-horizontal .gv-widget-search .gv-search-box.gv-search-number {
    flex: 1 0 20em
}

.gv-widget-search .gv-search-box.gv-search-date p,.gv-widget-search .gv-search-box.gv-search-number p {
    -js-display: flex;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 16px;
    margin: 0;
    padding: 0;
	flex-basis: 100%;
}

.gv-widget-search .gv-search-box.gv-search-date input,.gv-widget-search .gv-search-box.gv-search-number input {
    flex: 1 1 49%;
    -moz-appearance: textfield
}

.gv-widget-search .gv-search-box.gv-search-date input::-webkit-outer-spin-button,.gv-widget-search .gv-search-box.gv-search-date input::-webkit-inner-spin-button,.gv-widget-search .gv-search-box.gv-search-number input::-webkit-outer-spin-button,.gv-widget-search .gv-search-box.gv-search-number input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0
}

.gv-widget-search input[type="text"],
.gv-widget-search input[type="search"],
.gv-widget-search select {
    width: 100%;
    height: 42px;
    padding: 8px 12px;
    border: 1px solid var(--reploq-border);
    border-radius: 4px;
    letter-spacing: 0.25px;
    box-shadow: var(--reploq-shadow);
    background-color: var(--reploq-surface);
    font-size: 14px;
    color: var(--rqtext);
    transition: all 0.2s ease-in-out;
    margin-bottom: 4px;
    line-height: 1;
    outline: 0;
    box-sizing: border-box
}

.gv-widget-search input[type="text"]:focus,
.gv-widget-search input[type="search"]:focus,
.gv-widget-search select:focus {
    border-color: rgb(27 129 136 / 60%);
    box-shadow: 0 0 0 0.3rem rgb(27 129 136 / 10%);
    border-width: 1px
}

.gv-widget-search input::placeholder {
    color: #a5a5a5
}

.gv-search-box p,
.gv-search-widget-area p {
    margin: 0;
    padding: 0
}
.gv-search-field-search_all input[type="search"] {
    padding-left: 36px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none'%3E%3Ccircle cx='7' cy='7' r='5' stroke='%230B1F2E' stroke-opacity='.35' stroke-width='1.5'/%3E%3Cpath d='M13 13l-2.5-2.5' stroke='%230B1F2E' stroke-opacity='.35' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 12px center
}

.gv-search-field-search_all input[type="search"]::-webkit-search-decoration,
.gv-search-field-search_all input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none
}

.gv-search-date input[type="text"] {
    padding-left: 36px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none'%3E%3Crect x='2' y='3.5' width='12' height='10.5' rx='2' stroke='%230B1F2E' stroke-opacity='.35' stroke-width='1.5'/%3E%3Cpath d='M5 2v3M11 2v3M2 7h12' stroke='%230B1F2E' stroke-opacity='.35' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 12px center
}

.gv-search-clear {
    display: none;
    margin: 0 3%;
    line-height: normal;
    align-items: center
}

.gv-is-search .gv-search-clear {
    order: 2;
    display: inline-block;
    height: 100%
}



#gv-search-advanced-toggle {
    margin: 20px 10px
}

#gv-search-advanced {
    display: none
}

#gv-search-advanced.gv-search-advanced--open {
    display: inherit
}

.gv-field-label {
    padding-right: .25em
}

.gv-list-container .gv-section,.gv-list-single-container .gv-section {
    margin: 1em 0 1.5em
}

.gv-list-container .gv-section .gv-field-label,.gv-list-single-container .gv-section .gv-field-label {
    border-bottom: 1px solid #ccc;
    display: block
}

.gv-image-caption {
    font-style: italic
}

.gfield_repeater_label {
    font-weight: bold
}

.gfield_repeater_value>.gfield_repeater {
    background-color: rgba(1,1,1,0.05);
    border-left: 5px solid rgba(80,80,80,0.1);
    margin: 10px;
    padding: 10px 20px
}

.gfield_repeater .gfield_repeater .gfield_label {
    margin: -10px -20px 0;
    padding: 10px;
    background-color: rgba(80,80,80,0.1)
}

.gfield_repeater_item+.gfield_repeater_item {
    border-top: 1px solid rgba(80,80,80,0.25);
    margin-top: 1rem;
    padding-top: 1rem
}

.gv-more-results {
    font-style: italic
}

.gv-repeater-hr {
    border-color: rgba(80,80,80,0.25);
    margin: 1rem 0
}

.gv-notice {
    padding: .5em .75em;
    margin: 1em 0;
    background-color: #ffffcc;
    border: 1px solid #ddd
}

.gv-notice.gv-error {
    padding: .75em;
    border-color: #fd9ca1;
    background-color: #ffdfe0
}

.gv-notice p {
    margin: 0;
    padding: 0
}

.gv-notice img {
    max-width: 100%
}

.gv-edit-entry-wrapper .gform-footer #publishing-action {
    width: 100%
}

.gv-edit-entry-wrapper .gform-footer #publishing-action .alignright {
    float: right
}

.gv-edit-entry-wrapper .gform-footer #publishing-action input.gv-button-update,.gv-edit-entry-wrapper .gform-footer #publishing-action a.gv-button-cancel,.gv-edit-entry-wrapper .gform-footer #publishing-action a.gv-button-delete {
    line-height: normal;
    margin: 0
}

.gv-edit-entry-wrapper .dashicons {
    font-size: .925em;
    padding: 0 .2em;
    width: 1em;
    height: 1em;
    line-height: 1em;
    margin-left: .5em
}

.gv-edit-entry-wrapper .gravity-theme .gform_delete_file {
    line-height: 1;
    padding: .25em;
    margin: 0 .25em;
    background: var(--global-palette-btn-bg)
}

.gv-edit-entry-wrapper .gravity-theme .gform_delete_file .dashicons {
    margin: 0;
    width: 20px
}

.gv-edit-entry-wrapper .gravity-theme .gform_delete_file:hover {
    background: var(--global-palette-btn-bg-hover)
}

.gv-edit-entry-wrapper .dashicons-dismiss {
    color: #a10013
}

.gv-edit-entry-wrapper .dashicons-dismiss:hover {
    color: #e20012
}

.gv-edit-entry-wrapper .dashicons-download {
    color: #406e20
}

.gv-edit-entry-wrapper .dashicons-download:hover {
    color: #469416
}

.gv-edit-entry-wrapper .ginput_preview_control {
    display: inline-block;
    font-size: 1.25rem;
    outline: none;
    position: relative;
    text-decoration: none
}

.gv-edit-entry-wrapper .ginput_preview_control.gform-icon--circle-arrow-down {
    color: #22a753
}

.gv-edit-entry-wrapper .ginput_preview_control.gform-icon--circle-delete {
    color: #dd301d
}

.gv-edit-entry-wrapper .gform-theme--framework .gfield:where(.gfield--type-fileupload,.gfield--input-type-fileupload) .ginput_preview {
    margin-top: 8px;
    margin-bottom: 4px;
    flex-direction: row;
    align-items: center
}

.gv-edit-entry-wrapper .ginput_container .select2-container .select2-selection--single,.gv-edit-entry-wrapper .ginput_container .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px
}

.gv-edit-entry-wrapper .ginput_container .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 40px
}

.gv-edit-entry-wrapper .gf_progressbar_percentage {
    background-color: var(--gf-field-pg-prog-bar-bg-color-blue, #204ce5)
}

@media only screen and (max-width: 400px) {
    .gv-edit-entry-wrapper .gravity-theme .gform-footer #publishing-action input.gv-button-update,.gv-edit-entry-wrapper .gravity-theme .gform-footer #publishing-action a.gv-button-cancel,.gv-edit-entry-wrapper .gravity-theme .gform-footer #publishing-action a.gv-button-delete {
        float:none;
        margin-top: 3px;
        display: inline-block
    }
}

.gravityview-oembed .gv-back-link {
    display: none
}

.gv-grid,.gv-grid .gv-grid-row {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    direction: ltr;
    text-align: left;
    width: 100%
}

.gv-grid:before,.gv-grid:after,.gv-grid .gv-grid-row:before,.gv-grid .gv-grid-row:after {
    content: " ";
    display: table
}

.gv-grid:after,.gv-grid .gv-grid-row:after {
    clear: both
}

.gv-grid:after {
    clear: both
}

[class*='gv-grid-col-'] {
    float: left;
    padding-right: 1em;
    min-height: 1px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

@media screen and (max-width: 320px) {
    [class*='gv-grid-col-'] {
        width:100% !important;
        float: none
    }
}

@media screen and (max-width: 480px) {
    [class*='gv-grid-col-'] {
        width:100% !important;
        float: none
    }
}

.gv-grid-col-1-1 {
    width: 100%;
    padding-right: 0
}

.gv-grid-col-1-3 {
    width: 33.3333333333%
}

.gv-grid-col-2-3 {
    width: 66.6666666667%
}

.gv-grid-col-1-2 {
    width: 50%
}

.gv-grid-col-1-4 {
    width: 25%
}

.gv-grid-col-1-6 {
    width: 16.6666666667%
}

.gv-grid-col-1-8 {
    width: 12.5%
}

.gv-right {
    text-align: right;
    display: block
}

.gv-right .gv-right>div {
    float: right
}

.gv-left {
    text-align: left;
    display: block
}

.gv-left .gv-right>div {
    float: left
}

@media screen and (max-width: 480px) {
    [class*='gv-grid-col-'] {
        width:100%
    }

    .gv-right,.gv-left,.gv-right>div,.gv-left>div {
        float: none;
        text-align: left
    }
}

body .gv-widget-page-links ul,body .gv-widget-page-links li {
    list-style: none;
    margin: 0;
    padding: 0
}

body .gv-widget-page-links li {
    display: inline;
    display: inline-block
}

body .gv-widget-page-links li .page-numbers {
    display: inline-block;
    padding: .4em .5em
}

body .gv-widget-page-links li .page-numbers.next {
    float: none
}

#TB_window img {
    max-height: 100%;
    max-width: 100%
}

#TB_load {
    z-index: 100051
}

.gv-gallery .gv-field-file-uploads {
    margin: 0;
    padding: 0
}

.gv-gallery .gv-field-file-uploads li {
    list-style: none;
    display: inline-block;
    max-width: 200px;
    margin-right: 1em;
    margin-bottom: .5em
}

.gv-gallery .gv-field-file-uploads li img {
    max-width: 100%
}

.gv-container img {
    display: block;
    margin: 0;
    padding: 0;
    max-width: 100%;
    max-height: 100%
}

.gv-powered-by {
    width: 100%;
    display: block;
    text-align: center
}

.gv-powered-by a {
    font-size: .825em;
    padding: .25em 0 0 0
}

.gv-container {
    text-align: left
}

.gv-no-results-text {
    text-align: center;
    vertical-align: middle;
    padding: .5em
}

a.gv-sort {
    text-decoration: none;
    border-bottom: none
}

.gv-hidden {
    display: none
}

@media (min-width: 1025px) {
    .gv-search-box:nth-child(1) { flex: 0 0 25% }
    .gv-search-box:nth-child(2) { flex: 0 0 25% }
    .gv-search-box:nth-child(3) { flex: 0 0 47% }
}

@media (max-width: 1024px) {
    .gv-widget-search.gv-search-rows .gv-search-widget-area {
        flex-wrap: wrap;
        gap: 16px
    }
    .gv-search-box:nth-child(1) { flex: 1 1 calc(50% - 5px) }
    .gv-search-box:nth-child(2) { flex: 1 1 calc(50% - 5px) }
    .gv-search-box:nth-child(3) { flex: 1 1 100% }
.gv-search-widget-area .gv-search-horizontal .gv-search-box .gv-search-field-text .gv-search-field-search_all .gv-search{
    padding-right: 0;
}
	
}

@media (max-width: 767px) {
	.gv-widget-search.gv-search-rows .gv-search-widget-area.gv-search-horizontal {
    flex-direction: column;
}
    .gv-widget-search.gv-search-rows .gv-search-widget-area {
        flex-direction: column;
        flex-wrap: wrap;
        gap: 16px;
    }
    .gv-search-box:nth-child(1),
    .gv-search-box:nth-child(2),
    .gv-search-box:nth-child(3) {
        flex: 1 1 100%;
        width: 100%
    }
    .gv-widget-search input[type="text"],
    .gv-widget-search input[type="search"],
    .gv-widget-search select {
        height: 42px;
        font-size: 14px
    }
	.gv-widgets-header.gv-grid {
    margin-bottom: 16px;
    padding: 16px;
    background: #fffefe;
    border: 1px solid #e8e6e0;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 1px 4px;
}
	.gv-search-widget-area .gv-search-horizontal .gv-search-box .gv-search-field-text .gv-search-field-search_all .gv-search{
    padding-right: 0;
}
	
}


/* =============================================================================
   ReploQ — Currency Settings Panel Styles
   Add to: child theme stylesheet or Bricks global CSS
   Prefix: rq- (existing convention)
   ============================================================================= */

/* ── Settings section header ─────────────────────────────────────────────── */

.rq-settings-section-header {
    margin-bottom: 28px;
}

.rq-settings-section-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--rq-text-primary, #111827);
    margin: 0 0 6px;
}

.rq-settings-section-desc {
    font-size: 14px;
    color: var(--rq-text-muted, #6B7280);
    margin: 0;
    line-height: 1.55;
}


/* ── Form group ──────────────────────────────────────────────────────────── */

.rq-form-group {
    margin-bottom: 24px;
}

.rq-form-label {
    display: inline;
    font-weight: 400 !important;
    font-size: 14px !important;
    color: #2a3330;
    margin-bottom: 4px !important;
}

.rq-form-hint {
    display: block;
    font-size: 12px;
    color: var(--rq-text-muted, #6B7280);
    margin-top: 6px;
}


/* ── Select ──────────────────────────────────────────────────────────────── */

.rq-select-wrapper {
    position: relative;
    max-width: 380px;
}

.rq-select-wrapper::after {
    content: '';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--rq-text-muted, #6B7280);
    pointer-events: none;
}

.rq-select {
    width: 100%;
    height: 42px;
    padding: 8px 12px;
    border: 1px solid var(--reploq-border);
    border-radius: 4px;
    letter-spacing: 0.25px;
    box-shadow: var(--reploq-shadow);
    background-color: var(--reploq-surface);
    font-size: 14px;
    color: var(--rqtext);
    transition: all 0.2s ease-in-out;
    margin-bottom: 4px;
    line-height: 1;
    outline: 0;
    box-sizing: border-box;
}



.rq-select optgroup {
    font-weight: 500;
    font-size: 12px;
    color: var(--rq-text-muted, #6B7280);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.rq-select option {
    font-weight: 400;
    font-size: 14px;
    color: var(--rq-text-primary, #111827);
    padding: 6px 0;
}


/* ── Live preview block ──────────────────────────────────────────────────── */

.rq-currency-preview {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--rq-surface, #F9FAFB);
    border: 1px solid var(--rq-border, #E5E7EB);
    border-radius: 8px;
    padding: 12px 18px;
    margin-bottom: 20px;
    transition: background 0.2s ease;
}

.rq-currency-preview-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--rq-text-muted, #6B7280);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.rq-currency-preview-amount {
    font-size: 18px;
    font-weight: 500;
    color: var(--rq-coral, #fd5353);
    transition: opacity 0.15s ease;
}

/* Brief flash when currency changes */
.rq-currency-preview-amount.rq-updating {
    opacity: 0.4;
}


/* ── Billing note ────────────────────────────────────────────────────────── */

.rq-currency-billing-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: #FFF7ED;
    border: 1px solid #FED7AA;
    border-radius: 8px;
    padding: 12px 14px;
    margin-bottom: 28px;
    font-size: 14px;
    color: #92400E;
    line-height: 1.5;
}

.rq-currency-billing-note svg {
    flex-shrink: 0;
    margin-top: 1px;
    color: #D97706;
}

.rq-currency-billing-note strong {
    font-weight: 500;
}


/* ── Form actions ────────────────────────────────────────────────────────── */

.rq-form-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 4px;
}

/* Reuses existing .rq-btn .rq-btn-primary from your global stylesheet */
/* If not yet defined, add: */
.rq-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 14px;
	min-width: max-content;
    width: fit-content !important;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    border: none;
    transition: background 0.15s ease, opacity 0.15s ease;
}

.rq-btn-primary {
    background: var(--rq-coral, #fd5353);
    color: #fff;
}

.rq-btn-primary:hover {
    background: #e84343;
}

.rq-btn-primary:active {
    opacity: 0.85;
}

.rq-btn-primary:disabled,
.rq-btn-primary[aria-busy="true"] {
    opacity: 0.55;
    cursor: not-allowed;
}


/* ── Mobile adjustments ──────────────────────────────────────────────────── */

@media (max-width: 640px) {
    .rq-select-wrapper {
        max-width: 100%;
    }

    .rq-currency-preview {
        flex-direction: column;
        gap: 4px;
        align-items: flex-start;
    }

    .rq-currency-preview-amount {
        font-size: 20px;
    }
}

/* ============================================================================
   ReploQ Analytics CSS
   ============================================================================ */

/* ── Filter bar ─────────────────────────────────────────────── */
.rq-an-filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  gap: 12px;
}

.rq-an-filter-group {
  display: flex;
  align-items: center;
  gap: 12px;
	flex: 1;
}

.rq-an-select {
  appearance: none;
  -webkit-appearance: none;
  font-size: 12px;
  border: 1px solid var(--reploq-border);
  border-radius: 7px;
  padding: 6px 32px 6px 12px;
  color: var(--rqtext, #0B1F2E);
  background: var(--reploq-surface, #fff)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%230B1F2E' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    no-repeat right 10px center;
  cursor: pointer;
  outline: none;
  transition: border-color .15s;
  min-width: 120px;
}

.rq-an-select:focus { border-color: none; }

.rq-an-filter-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
	margin-left: auto;
}

.rq-an-action-btn {
  	display: inline-flex;
      align-items: center;
    gap: 5px;
    width: fit-content;
    font-size: 14px;
    min-width: max-content;
    font-weight: 400;
    line-height: 1.4;
    padding: 6px 20px;
    border-radius: 5px;
    background: var(--rqprimary);
    color: #ffffff;
    cursor: pointer;
    letter-spacing: .5px;
    text-decoration: none;
    white-space: nowrap;
    transition: background .12s, border-color .12s;
}

.rq-an-action-btn:hover {
  opacity: 0.9;
}


/* ── Section header ──────────────────────────────────────────── */
.rq-an-section-hdr {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 28px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--reploq-border);
}

.rq-an-section-ico { font-size: 18px; }

.rq-an-section-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--rqtext, #0B1F2E);
  margin: 0;
}
/* ── Analytics tabs ───────────────────────────────────────── */
.rq-an-tabs {
	display: flex;
    align-items: center;
    gap: 5px;
    background: #F0EDEA;
    border-radius: 12px;
    padding: 5px;
    margin-bottom: 20px;
    width: 100%;
	overflow-x: auto;
	  scrollbar-width: none;
	  -webkit-overflow-scrolling: touch;
	  position: relative;
}
.rq-an-tabs::-webkit-scrollbar { display: none; }
.rq-an-tab {
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: #4A6A6A;
    text-decoration: none;
    transition: all .15s ease;
    white-space: nowrap;
    flex: 1;
    justify-content: center;
    align-items: center;
    display: inline-flex;
}

.rq-an-tab:hover {
  color: #0D4747;
}

.rq-an-tab--active {
  background: #ffffff;
  color: var(--rqprimary);
  box-shadow: 0 1px 3px 0 var(--tw-shadow-color, #0000001a), 0 1px 2px -1px var(--tw-shadow-color, #0000001a);
}
.rq-an-tab--active:hover {
	color: var(--rqprimary);
}
/* Fade overlay on the right edge */
.rq-an-tabs-wrap {
  position: relative;
  margin-bottom: 18px;
}

.rq-an-tabs-wrap .rq-an-tabs {
  margin-bottom: 0;
}

.rq-an-tabs-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 100%;
  background: linear-gradient(to right, transparent, #F0EDEA);
  border-radius: 0 14px 14px 0;
  pointer-events: none;
}
/* ── Stat cards grid ─────────────────────────────────────────── */
.rq-an-stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

.rq-an-stat {
  background: var(--reploq-surface, #fff);
  border: 1px solid var(--reploq-border);
  border-radius: 10px;
  padding: 14px 16px;
  box-shadow: var(--reploq-shadow-card);
}

.rq-an-stat-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--rqtitle-desc);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 5px;
}

.rq-an-stat-val {
  font-size: 18px;
  font-weight: 500;
  color: var(--rqtext, #0B1F2E);
  line-height: 1.5;
  margin-bottom: 5px;
}

.rq-an-stat-sub {
  font-size: 10px;
  color: rgba(11,31,46,.4);
  margin-top: 2px;
  text-transform: uppercase;
}

/* ── Chart card ──────────────────────────────────────────────── */
.rq-an-chart-card {
  background: var(--reploq-surface, #fff);
  border: 1px solid var(--reploq-border);
  border-radius: 10px;
  padding: 16px;
  box-shadow: var(--reploq-shadow-card);
  margin-bottom: 18px;
}

.rq-an-chart-hdr {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px;
}

.rq-an-chart-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--rqtext, #0B1F2E);
}

.rq-an-chart-sub {
  font-size: 12px;
  color: rgba(11,31,46,.4);
}

.rq-an-chart-wrap {
  position: relative;
  width: 100%;
}

.rq-an-chart-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--reploq-border);
  font-size: 10.5px;
  color: rgba(11,31,46,.4);
}

.rq-an-total-val {
  font-size: 14px;
  font-weight: 600;
  color: var(--rqtext, #0B1F2E);
}

/* ── Legend ──────────────────────────────────────────────────── */
.rq-an-chart-legend {
  display: flex;
  gap: 14px;
  margin-bottom: 8px;
}

.rq-an-leg-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  color: rgba(11,31,46,.5);
}

.rq-an-leg-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
}

/* ── Donut layout ────────────────────────────────────────────── */
.rq-an-donut-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.rq-an-donut-canvas {
  flex-shrink: 0;
  width: 160px;
  position: relative;
}

.rq-an-donut-legend {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rq-an-leg-row {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
}

.rq-an-leg-name {
  flex: 1;
  color: rgba(11,31,46,.6);
}

.rq-an-leg-pct {
  font-weight: 700;
  color: var(--rqtext, #0B1F2E);
  min-width: 28px;
  text-align: right;
}

.rq-an-leg-amt {
  font-size: 10px;
  color: rgba(11,31,46,.4);
  min-width: 80px;
  text-align: right;
}

/* ── Goals progress bars ─────────────────────────────────────── */
.rq-an-goal-bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rq-an-goal-row {}

.rq-an-goal-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.rq-an-goal-name {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--rqtext, #0B1F2E);
}

.rq-an-goal-pct {
  font-size: 10.5px;
  font-weight: 700;
  color: rgba(11,31,46,.5);
}

.rq-an-prog-track {
  width: 100%;
  height: 6px;
  background: #F0EDE8;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 3px;
}

.rq-an-prog-fill {
  height: 100%;
  border-radius: 3px;
  transition: width .4s ease;
}

.rq-an-goal-amts {
  font-size: 9.5px;
  color: rgba(11,31,46,.4);
}

/* ── Plan gate ───────────────────────────────────────────────── */
.rq-an-gate {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  background: var(--reploq-surface, #fff);
  border: 1px dashed var(--reploq-border);
  border-radius: 12px;
}

.rq-an-gate-ico {
  font-size: 36px;
  margin-bottom: 12px;
  opacity: .4;
}

.rq-an-gate-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--rqtext, #0B1F2E);
  margin-bottom: 6px;
}

.rq-an-gate-sub {
  font-size: 12px;
  color: rgba(11,31,46,.5);
  max-width: 320px;
  margin-bottom: 18px;
}

.rq-an-gate-btn {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  background: #fd5353;
  color: #fff;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: background .12s;
}

.rq-an-gate-btn:hover { background: #e03e3e; }

/* ── Print stylesheet ────────────────────────────────────────── */
@media print {
  .rq-an-filters,
  .rq-an-filter-actions,
  .rq-an-action-btn,
  .rq-pd-back,
  .rq-pc-action-btn,
  header, footer, nav,
  .sidebar, .topbar {
    display: none !important;
  }

  .rq-an-stats-grid { grid-template-columns: repeat(3, 1fr); }
  .rq-an-chart-card { break-inside: avoid; }
  body { background: #fff !important; }
}
/* ── Analytics chart grid ─────────────────────────────────── */
.rq-an-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.rq-an-grid--full {
  grid-template-columns: 1fr;
  margin-bottom: 12px;
}

.rq-an-grid--wide {
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin-bottom: 12px;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .rq-an-stats-grid { grid-template-columns: repeat(3, 1fr); grid-gap: 24px;}
}

@media (max-width: 767px) {
  .rq-an-stats-grid { grid-template-columns: repeat(2, 1fr); grid-gap: 16px;}
  .rq-an-donut-wrap { flex-direction: column; }
  .rq-an-donut-canvas { width: 100%; }
	  .rq-an-grid,
  .rq-an-grid--wide {
    grid-template-columns: 1fr;
  }
	.rq-an-filters {
    display: inline-flex;
    grid-template-columns: auto 1fr; /* Forces a perfect 50/50 split for the left and right groups */
  }

  .rq-an-filter-group {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Forces the internal dropdowns and buttons to share space equally */
    margin-left: 0; /* Resets the 'margin-left: auto' from your desktop CSS */
    width: 100%;
  }

  .rq-an-action-btn {
    width: 100%;
	  min-width: 0;
    
    justify-content: center; /* Centers the text inside the buttons */
    
  }

	
}

@media (max-width: 480px) {
  .rq-an-stats-grid { grid-template-columns: repeat(2, 1fr); grid-gap: 16px; }
}

/* Advanced Select CSS */
.ts-control, .ts-control select {
	width: 100%;
    height: 42px  !important;
    padding: 8px 12px  !important;
    border: 1px solid var(--reploq-border-input) !important;
    border-radius: var(--reploq-radius-sm) !important;
    letter-spacing: 0.25px !important;
    box-shadow: var(--reploq-shadow) !important;
    background-color: var(--reploq-surface) !important;
    font-size: 14px !important;
    color: var(--rqtext) !important;
    transition: all 0.2s ease-in-out !important;
    margin-bottom: 4px !important;
    line-height: 1 !important;
    outline: 0 !important;
    box-sizing: border-box !important;
}

.rq-ct-block {
  padding-top: 20px;
  border-top: 1px solid var(--reploq-border);
}

.rq-ct-section-hdr {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 14px;
}

.rq-ct-section-title {
  font-size: 14px;
  font-weight: 500;
  color: #547f7f;
  text-transform: uppercase;
}

.rq-ct-section-sub {
  font-size: 13px;
  color: var(--rqtitle-desc);
}

.rq-ct-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 16px;
}

.rq-ct-stat {
  background: var(--reploq-surface, #fff);
  border: 1px solid var(--reploq-border);
  border-radius: var(--reploq-radius);
  padding: 16px;
  box-shadow: var(--reploq-shadow-card);
}

.rq-ct-stat-label {
  display: block;
  font-size: 12px;
  color: rgba(11,31,46,.4);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 4px;
}

.rq-ct-stat-val {
  font-size: 18px;
  font-weight: 500;
  color: var(--rqtext, #0B1F2E);
}

.rq-ct-sub-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(11,31,46,.5);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 8px;
}

.rq-ct-bar-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 8px;
}

.rq-ct-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
}

.rq-ct-bar-name {
  min-width: 120px;
  color: var(--rqtext, #0B1F2E);
  font-weight: 500;
  flex-shrink: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rq-ct-bar-track {
  flex: 1;
  height: 6px;
  background: #F0EDE8;
  border-radius: 3px;
  overflow: hidden;
}

.rq-ct-bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width .4s ease;
}

.rq-ct-bar-val {
  font-size: 11px;
  color: rgba(11,31,46,.5);
  min-width: 80px;
  text-align: right;
  flex-shrink: 0;
}

.rq-ct-empty {
  font-size: 12px;
  color: rgba(11,31,46,.4);
  padding: 12px 0;
}

.rq-ct-more {
  font-size: 11px;
  color: rgba(11,31,46,.4);
  margin-top: 8px;
  padding: 6px 14px;
}

@media (max-width: 767px) {
  .rq-ct-stats {grid-template-columns: repeat(2, 1fr);gap: 16px;}
  .rq-ct-bar-name { min-width: 80px; }
}
 
.rq-bell-list {
  max-height: 340px;
  overflow-y: auto;
}
.rq-bell-list::-webkit-scrollbar {
    display: block;
    width: 4px;
    height: 4px;
    background: var(--rqprimary);
}
.rq-bell-list::-webkit-scrollbar-track {
    background: #dadddf;
    border-radius: 4px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}
.rq-bell-list::-webkit-scrollbar-thumb {
    background: var(--rqprimary);
    border-radius: var(--reploq-radius);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
.rq-bell-list::-webkit-scrollbar-corner {
    background: #c7c8cd;
}
.rq-bell-list::-webkit-scrollbar-thumb:hover {
    background: #117963;
}
.rq-bell-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 16px;
  cursor: pointer;
  transition: background .12s;
  position: relative;
    border-bottom: 1px dashed #d7d5cf;
}
.rq-bell-item:last-child {
	border-bottom: none;
}
.rq-bell-item:hover { background: #faf9f7; }
 
.rq-bell-item.rq-bell-unread { background: #fffafa; }
 
.rq-bell-ico {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
 
.rq-bell-body { flex: 1; min-width: 0; }
 
.rq-bell-title {
  font-size: 12.5px;
  font-weight: 400;
  color:var(--rqtext);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
 
.rq-bell-desc {
  font-size: 11px;
  color: rgba(11,31,46,.5);
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
 
.rq-bell-time {
  font-size: 10px;
  color: rgba(11,31,46,.35);
}
 
.rq-bell-unread-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fd5353;
  flex-shrink: 0;
  margin-top: 5px;
}
 
.rq-bell-empty {
  padding: 24px 16px;
  text-align: center;
  font-size: 12.5px;
  color: rgba(11,31,46,.4);
}
 
.rq-bell-mark-all {
  font-size: 11.5px;
  color: #fd5353;
  font-weight: 500;
  cursor: pointer;
}
/* ── Notifications page ───────────────────────────────────── */
.rq-notif-page {}

.rq-notif-toolbar {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 16px;
  background: var(--reploq-surface, #fff);
  border: 1px solid var(--reploq-border);
  border-radius: 10px;
  padding: 16px;
  box-shadow: var(--reploq-shadow-card);
}

.rq-notif-search-form {flex: 1;min-width: 180px;}

.rq-notif-search {
  width: 100%;
  font-size: 14px;
  /* border: 1px solid var(--reploq-border); */
  /* border-radius: 7px; */
  padding: 7px 12px;
  height: 42px;
  outline: none;
  color: var(--rqtext, #0B1F2E);
  /* background: #FAFAF9; */
  background: #fff;
  border: 1px solid var(--reploq-border-input);
  border-radius: var(--reploq-radius-sm);
  overflow: hidden;
  box-shadow: var(--reploq-shadow);
}

.rq-notif-search:focus {/* border-color: #0D4747; *//* background: #fff; */border-color: rgb(27 129 136 / 60%);box-shadow: 0 0 0 0.3rem rgb(27 129 136 / 10%);border-width: 1px;}

.rq-notif-mark-all-btn {
  font-size: 13px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 7px;
  border: none;
  background: var(--rqprimary);
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  height: 32px;
  transition: background .12s;
}

.rq-notif-mark-all-btn:hover {background: var(--rqprimary-d-1);}
.rq-notif-mark-all-btn:disabled { opacity: .6; cursor: default; }

.rq-notif-tab-pills {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}

.rq-notif-pill {
  font-size: 13px;
  font-weight: 500;
  height: 32px;
  padding: 5px 12px;
  border-radius: 5px;
  border: 1.5px solid var(--reploq-border);
  color: rgba(11,31,46,.5);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all .12s;
}

.rq-notif-pill.active {
  background: #16474b;
  color: #fff;
  border-color: #0D4747;
}

.rq-notif-pill-count {
  font-size: 10px;
  background: rgba(255,255,255,.25);
  padding: 0 5px;
  border-radius: 10px;
}

.rq-notif-pill.active .rq-notif-pill-count { background: rgba(255,255,255,.2); }

/* Table */
.rq-notif-table { width: 100%; }

.rq-notif-row--unread {background: #fffafa;}

.rq-notif-td-type { width: 110px; }

.rq-notif-type-badge {
  display: inline-flex;
  font-size: 12px;
  font-weight: 400;
  padding: 3px 10px;
  border-radius: 5px;
  white-space: nowrap;
}

.rq-notif-td-date { width: 130px; white-space: nowrap; }

.rq-notif-date {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--rqtext, #0B1F2E);
}

.rq-notif-time {
  display: block;
  font-size: 10.5px;
  color: rgba(11,31,46,.4);
  margin-top: 2px;
}

.rq-notif-title {
  font-size: 13px;
  color: rgba(11,31,46,.6);
}

.rq-notif-title--unread {
  font-weight: 400;
  color: var(--rqtext, #0B1F2E);
}

.rq-notif-desc {
  font-size: 11px;
  color: rgba(11,31,46,.4);
  margin-top: 2px;
}

.rq-notif-td-action { width: 40px; text-align: center; }

.rq-notif-mark-read {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  opacity: .5;
  padding: 4px;
  transition: opacity .12s;
}

.rq-notif-mark-read:hover { opacity: 1; }

@media (max-width: 767px) {
  .rq-notif-toolbar { flex-direction: column; align-items: flex-start; }
  .rq-notif-search-form { width: 100%; }
  .rq-notif-td-date { display: none; }
}




.rq-txn-table { width:100%;border-collapse:collapse; }
.rq-txn-table th { font-size:8.5px;font-weight:700;color:rgba(11,31,46,.4);text-transform:uppercase;letter-spacing:.07em;padding:6px 14px;text-align:left;background:#FAFCFC;border-bottom:1px solid var(--reploq-border); }
.rq-txn-table td { padding:9px 14px;border-bottom:1px solid var(--reploq-border);vertical-align:middle; }
.rq-txn-table tr:last-child td { border-bottom:none; }
.rq-txn-name-cell { display:flex;align-items:center;gap:8px; }
.rq-txn-ico { width:26px;height:26px;border-radius:7px;display:flex;align-items:center;justify-content:center;font-size:11px;font-weight:700;flex-shrink:0; }
.rq-txn-name {font-weight: 400;font-size: 13px;color:var(--rqtext,#0B1F2E);}
.rq-txn-sub {font-size: 11px;color: rgba(11,31,46,.5);margin-top:1px;}
.rq-txn-date { font-size:10.5px;color:rgba(11,31,46,.4); }
.rq-txn-amt {font-size: 13px;font-weight: 400;white-space:nowrap;}
.rq-txn-badge { font-size:8.5px;font-weight:700;padding:2px 8px;border-radius:20px; }
.rq-txn-badge--ok { background:#ECFDF5;color:#0A7A43; }
.rq-txn-badge--log { background:#EFF6FF;color:#1D4ED8; }
.rq-txn-footer { padding:10px 14px;border-top:1px solid var(--reploq-border); }
.rq-txn-see-all { font-size:11px;color:#fd5353;font-weight:600;text-decoration:none; }




.rq-dg-total-label { font-size:10px;color:rgba(11,31,46,.4);margin-bottom:2px; }
.rq-dg-total-val { font-size:18px;font-weight:600;color:var(--rqtext,#0B1F2E);margin-bottom:12px; }
.rq-dg-list { display:flex;flex-direction:column;gap:11px; }
.rq-dg-item {}
.rq-dg-header { display:flex;align-items:center;justify-content:space-between;margin-bottom:4px; }
.rq-dg-name {font-size: 12px;font-weight:500;color:var(--rqtext,#0B1F2E);text-decoration:none;}
.rq-dg-name:hover { color:#fd5353; }
.rq-dg-pct {font-size: 12px;font-weight: 500;color: rgba(11,31,46,.5);}
.rq-dg-track { width:100%;height:5px;background:#F0EDE8;border-radius:3px;overflow:hidden;margin-bottom:3px; }
.rq-dg-fill { height:100%;border-radius:3px; }
.rq-dg-amounts {font-size: 12px;color: rgba(11,31,46,.5);}
.rq-dg-add {display:flex;align-items:center;justify-content:center;padding:7px;border: 1px solid var(--reploq-border,#E0EAEA);border-radius: 5px;font-size: 12px;color:rgba(11,31,46,.4);cursor:pointer;margin-top:10px;text-decoration:none;transition:.12s;}
.rq-dg-add:hover { border-color:#fd5353;color:#fd5353; }



.rq-dp-hero { font-size:22px;font-weight:600;color:var(--rqtext,#0B1F2E);margin-bottom:3px; }
.rq-dp-sub { font-size:10px;color:rgba(11,31,46,.4);margin-bottom:10px; }
.rq-dp-badge { font-size:11px;font-weight:400;background:#ebfdf5;color:#097a43;padding:2px 7px;border-radius:20px;margin-left:5px; }
.rq-dp-proj { margin-top:6px; }
.rq-dp-proj-row { display:flex;align-items:center;justify-content:space-between;margin-bottom:4px; }
.rq-dp-proj-name {font-size: 12px;font-weight:500;color:#4A6A6A;text-decoration:none;}
.rq-dp-proj-name:hover { color:#fd5353; }
.rq-dp-proj-pct {font-size: 12px;color: rgba(11,31,46,.5);}
.rq-dp-track { width:100%;height:5px;background:#F0EDE8;border-radius:3px;overflow:hidden; }
.rq-dp-fill { height:100%;border-radius:3px; }
.rq-dp-empty { font-size:11px;color:rgba(11,31,46,.4); }



.rq-sc-rows { display:flex;flex-direction:column;gap:6px; }
.rq-sc-row { display:flex;align-items:center;justify-content:space-between;font-size:10.5px; }
.rq-sc-label { color:rgba(11,31,46,.5);display:flex;align-items:center;gap:5px; }
.rq-sc-dot { width:6px;height:6px;border-radius:50%;display:inline-block;flex-shrink:0; }
.rq-sc-val { font-weight:600;color:var(--rqtext,#0B1F2E); }



/* ═══════════════════════════════════════════════════════════════════════
   ACTIVITY LOG
   ═══════════════════════════════════════════════════════════════════════ */
 
.rq-act-list {display: flex;flex-direction: column;gap: 9px;margin-top: 11px;}
.rq-act-row  { display: flex; align-items: flex-start; gap: 9px; }
.rq-act-icon { font-size: 15px; width: 22px; flex-shrink: 0; line-height: 1.4; }
.rq-act-body { display: flex; flex-direction: column; gap: 1px; }
.rq-act-text {font-size: 12px;font-weight: 400;color: var(--rqtext,#0A2424);}
.rq-act-time {font-size: 12px;color: rgba(11,31,46,.5);}



.rq-cf-chart-wrap { position:relative;height:300px; min-width: 0;}



.rq-bd-body {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.rq-breakdown-wrap {}
.rq-pw {
  position: relative;
    height: 110px;
 
}
.polar-wrap {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 6px;
}
.rq-bd-legend {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 0;
}
.rq-bd-li {display:flex;align-items:center;justify-content:space-between;font-size: 12px;}
.rq-bd-li-left { display:flex;align-items:center;gap:5px;color:rgba(11,31,46,.5); }
.rq-bd-dot { width:8px;height:8px;border-radius:50%;flex-shrink:0; }
.rq-bd-li-right { text-align:right; }
.rq-bd-pct {font-weight: 500;color:var(--rqtext,#0B1F2E);font-size: 12px;}
.rq-bd-amt {font-size: 12px;color: rgb(11 31 46 / 49%);display:block;}
.rq-bd-footer {display:flex;align-items:center;justify-content:space-between;margin-top:10px;padding-top:10px;border-top:1px solid var(--reploq-border,#E0EAEA);font-size: 12px;}
.rq-bd-total-label {color: rgba(11,31,46,.5);}
.rq-bd-total-val {font-size:14px;font-weight: 500;color:var(--rqtext,#0B1F2E);}
.rq-trend-tag {font-size: 11px;font-weight: 400;padding:1px 5px;border-radius:20px;margin-left:5px;}
.rq-trend-up { background:#FEF2F2;color:#B91C1C; }
.rq-trend-dn { background:#ECFDF5;color:#0A7A43; }

.rq-gate {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 64px 32px;
    gap: 12px;
    background: var(--rq-surface, #fff);
    border: 1px dashed var(--rq-border, #D8E4E4);
    border-radius: 16px;
}
.rq-gate-ico   { font-size: 40px; }
.rq-gate-title { font-size: 18px; font-weight: 500; color: #0D4747; }
.rq-gate-sub   { font-size: 14px; color: #637070; max-width: 360px; line-height: 1.6; }
.rq-gate-btn   {
    margin-top: 8px;
    display: inline-block;
    background: #FD5353;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 100px;
    text-decoration: none;
    transition: opacity 0.2s;
}
.rq-gate-btn:hover { opacity: 0.85; }
.rq-shared-meta  { display: flex; align-items: center; gap: 10px; }
.rq-shared-pct   { font-size: 12px; color: var(--rq-muted); }
.rq-shared-amt   {font-size: 12px;font-weight: 500;col;color: var(--rqtext);}

.rq-gate-compact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 4px 0;
}
.rq-gate-compact-text {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(11,31,46,.5);
}
.rq-gate-compact-btn {
  display: inline-block;
  background: #FD5353;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 4px 16px;
  border-radius: var(--reploq-radius-sm);
  text-decoration: none;
  transition: opacity 0.2s;
}
.rq-gate-compact-btn:hover { background: var(--rqprimary-d-1); }


/* ============================================================
   ReploQ — GravityForms Datepicker Skin
   Drop into: child theme style.css  OR  Bricks > Custom CSS
   Overrides: gravity-theme.ui-datepicker defaults
   Font: Galano GrotesqueAlt (resolved by ReploQ font stack)
   Brand colours: teal #0D4747 · coral #FD5353
   ============================================================ */


/* ── Popup shell ─────────────────────────────────────────── */

.gravity-theme.ui-datepicker {
    font-family: 'Galano GrotesqueAlt', sans-serif !important;
    background: #ffffff !important;
    border: 1px solid var(--reploq-border-input) !important;
    border-radius: 5px !important;
    box-shadow: var(--reploq-shadow) !important;
    color: #1a1a2e !important;
    padding: 20px 18px 18px !important;
    max-width: 300px !important;
    width: auto !important;
    margin-top: 6px !important;
}


/* ── Header bar ──────────────────────────────────────────── */

.gravity-theme.ui-datepicker .ui-datepicker-header {
    background: transparent !important;
    border: 0 !important;
    padding: 0 !important;
    margin: 0 0 14px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    width: 100% !important;
}

/* Month + Year title (plain text when changeMonth/changeYear = false) */
.gravity-theme.ui-datepicker .ui-datepicker-title {
    font-size: 1rem !important;
    font-weight: 500 !important;
    color: #1a1a2e !important;
    letter-spacing: -0.01em !important;
    line-height: 1 !important;
}

/* Selects (changeMonth/changeYear = true) — strip chrome, look like plain text */
.gravity-theme.ui-datepicker .ui-datepicker-header select {
    -webkit-appearance: none !important;
    appearance: none !important;
    background: transparent !important;
    background-image: none !important;
    border: 0 !important;
    box-shadow: none !important;
    font-family: 'Galano GrotesqueAlt', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #1a1a2e !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 0 2px !important;
    cursor: pointer !important;
    width: auto !important;
}

.gravity-theme.ui-datepicker .ui-datepicker-header select:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Spacing between month and year selects */
.gravity-theme.ui-datepicker .ui-datepicker-header select.ui-datepicker-month {
    margin-right: 6px !important;
    text-align: left !important;
    -moz-text-align-last: left !important;
    text-align-last: left !important;
}


/* ── Prev / Next arrow buttons ───────────────────────────── */

.gravity-theme.ui-datepicker .ui-datepicker-header .ui-datepicker-prev,
.gravity-theme.ui-datepicker .ui-datepicker-header .ui-datepicker-next {
    background: #fafafa !important;
    border: 1px solid #e4e5e7 !important;
    border-radius: 5px !important;
    color: #555e6d !important;
    width: 28px !important;
    height: 28px !important;
    font-size: 18px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease !important;
}

.gravity-theme.ui-datepicker .ui-datepicker-header .ui-datepicker-prev:hover,
.gravity-theme.ui-datepicker .ui-datepicker-header .ui-datepicker-next:hover,
.gravity-theme.ui-datepicker .ui-datepicker-header .ui-datepicker-prev:focus,
.gravity-theme.ui-datepicker .ui-datepicker-header .ui-datepicker-next:focus {
    background: #0D4747 !important;
    border-color: #0D4747 !important;
    color: #ffffff !important;
}

/* Icon rendering */
.gravity-theme.ui-datepicker .ui-datepicker-header .ui-datepicker-prev::before,
.gravity-theme.ui-datepicker .ui-datepicker-header .ui-datepicker-next::before {
    border: 0 !important;
    height: auto !important;
    position: static !important;
    transform: none !important;
    width: auto !important;
}

.gravity-theme.ui-datepicker .ui-datepicker-header .ui-datepicker-prev::before { content: "\e910" !important; }
.gravity-theme.ui-datepicker .ui-datepicker-header .ui-datepicker-next::before { content: "\e91b" !important; }

.gravity-theme.ui-datepicker .ui-datepicker-header .ui-datepicker-prev { left: 0 !important; }
.gravity-theme.ui-datepicker .ui-datepicker-header .ui-datepicker-next { right: 0 !important; }

/* Hide the text span inside nav buttons (GF injects it) */
.gravity-theme.ui-datepicker .ui-datepicker-header .ui-datepicker-prev .ui-icon,
.gravity-theme.ui-datepicker .ui-datepicker-header .ui-datepicker-next .ui-icon {
    display: none !important;
}


/* ── Calendar table resets ───────────────────────────────── */

.gravity-theme.ui-datepicker table,
.gravity-theme.ui-datepicker td,
.gravity-theme.ui-datepicker th,
.gravity-theme.ui-datepicker thead,
.gravity-theme.ui-datepicker tr {
    background: transparent !important;
    border: 0 !important;
    margin: 0 !important;
}

.gravity-theme.ui-datepicker .ui-datepicker-calendar {
    table-layout: fixed !important;
    width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
}


/* ── Day-of-week header row ──────────────────────────────── */

.gravity-theme.ui-datepicker .ui-datepicker-calendar th {
    padding: 0 0 6px !important;
    text-shadow: none !important;
    text-transform: none !important;
}

.gravity-theme.ui-datepicker .ui-datepicker-calendar th span {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-family: 'Galano GrotesqueAlt', sans-serif !important;
    font-size: 11px !important;
    font-weight: 400 !important;
    color: #9ca3af !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
    height: 28px !important;
    width: 100% !important;
}


/* ── Date cells ──────────────────────────────────────────── */

.gravity-theme.ui-datepicker .ui-datepicker-calendar td {
    padding: 2px !important;
    height: 44px !important;
    width: 44px !important;
    text-shadow: none !important;
    text-transform: none !important;
}

/* The clickable date element */
.gravity-theme.ui-datepicker .ui-datepicker-calendar .ui-state-default {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 5px !important;
    border: 2px solid transparent !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #2d3748 !important;
    font-family: 'Galano GrotesqueAlt', sans-serif !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    text-decoration: none !important;
    margin: 0 auto !important;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease !important;
}

/* Hover on any normal date */
.gravity-theme.ui-datepicker .ui-datepicker-calendar .ui-state-default:hover,
.gravity-theme.ui-datepicker .ui-datepicker-calendar .ui-state-default:focus {
    background: #f0f9f9 !important;
    border-color: transparent !important;
    color: #0D4747 !important;
    outline: 0 !important;
}

/* Active / pressed */
.gravity-theme.ui-datepicker .ui-datepicker-calendar .ui-state-default:active {
    background: #d9eeee !important;
    border-color: transparent !important;
}


/* ── Selected date — teal fill + coral border ring ───────── */

.gravity-theme.ui-datepicker .ui-datepicker-calendar .ui-datepicker-current-day .ui-state-default {
    background: var(--rqprimary-3-d-3) !important;
    border-color: transparent !important;
    color: #ffffff !important;
    font-weight: 400 !important;
    box-shadow: none !important;
}

.gravity-theme.ui-datepicker .ui-datepicker-calendar .ui-datepicker-current-day .ui-state-default:hover,
.gravity-theme.ui-datepicker .ui-datepicker-calendar .ui-datepicker-current-day .ui-state-default:focus {
    background: #0D4747 !important;
    border-color: #FD5353 !important;
    color: #ffffff !important;
}


/* ── Today (when not yet selected) ──────────────────────── */

.gravity-theme.ui-datepicker .ui-datepicker-calendar .ui-datepicker-today:not(.ui-datepicker-current-day) .ui-state-default {
    border-color: #FD5353 !important;
    background: transparent !important;
    color: #0D4747 !important;
    font-weight: 500 !important;
}

.gravity-theme.ui-datepicker .ui-datepicker-calendar .ui-datepicker-today:not(.ui-datepicker-current-day) .ui-state-default:hover {
    background: #fff5f5 !important;
    border-color: #FD5353 !important;
    color: #0D4747 !important;
}


/* ── Out-of-month / disabled dates ──────────────────────── */

.gravity-theme.ui-datepicker .ui-datepicker-calendar .ui-state-disabled {
    background: transparent !important;
}

.gravity-theme.ui-datepicker .ui-datepicker-calendar .ui-state-disabled .ui-state-default {
    background: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
    color: #d1d5db !important;
    cursor: default !important;
    font-weight: 400 !important;
}

.gravity-theme.ui-datepicker .ui-datepicker-calendar .ui-state-disabled .ui-state-default:hover,
.gravity-theme.ui-datepicker .ui-datepicker-calendar .ui-state-disabled .ui-state-default:focus {
    background: transparent !important;
    border-color: transparent !important;
    color: #d1d5db !important;
}


/* ── Responsive — mobile ─────────────────────────────────── */

@media (max-width: 640px) {
    .gravity-theme.ui-datepicker {
        max-width: 288px !important;
        padding: 14px 12px 12px !important;
        border-radius: 5px !important;
    }

    .gravity-theme.ui-datepicker .ui-datepicker-header {
        margin-bottom: 10px !important;
    }

    .gravity-theme.ui-datepicker .ui-datepicker-calendar td {
        padding: 1px !important;
        height: 36px !important;
        width: 36px !important;
    }

    .gravity-theme.ui-datepicker .ui-datepicker-calendar .ui-state-default {
        width: 30px !important;
        height: 30px !important;
        font-size: 0.8125rem !important;
    }

    .gravity-theme.ui-datepicker .ui-datepicker-calendar th span {
        font-size: 0.625rem !important;
        height: 22px !important;
    }

    .gravity-theme.ui-datepicker .ui-datepicker-header .ui-datepicker-prev,
    .gravity-theme.ui-datepicker .ui-datepicker-header .ui-datepicker-next {
        width: 26px !important;
        height: 26px !important;
        font-size: 14px !important;
    }

    .gravity-theme.ui-datepicker .ui-datepicker-calendar .ui-state-disabled .ui-state-default {
        width: 30px !important;
        height: 30px !important;
    }
}


/* ── RTL support ─────────────────────────────────────────── */

html[dir="rtl"] #ui-datepicker-div.gform-theme-datepicker[style] {
    right: auto !important;
}