:root{
  --rac-orange:#ff4f00;
  --rac-green:#0aa56b;
  --rac-green-border: rgba(10,165,107,.45);
  --ink:#101a2a;
  --muted:#5d6a7c;
  --blue-title:#1e4a8a;
  --radius-xl:18px;
  --radius-md:14px;
}

body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background:#fff;
}

/* ===== Header ===== */
.rac-topbar{
  background: var(--rac-orange);
  height: 88px;
}
.rac-topbar-inner{
  height: 100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.rac-brand{
  color:#fff;
  font-weight:800;
  letter-spacing:.12em;
  font-size: 34px;
  line-height:1;
  text-transform: lowercase;
}
.rac-login{
  border:2px solid rgba(255,255,255,.85);
  color:#fff;
  background: transparent;
  font-weight:700;
  padding: 10px 18px;
  border-radius: 10px;
  transition:.25s ease;
}
.rac-login:hover{ background: rgba(255,255,255,.12); }
.rac-login.is-hidden{ opacity:0; pointer-events:none; transform: translateY(-6px); }

/* ===== HERO ===== */
.rac-hero{ position: relative; background:#fff; }
.rac-hero-img{
  height: 330px;
  overflow:hidden;
}
.rac-hero-img img{
  width:100%;
  height:100%;
  object-fit: cover;
  object-position: center;
  display:block;
}

/* overlay card */
.rac-hero-overlay-wrap{
  position: relative;
  margin-top: -86px;
  padding-bottom: 14px;
}
.rac-hero-card{
  background:#fff;
  border-radius: var(--radius-xl);
  padding: 26px 28px 22px;
  max-width: 920px;
  display: inline-block;
}
.rac-hero-title{
  margin:0;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--blue-title);
}
.rac-hero-sub{
  margin-top: 8px;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px;
  font-size: 22px;
  color:#2b3b52;
}
.rac-aviva{
  display:inline-flex;
  align-items:center;
  padding: 6px 12px;
  border-radius: 10px;
  background:#ffe66a;
  color:#0b1b2b;
  font-weight:600;
  letter-spacing:.06em;
}

/* ===== MAIN CONTENT ===== */
.rac-main{ padding: 24px 0 10px; }
.rac-form-wrap{
  max-width: 980px;
  margin: 0 auto;
  padding-top: 14px;
}
.rac-q{
  font-size: 30px;
  font-weight: 500;
  margin: 18px 0 14px;
}

/* tiles */
.rac-tile{
  border:2px solid var(--rac-green-border);
  border-radius: var(--radius-md);
  padding: 18px 18px;
  min-height: 84px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  font-weight: 700;
  color: #0a7f57;
  background:#fff;
  transition: .18s ease;
  cursor:pointer;
  user-select:none;
}
.rac-tile:hover{
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(10,165,107,.10);
}
.rac-tile.active{
  background: var(--rac-green);
  color:#fff;
  border-color: var(--rac-green);
  box-shadow: 0 10px 26px rgba(10,165,107,.22);
}
.rac-tile-sub{
  margin-top: 4px;
  font-weight: 600;
  opacity: .95;
}
.rac-badge{
  font-weight:700;
  font-size: 14px;
  color:#0a7f57;
}
.rac-tile.active .rac-badge{ color:#fff; }

/* icons */
.rac-star{
  width:18px; height:18px; display:inline-block;
  background: radial-gradient(circle at 30% 30%, #ffd76a 0%, #ffb300 55%, #e08a00 100%);
  clip-path: polygon(50% 0%, 62% 34%, 98% 38%, 71% 58%, 80% 92%, 50% 72%, 20% 92%, 29% 58%, 2% 38%, 38% 34%);
}
.rac-cal{
  width:18px;height:18px;border-radius:4px;
  background: linear-gradient(#e8f7f1, #c9eedf);
  border:1px solid rgba(10,165,107,.35);
  position:relative;
}
.rac-cal:before{
  content:""; position:absolute; left:0; right:0; top:0;
  height:5px; background: rgba(10,165,107,.35);
  border-top-left-radius:3px;border-top-right-radius:3px;
}

/* CTA */
.rac-cta{
  background: var(--rac-orange);
  border:none;
  border-radius: 12px;
  color:#fff;
  font-weight: 800;
  font-size: 20px;
  padding: 22px 18px;
  text-align: center;
  display: block;
  text-decoration: none;
 
}

.rac-arrow{
  width:16px;height:16px;border:2px solid #fff;border-left:none;border-bottom:none;
  transform: rotate(45deg);
  display:inline-block;
  margin-left: 12px;
  margin-top: 2px;
}
.rac-link{
  font-weight:700;
  color: var(--rac-green);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.rac-note{
  color:#6b7685;
  font-size: 14px;
  text-align:center;
  margin-top: 12px;
}

/* ===== Explain section ===== */
.rac-explain{
  padding: 52px 0 64px;
}
.rac-explain-title{
  font-size: 22px;
  font-weight: 800;
  color:#111827;
}
.rac-explain-sub{
  margin-top: 6px;
  color:#5a6676;
}

.rac-info{
  display:flex;
  gap:14px;
  align-items:flex-start;
}
.rac-info-ico{
  width:34px;
  height:34px;
  border-radius: 12px;
  background:#f4f6f9;
  border:1px solid #e7edf5;
  display:grid;
  place-items:center;
  flex: 0 0 auto;
  font-size: 18px;
}
.rac-info-h{
  font-weight: 800;
  margin-top: 2px;
}
.rac-info-p{
  margin-top: 4px;
  color:#5a6676;
  line-height: 1.45;
}

/* ===== Footer ===== */
.rac-footer{
  background:#15181c;
  color:#cfd6df;
  padding: 34px 0 36px;
}
.rac-foot-a{
  color:#cfd6df;
  text-decoration:none;
  font-weight: 600;
}
.rac-foot-a:hover{ text-decoration: underline; }
.rac-foot-sep{ color: rgba(207,214,223,.55); }
.rac-foot-text{
  font-size: 12px;
  color:#aeb6c1;
  line-height: 1.6;
  text-align: center;
  max-width: 1040px;
  margin: 0 auto;
}

/* ===== Responsive ===== */
@media (max-width: 992px){
  .rac-topbar{ height: 76px; }
  .rac-brand{ font-size: 30px; }

  .rac-hero-img{ height: 280px; }
  .rac-hero-overlay-wrap{ margin-top: -74px; }
  .rac-hero-title{ font-size: 46px; }
  .rac-hero-sub{ font-size: 18px; }

  .rac-q{ font-size: 24px; }
}

@media (max-width: 576px){
  .rac-hero-img{ height: 240px; }
  .rac-hero-title{ font-size: 36px; }
  .rac-hero-card{ padding: 18px 18px 16px; }
}


/* ================================
   STEP PAGE (Who's driving) ONLY
   Add this at END of your custom.css
================================ */

/* page background like screenshot */
.rac-page{
  background:
    radial-gradient(1200px 500px at 95% 55%, rgba(0,0,0,.06) 0%, rgba(0,0,0,0) 55%),
    #fff;
}

/* progress bar under header */
.rac-progress-wrap{ padding: 18px 0 10px; }
.rac-progress{
  height: 10px;
  background: #dfe6ea;
  border-radius: 999px;
  overflow:hidden;
  display:flex;
  gap: 3px;
}
.rac-progress-seg{
  flex: 1 1 0;
  background: #cfd8dc;
  opacity: .65;
}
.rac-progress-seg.is-done{
  background: #2f6b86;
  opacity: 1;
}
.rac-progress-seg:first-child{ border-top-left-radius:999px; border-bottom-left-radius:999px; }
.rac-progress-seg:last-child{ border-top-right-radius:999px; border-bottom-right-radius:999px; }

/* back link */
.rac-back{
  display:inline-flex;
  gap:10px;
  align-items:center;
  text-decoration:none;
  color: var(--rac-green);
  font-weight: 700;
  margin: 18px 0 10px;
  border: none;
}
.rac-back i{ font-size: 20px; }

/* step layout */
.rac-step{ padding: 6px 0 60px; }
.rac-step-inner{
  /* max-width: 920px; */
  margin: 0 auto;
  padding: 40px;
}

/* title */
.rac-step-head{  margin-bottom: 18px; }
.rac-step-title{
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color:#111827;
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin:0;
}
.rac-info-btn{
  border:none;
  background: transparent;
  color: var(--rac-green);
  padding: 2px 4px;
  transform: translateY(1px);
}
.rac-info-btn i{ font-size: 18px; }

/* form width + spacing */
.rac-form{
  max-width: 820px;
  margin: 0 auto;
  display:flex;
  flex-direction:column;
  gap: 18px;
}

/* input with left icon */
.rac-field{ position: relative; }
.rac-field-ico{
  position:absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color:#111;
  opacity:.85;
}

/* matches screenshot height/border */
.rac-control{
  height: 74px;
  border: 2px solid #bcbcbc;
  border-radius: 10px;
  padding-left: 56px;
  font-size: 18px;
  font-weight: 500;
  color:#111827;
}
.rac-control::placeholder{
  color:#111827;
  opacity:.85;
  font-weight: 500;
}
.rac-control:focus{
  border-color: #9aa7b0;
  box-shadow: none;
}

/* DOB segmented row */
.rac-dob .rac-field-ico{
  top: 24px;
  transform:none;
}
.rac-dob-wrap{
  width:100%;
  padding-left: 56px;
}
.rac-dob-label{
  font-size: 18px;
  font-weight: 500;
  color:#111827;
  margin-bottom: 10px;
}
.rac-dob-inputs{
  height: 74px;
  border: 2px solid #bcbcbc;
  border-radius: 10px;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:#fff;
}
.rac-dob-box{
  height: 100%;
  border:none !important;
  border-radius: 0 !important;
  box-shadow:none !important;
  text-align:center;
  font-size: 18px;
  font-weight: 600;
  color:#111827;
}
.rac-dob-box:focus{ outline:none; }
.rac-dob-sep{
  width: 1px;
  height: 36px;
  background: #cfcfcf;
}

/* Select dropdown with caret */
.rac-select .rac-control{ padding-right: 56px; }
.rac-select-control{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.rac-select-caret{
  position:absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color:#111;
  opacity:.8;
  pointer-events:none;
}

/* Find address outline button */
.rac-btn-outline{
  border: 2px solid var(--rac-green);
  color: var(--rac-green);
  background:#fff;
  border-radius: 10px;
  font-weight: 800;
  font-size: 18px;
  padding: 18px 14px;
}
.rac-btn-outline:hover{
  background: rgba(10,165,107,.06);
  color: var(--rac-green);
}

/* checkbox style */
.rac-check{
  display:flex;
  align-items:flex-start;
  gap: 14px;
  cursor:pointer;
  user-select:none;
  margin-top: 4px;
}
.rac-check input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}
.rac-check-box{
  width: 28px;
  height: 28px;
  border: 2px solid var(--rac-green);
  border-radius: 6px;
  flex: 0 0 auto;
  margin-top: 2px;
  background:#fff;
}
.rac-check-text{
  font-size: 16px;
  color:#111827;
  line-height: 1.4;
}
.rac-check input:checked + .rac-check-box{
  background: var(--rac-green);
  box-shadow: inset 0 0 0 4px #fff;
}

/* terms paragraph */
.rac-terms{
  font-size: 14px;
  color:#2e3a4a;
  line-height: 1.55;
  margin-top: 6px;
}
.rac-terms a{
  color:#111827;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Responsive (only step page tweaks) */
@media (max-width: 992px){
  .rac-step-title{ font-size: 32px; }
  .rac-control{ height: 68px; font-size: 16px; }
  .rac-dob-inputs{ height: 68px; }
}
@media (max-width: 576px){
  .rac-step-inner{ padding-top: 26px; }
  .rac-step-title{ font-size: 28px; }
  .rac-btn-outline{ padding: 16px 14px; }
}


/* ===== DOB (match screenshot exactly) ===== */

.rac-dob-line{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 22px;
  margin-bottom: 18px;
}

/* left label (no border) */
.rac-dob-label-left{
  display:flex;
  align-items:center;
  gap: 12px;
  color:#111827;
  font-size: 18px;
  font-weight: 500;
  min-width: 200px;
}
.rac-dob-label-left i{
  font-size: 18px;
  color:#111;
  opacity:.9;
}

/* right input box ONLY */
.rac-dob-boxwrap{
  flex: 1 1 auto;
  width: 100%;
  max-width: 600px;   /* inputs ko thora chota karega */
  min-width: 0;       /* overflow fix */

  height: 74px;
  border: 2px solid #bcbcbc;
  border-radius: 10px;

  display:flex;
  align-items:center;
  overflow:hidden;
  background:#fff;
}
/* inputs inside */
.rac-dob-in{
  flex: 1;
  min-width: 0;      /* important overflow fix */
  height: 100%;

  border: none;
  outline: none;

  text-align:center;
  font-size: 18px;
  font-weight: 500;
}

.rac-dob-in::placeholder{
  color:#111827;
  opacity:.45;              /* grey like screenshot */
  font-weight: 500;
  letter-spacing: .02em;
}

.rac-dob-v{
  width:1px;
  height:40px;
  background:#cfcfcf;
  flex-shrink:0;
}

/* focus border */
.rac-dob-boxwrap:focus-within{
  border-color:#9aa7b0;
}

/* responsive */
@media (max-width: 992px){
  .rac-dob-boxwrap{ height: 68px; }
  .rac-dob-label-left{ font-size: 16px; min-width: 170px; }
  .rac-dob-in{ font-size: 16px; }
}
@media (max-width: 576px){
  .rac-dob-line{
    justify-content:flex-start;
    gap: 12px;
  }
  .rac-dob-label-left{
    min-width: 140px;
    font-size: 15px;
  }
}

/* ================================
   Important details page (NEW)
   Safe: uses rac-imp-* only
================================ */
/* ================================
   Important details page (match existing pattern)
   Only adds new styles + validation helpers
================================ */

/* keep same page width as your existing step form */
.rac-imp-inner{
  padding-top: 36px; /* screenshot like spacing */
}

.rac-imp-head{
  max-width: 820px;      /* same as .rac-form width */
  margin: 0 auto 18px;
}
.rac-imp-title{
  font-size: 38px;
  font-weight: 500;
  margin: 0;
  color:#111827;
}
.rac-imp-sub{
  margin: 10px 0 0;
  color:#5a6676;
  font-size: 18px;
}

/* section headings */
.rac-imp-h2{
  font-size: 34px;
  font-weight: 500;
  color:#111827;
  margin: 6px 0 -2px; /* tighter like screenshot */
}

/* licence row (title left, image right) */
.rac-imp-lic-row{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 16px;
  margin-top: 8px;
}
.rac-imp-info{
  border:none;
  background:transparent;
  color: var(--rac-green);
  padding: 0 4px;
  transform: translateY(-1px);
}
.rac-imp-info i{ font-size: 18px; }

.rac-imp-lic-img{
  width: 155px;
  flex: 0 0 auto;
  transform: translateY(-6px);
}
.rac-imp-lic-img img{
  width:100%;
  height:auto;
  border-radius: 10px;
  box-shadow: 0 10px 26px rgba(0,0,0,.12);
}

/* required label (hidden by default; shows only on validation) */
.rac-required{
  position:absolute;
  right: 10px;
  bottom: -22px;
  font-size: 14px;
  color:#e11d48;
  display:none;
}

/* Validation state: apply .is-invalid on input */
.rac-control.is-invalid{
  border-color: #ff0000 !important;
}
.rac-control.is-invalid ~ .rac-required{
  display:block;
}

/* bottom note */
.rac-imp-note{
  text-align:center;
  margin-top: 14px;
  font-size: 16px;
  color:#5a6676;
}

/* responsive */
@media (max-width: 992px){
  .rac-imp-title{ font-size: 32px; }
  .rac-imp-h2{ font-size: 28px; }
  .rac-imp-sub{ font-size: 16px; }
}

/* ================================
   Vehicle search result card
================================ */

.rac-vehicle-result{
  margin-top: 18px;
  padding: 28px 30px;

  background: linear-gradient(90deg,#3c3c3c,#4b4b4b);
  border-radius: 14px;

  color:#fff;
}

.rac-vehicle-plate{
  display:inline-block;

  background: rgba(255,255,255,.12);
  border-radius: 8px;

  padding: 6px 12px;
  font-weight: 600;
  font-size: 16px;

  margin-bottom: 12px;
}

.rac-vehicle-desc{
  font-size: 22px;
  line-height: 1.4;
  font-weight: 500;
}


/* ================================
   Quote + Extras page (NEW)
   Safe: only rac-quote-* classes
================================ */

.rac-quote-wrap{ padding-top: 28px; }

/* Left headings spacing */
.rac-quote-h{ margin-bottom: 18px; }

/* Options (like radio cards) */
.rac-quote-opt{
  width: 100%;
  text-align:left;
  display:flex;
  align-items:center;
  gap: 16px;

  border: 2px solid var(--rac-green-border);
  border-radius: var(--radius-md);
  background:#fff;

  padding: 18px 18px;
  min-height: 74px;
  font-weight: 700;
  color:#111827;
}
.rac-quote-opt.is-active{
  background: #1f986e;     /* green selected */
  border-color:#1f986e;
  color:#fff;
}
.rac-quote-opt-text{ font-size: 18px; }

/* radio circle */
.rac-quote-radio{
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border:2px solid #1f986e;
  display:grid;
  place-items:center;
  flex: 0 0 auto;
  background:#fff;
  color:#1f986e;
}
.rac-quote-radio i{ font-size: 16px; display:none; }
.rac-quote-radio.is-on{
  background:#fff;
}
.rac-quote-opt.is-active .rac-quote-radio{
  border-color:#fff;
  color:#1f986e;
}
.rac-quote-radio.is-on i{ display:block; }

/* Exact time section */
.rac-quote-exact-label{
  display:flex;
  align-items:center;
  gap: 12px;
  font-size: 18px;
  font-weight: 500;
  color:#111827;
  margin-bottom: 12px;
}
.rac-quote-date-row{
  display:flex;
  gap: 18px;
  align-items:center;
}
.rac-quote-datebox{
  flex: 1 1 auto;
  height: 74px;
  border: 2px solid #bcbcbc;
  border-radius: 10px;
  display:flex;
  align-items:center;
  justify-content:space-around;
  color:#7b8794;
  font-weight: 600;
}
.rac-quote-v{
  width:1px; height: 36px; background:#cfcfcf;
  display:inline-block;
}
.rac-quote-pick{
  height: 74px;
  min-width: 190px;
  border-radius: 10px;
  border: 2px solid var(--rac-green);
  background:#fff;
  color: var(--rac-green);
  font-weight: 800;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
}

/* Extras pills */
.rac-quote-pill{
  width:100%;
  border:none;
  border-radius: 999px;
  background: #eaf7f2;
  padding: 18px 22px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  color: #0a7f57;
  font-weight: 800;
}
.rac-quote-pill-left{ font-size: 20px; font-weight: 600; }
.rac-quote-pill-right{
  font-size: 18px;
  display:flex;
  align-items:center;
  gap: 10px;
}
.rac-quote-pill-right i{ font-size: 18px; opacity:.9; }

/* Right quote column */
.rac-quote-right-title{
  font-size: 30px;
  font-weight: 500;
  margin: 0 0 14px;
  color:#111827;
}

.rac-quote-card{
  background: #3d3d3d;
  border-radius: 14px;
  padding: 34px 26px;
  color:#fff;
  text-align:center;
}

.rac-quote-card-top{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  color: rgba(255,255,255,.78);
  font-weight: 600;
  margin-bottom: 18px;
}
.rac-quote-aviva{
  display:inline-block;
  background:#ffe66a;
  color:#0b1b2b;
  font-weight: 800;
  border-radius: 6px;
  padding: 2px 8px;
  margin: 0 6px;
}

.rac-quote-price{
  font-size: 64px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
}
.rac-quote-pound{ font-size: 64px; }
.rac-quote-dec{ font-size: 26px; vertical-align: super; opacity:.95; }

.rac-quote-duration{
  margin-top: 6px;
  font-size: 22px;
  opacity:.95;
}

.rac-quote-small{
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255,255,255,.65);
  line-height: 1.55;
}

.rac-quote-linkbtn{
  margin-top: 14px;
  background: transparent;
  border: none;
  color: rgba(255,255,255,.9);
  font-weight: 700;
  display:inline-flex;
  gap: 10px;
  align-items:center;
}
.rac-quote-linkbtn i{ opacity:.85; }

.rac-quote-change{
  margin-top: 18px;
  width: 100%;
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,.6);
  background: transparent;
  color:#fff;
  font-weight: 800;
  padding: 14px 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 12px;
}
.rac-quote-change i{ font-size: 18px; }

/* Responsive */
@media (max-width: 992px){
  .rac-quote-right-title{ font-size: 26px; }
  .rac-quote-price{ font-size: 56px; }
  .rac-quote-pound{ font-size: 56px; }
}
@media (max-width: 576px){
  .rac-quote-date-row{ flex-direction: column; align-items: stretch; }
  .rac-quote-pick{ width: 100%; min-width: 0; }
}

/* Date input fields */

.rac-date-input{
  width: 100%;
  border: none;
  outline: none;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color:#111827;
  background: transparent;
}

.rac-date-input::placeholder{
  color:#7b8794;
  font-weight:500;
}

.rac-quote-datebox{
  flex: 1;
  height: 74px;
  border: 2px solid #bcbcbc;
  border-radius: 10px;

  display:grid;
  grid-template-columns: 1fr auto 1fr auto 1.5fr;
  align-items:center;
  text-align:center;
  padding:0 10px;
}

.rac-quote-v{
  width:1px;
  height:36px;
  background:#d3d3d3;
  display:block;
}


/* ================================
   Acceptance statements page (NEW)
   Safe: only rac-acc-* classes
================================ */

.rac-acc-wrap{
  padding-top: 26px;
  padding-bottom: 46px;
  max-width: 980px;
  margin: 0 auto;
}

.rac-acc-title{
  font-size: 34px;
  font-weight: 500;
  margin: 34px 0 18px;
}

.rac-acc-card{
  background: #e9e9e9;
  border-radius: 10px;
  padding: 26px 28px;
  margin: 26px auto;
  max-width: 820px;
}

.rac-acc-card--intro{
  background:#f3f3f3;
  margin-top: 10px;
  font-size: 18px;
  color:#2b2f36;
}

.rac-acc-h{
  font-size: 34px;
  font-weight: 500;
  margin: 0 0 14px;
  color:#111827;
}

.rac-acc-list{
  margin: 0;
  padding-left: 26px;
}

.rac-acc-list li{
  font-size: 18px;
  line-height: 1.8;
  margin: 10px 0;
  color:#2b2f36;
}

.rac-acc-bottom{
  max-width: 820px;
  margin: 16px auto 18px;
  font-size: 18px;
  color:#2b2f36;
}

.rac-acc-link{
  color:#111;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.rac-acc-cta{
  max-width: 820px;
  margin: 0 auto;
}

/* responsive */
@media (max-width: 992px){
  .rac-acc-title{ font-size: 30px; }
  .rac-acc-h{ font-size: 30px; }
  .rac-acc-list li{ font-size: 16px; }
  .rac-acc-bottom{ font-size: 16px; }
}
@media (max-width: 576px){
  .rac-acc-card{ padding: 20px 18px; }
  .rac-acc-h{ font-size: 26px; }
}

/* =========================================
   Reusable cards + Review page (NEW)
   Safe: only rac-card*, rac-review*
========================================= */

.rac-review-wrap{
  padding-top: 26px;
  padding-bottom: 56px;
  max-width: 980px;
  margin: 0 auto;
}

.rac-review-title{
  font-size: 34px;
  font-weight: 500;
  margin: 34px 0 18px;
}

/* generic card (reuse on multiple pages) */
.rac-card{
  border-radius: 10px;
  padding: 26px 28px;
  margin: 26px auto;
  max-width: 820px;
}
.rac-card--light{ background:#f3f3f3; }
.rac-card--mid{ background:#e9e9e9; }

.rac-card-h{
  font-size: 32px;
  font-weight: 500;
  color:#111827;
}

/* edit link */
.rac-edit{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:#111;
  text-decoration:none;
  font-weight:600;
  margin-top: 6px;
}
.rac-edit i{ font-size: 18px; }
.rac-edit:hover{ text-decoration: underline; }

/* small plate pill */
.rac-pill{
  display:inline-flex;
  align-items:center;
  padding: 6px 10px;
  border-radius: 8px;
  background:#dcdcdc;
  font-weight:700;
  font-size: 12px;
  letter-spacing:.04em;
  color:#111;
}

/* values */
.rac-value{
  font-size: 22px;
  color:#111827;
}

.rac-review-price{
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color:#111;
  white-space: nowrap;
}

/* key-value rows (icon + label + value) */
.rac-kv-row{
  display:flex;
  align-items:flex-start;
  gap:14px;
}
.rac-kv-row i{
  font-size: 18px;
  color:#7a7a7a;
  width: 22px;
  margin-top: 2px;
}
.rac-kv-k{
  font-size: 14px;
  color:#7a7a7a;
  margin-bottom: 2px;
}
.rac-kv-v{
  font-size: 22px;
  color:#111827;
}

/* docs list */
.rac-docs{
  list-style:none;
  padding:0;
  margin:0;
}
.rac-docs li{
  display:flex;
  align-items:center;
  gap:14px;
  padding: 8px 0;
}
.rac-docs i{
  color:#111;
  font-size: 18px;
}
.rac-docs a{
  color:#111;
  text-decoration:none;
  font-size: 18px;
}
.rac-docs a:hover{ text-decoration: underline; }

/* price breakdown button */
.rac-review-small{
  font-size: 16px;
  color:#2b2f36;
  max-width: 520px;
}
.rac-pricebreak{
  display:inline-flex;
  align-items:center;
  gap:10px;
  border:0;
  background:transparent;
  padding:0;
  font-weight:600;
  color:#111;
}
.rac-pricebreak i{ font-size: 18px; color:#111; }
.rac-pricebreak:hover{ text-decoration: underline; }

/* CTA spacing */
.rac-review-cta{
  max-width: 820px;
  margin: 20px auto 0;
}

/* responsive */
@media (max-width: 992px){
  .rac-card-h{ font-size: 28px; }
  .rac-review-price{ font-size: 34px; }
  .rac-kv-v{ font-size: 18px; }
  .rac-value{ font-size: 18px; }
}
@media (max-width: 576px){
  .rac-card{ padding: 20px 18px; }
  .rac-review-price{ font-size: 30px; }
}

/* =========================
   Payment page (scoped)
   Will NOT affect header/progress/footer
========================= */
.rac-pay-page .rac-pay-wrap{
  max-width: 720px;
  margin: 0 auto;
}

.rac-pay-page .rac-pay-h1{
  margin-top: 8px;
}

.rac-pay-page .rac-pay-info{
  margin-top: 14px;
  background:#f3f4f6;
  border-radius: 12px;
  padding: 18px 20px;
  color:#374151;
  font-size: 15px;
  line-height: 1.6;
}

/* dark price card */
.rac-pay-page .rac-pay-total{
  margin-top: 18px;
  background:#3c3d3f;
  border-radius: 12px;
  padding: 22px 22px;
  color:#fff;
}

.rac-pay-page .rac-pay-total-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
}

.rac-pay-page .rac-pay-total-title{
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.rac-pay-page .rac-pay-total-amount{
  font-size: 30px;
  font-weight: 600;
}

.rac-pay-page .rac-pay-total-sub{
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255,255,255,.88);
  max-width: 560px;
}

.rac-pay-page .rac-pay-break{
  margin-top: 10px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:#fff;
  text-decoration:none;
  font-weight: 600;
  font-size: 13px;
}
.rac-pay-page .rac-pay-break:hover{ text-decoration: underline; }

/* sections */
.rac-pay-page .rac-pay-sec{
  margin-top: 22px;
}

.rac-pay-page .rac-pay-sec-label{
  display:flex;
  align-items:center;
  gap:10px;
  font-size: 14px;
  font-weight: 600;
  color:#111827;
  margin-bottom: 10px;
}

.rac-pay-page .rac-pay-sec-h2{
  font-size: 22px;
  font-weight: 500;
  color:#111827;
}

/* inputs */
.rac-pay-page .rac-pay-input{
  height: 56px;
  border:1px solid rgba(16,26,42,.35);
  border-radius: 12px;
  font-size: 15px;
  padding: 0 16px;
}
.rac-pay-page .rac-pay-input::placeholder{ color:#6b7280; }

/* input with icon */
.rac-pay-page .rac-pay-field{ position: relative; }
.rac-pay-page .rac-pay-ico{
  position:absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color:#111827;
}
.rac-pay-page .rac-pay-input-ico{
  padding-left: 48px;
}

/* outline button */
.rac-pay-page .rac-pay-btn-outline{
  height:56px;
  border-radius: 12px;
  border:2px solid var(--rac-green-border);
  color: var(--rac-green);
  background:#fff;
  font-weight: 700;
}
.rac-pay-page .rac-pay-btn-outline:hover{
  background: rgba(10,165,107,.06);
}

/* MM/YY small */
.rac-pay-page .rac-pay-mini{
  text-align:center;
}


/* ===== Change Duration (new only - no override) ===== */
.rac-dur-top{
  background:#2c2c2c;
  color:#fff;
  padding: 22px 0 26px;
}
.rac-dur-topcard{
  text-align:center;
}
.rac-dur-topline{
  font-size: 18px;
  opacity: .78;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:6px;
}
.rac-dur-aviva{
  display:inline-flex;
  align-items:center;
  padding: 5px 10px;
  border-radius: 8px;
  background:#ffe66a;
  color:#0b1b2b;
  font-weight:700;
  letter-spacing:.06em;
}
.rac-dur-price{
  font-size: 64px;
  line-height: 1.05;
  font-weight: 500;
  margin-top: 12px;
}
.rac-dur-dec{
  font-size: 28px;
  /* vertical-align: sub; */
  margin-left: 2px;
}
.rac-dur-for{
  font-size: 22px;
  opacity: .9;
  margin-top: 6px;
}

.rac-dur-main{
  background:#fff;
  padding: 26px 0 70px;
}
.rac-dur-wrap{
  max-width: 820px;
  margin: 0 auto;
  padding-top: 16px;
}
.rac-dur-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 10px;
}

/* Reuse .rac-tile; just make it look like screenshot */
.rac-dur-tile{
  min-height: 72px;
  justify-content:flex-start;
  padding: 18px 20px;
  font-size: 20px;
}
.rac-dur-txt{
  width:100%;
  text-align:left;
}
.rac-dur-rate{
  font-weight: 700;
  font-size: 14px;
  color: rgba(10,127,87,.65);
}
.rac-dur-tile.active .rac-dur-rate{
  color: rgba(255,255,255,.85);
}

.rac-dur-more{
  margin-top: 26px;
}
.rac-dur-more-q{
  color:#111827;
  font-size: 14px;
}
.rac-dur-more-link{
  display:inline-block;
  margin-top: 6px;
  font-weight: 800;
  color:#111;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.rac-dur-hint{
  margin-top: 42px;
  color:#8a94a3;
  font-size: 16px;
  line-height: 1.6;
}
.rac-dur-actions{
  margin-top: 28px;
}
.rac-dur-cancel{
  display:block;
  margin-top: 18px;
  text-align:center;
  color:#111;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Responsive */
@media (max-width: 992px){
  .rac-dur-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 576px){
  .rac-dur-grid{ grid-template-columns: 1fr; }
  .rac-dur-price{ font-size: 54px; }
}


/* ===== Login page (NEW ONLY - no override) ===== */
.rac-auth{
  padding: 46px 0 70px;
}
.rac-auth-title{
  text-align:center;
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 28px 0 36px;
  color: #111827;
}

.rac-auth-panel{
  max-width: 660px;
  margin: 0 auto;
  background: #e9e9e9;
  border-radius: 10px;
  padding: 56px 74px 62px;
}

.rac-auth-form{
  max-width: 620px;
  margin: 0 auto;
}

.rac-auth-group{
  margin-bottom: 26px;
}
.rac-auth-label{
  display:flex;
  align-items:center;
  gap: 12px;
  font-size: 22px;
  font-weight: 500;
  color:#2b2f36;
  margin-bottom: 12px;
}
.rac-auth-label i{
  font-size: 22px;
  color:#2b2f36;
}

.rac-auth-input{
  height: 78px;
  border-radius: 10px;
  border: 2px solid rgba(0,0,0,.35);
  background: #ededed;
  font-size: 22px;
  padding: 18px 18px;
}
.rac-auth-input:focus{
  box-shadow: none;
  border-color: rgba(0,0,0,.55);
  background: #f0f0f0;
}

.rac-auth-passwrap{
  position: relative;
}
.rac-auth-eye{
  position:absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: rgba(0,0,0,.55);
  display:grid;
  place-items:center;
}
.rac-auth-eye i{ font-size: 20px; }

.rac-auth-forgot{
  text-align:center;
  margin: 22px 0 34px;
  color:#2b2f36;
  font-size: 16px;
}
.rac-auth-remind{
  color: var(--rac-orange);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.rac-auth-btn{
  width:100%;
  border-radius: 12px;
  height: 82px;
  font-size: 22px;
  font-weight: 700;
  border: 0;
  display:flex;
  align-items:center;
  justify-content:center;
}
.rac-auth-btn-primary{
  background: var(--rac-orange);
  color:#fff;
  margin-bottom: 18px;
}
.rac-auth-btn-primary:hover{ filter: brightness(.98); }

.rac-auth-btn-outline{
  background: transparent;
  border: 2px solid var(--rac-green);
  color: var(--rac-green);
}
.rac-auth-btn-outline:hover{
  background: rgba(10,165,107,.08);
}

@media (max-width: 992px){
  .rac-auth-title{ font-size: 32px; }
  .rac-auth-panel{ padding: 44px 30px 50px; }
  .rac-auth-input{ height: 70px; font-size: 20px; }
}
@media (max-width: 576px){
  .rac-auth-title{ font-size: 32px; margin-bottom: 24px; }
  .rac-auth-panel{ padding: 34px 18px 40px; }
  .rac-auth-label{ font-size: 18px; }
  .rac-auth-input{ height: 62px; font-size: 18px; }
  .rac-auth-btn{ height: 72px; font-size: 20px; }
}

/* custom duration dropdown panel */
.rac-custom-duration{
  max-width: 1080px;
  /* margin: 18px auto 0; */
  background: #f3f3f3;
  /* border-radius: 12px; */
  padding: 18px 12px 12px;
}

/* select wrapper */
.rac-cd-select{
  position: relative;
}

.rac-cd-trigger{
  width: 100%;
  min-height: 86px;
  border: 2px solid rgba(0,0,0,.28);
  border-radius: 14px;
  /* background: #fff; */
  padding: 14px 48px 14px 24px;
  text-align: left;
  position: relative;
}

.rac-cd-label{
  display: block;
  font-size: 14px;
  color: #444;
  margin-bottom: 4px;
}

.rac-cd-value{
  display: block;
  font-size: 22px;
  font-weight: 500;
  color: #111827;
}

.rac-cd-arrow{
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: #111827;
  transition: transform .2s ease;
}

.rac-cd-select.open .rac-cd-arrow{
  transform: translateY(-50%) rotate(180deg);
}

/* dropdown menu */
.rac-cd-menu{
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 6px 24px rgba(0,0,0,.12);
  border: 1px solid rgba(0,0,0,.08);
  max-height: 430px;
  overflow-y: auto;
  z-index: 50;
  display: none;
}

.rac-cd-select.open .rac-cd-menu{
  display: block;
}

.rac-cd-option{
  width: 100%;
  border: 0;
  background: #fff;
  text-align: left;
  padding: 22px 30px;
  font-size: 18px;
  color: #111827;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.rac-cd-option:last-child{
  border-bottom: 0;
}

.rac-cd-option:hover,
.rac-cd-option.active{
  background: #fafafa;
  color: #0a7f57;
}

/* mobile */
@media (max-width: 576px){
  .rac-cd-trigger{
    min-height: 76px;
    padding: 12px 44px 12px 18px;
  }
  .rac-cd-value{
    font-size: 20px;
  }
  .rac-cd-option{
    padding: 18px 20px;
    font-size: 16px;
  }
}

/* =========================
   Retrieve information page
   Scoped only - no override
========================= */
.rac-retrieve-page{
  padding: 54px 0 0;
}

.rac-retrieve-wrap{
  max-width: 900px;
  margin: 0 auto;
}

.rac-retrieve-title{
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.rac-retrieve-card{
  max-width: 600px;
  margin: 0 auto;
  background: #e9e9e9;
  border-radius: 10px;
  padding: 30px 32px 30px;
}

.rac-retrieve-intro{
  font-size: 16px;
  line-height: 1.5;
  color: #334155;
  margin-bottom: 24px;
}

.rac-retrieve-group{
  margin-bottom: 22px;
}

.rac-retrieve-label{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #334155;
  margin-bottom: 10px;
}

.rac-retrieve-label i{
  font-size: 18px;
  color: #374151;
}

.rac-retrieve-input{
  height: 48px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
  font-size: 16px;
  color: #111827;
  padding: 12px 14px;
}

.rac-retrieve-input:focus{
  box-shadow: none;
  outline: none;
  background: #fff;
}

.rac-retrieve-dob{
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 0;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.rac-retrieve-dob-input{
  height: 48px;
  border: 0;
  border-right: 1px solid #d7dde5;
  border-radius: 0;
  text-align: center;
  box-shadow: none;
  font-size: 16px;
  color: #111827;
}

.rac-retrieve-dob-input:last-child{
  border-right: 0;
}

.rac-retrieve-dob-input:focus{
  box-shadow: none;
  outline: none;
}

.rac-retrieve-btn{
  margin-top: 4px;
  min-height: 48px;
  font-size: 16px;
  font-weight: 700;
}

@media (max-width: 576px){
  .rac-retrieve-page{
    padding-top: 34px;
  }

  .rac-retrieve-title{
    font-size: 34px;
    margin-bottom: 22px;
  }

  .rac-retrieve-card{
    padding: 22px 18px 24px;
  }
}

/* =========================
   Signup page
   Scoped only - no override
========================= */
.rac-signup-page{
  padding: 54px 0 70px;
}

.rac-signup-wrap{
  max-width: 920px;
  margin: 0 auto;
}

.rac-signup-title{
  text-align:center;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 34px;
  color:#111827;
}

.rac-signup-panel{
  max-width: 660px;
  margin: 0 auto;
  background:#e9e9e9;
  border-radius: 10px;
  padding: 34px 38px 40px;
}

.rac-signup-form{
  width:100%;
}

.rac-signup-group{
  margin-bottom: 26px;
}

.rac-signup-label{
  display:flex;
  align-items:center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  color:#111827;
  margin-bottom: 10px;
}

.rac-signup-label i{
  font-size: 16px;
  color:#111827;
}

.rac-signup-input{
  height: 58px;
  border:1px solid rgba(0,0,0,.25);
  border-radius: 8px;
  background:#f5f5f5;
  font-size: 16px;
  color:#111827;
  padding: 14px 16px;
  box-shadow:none;
}

.rac-signup-input:focus{
  box-shadow:none;
  border-color: rgba(0,0,0,.45);
  background:#fff;
}

.rac-signup-passwrap{
  position:relative;
}

.rac-signup-eye{
  position:absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border:0;
  background:transparent;
  color: var(--rac-green);
  display:grid;
  place-items:center;
}

.rac-signup-eye i{
  font-size: 16px;
}

.rac-signup-rules{
  list-style:none;
  padding:0;
  margin: 8px 0 26px;
}

.rac-signup-rules li{
  display:flex;
  align-items:center;
  gap: 10px;
  font-size: 14px;
  color:#111827;
  margin-bottom: 8px;
}

.rac-signup-rules i{
  font-size: 12px;
  color:#8b8b8b;
}

.rac-signup-captcha{
  width: 270px;
  max-width: 100%;
  margin: 12px auto 28px;
  background:#fff;
  border:1px solid #d7d7d7;
  border-radius: 2px;
  min-height: 78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 14px 12px;
}

.rac-signup-captcha-check{
  width: 24px;
  height: 24px;
  border:1px solid #666;
  background:#fff;
  flex: 0 0 auto;
}

.rac-signup-captcha-text{
  font-size: 14px;
  color:#222;
  flex:1;
}

.rac-signup-captcha-brand{
  text-align:center;
  min-width: 52px;
}

.rac-signup-captcha-logo{
  font-size: 22px;
  line-height: 1;
  color:#3b82f6;
  margin-bottom: 2px;
}

.rac-signup-captcha-meta{
  font-size: 10px;
  color:#666;
  line-height: 1.2;
}
.rac-signup-captcha-meta span{
  font-size: 9px;
}

.rac-signup-consent{
  text-align:center;
  font-size: 13px;
  line-height: 1.55;
  color:#111827;
  margin: 0 0 24px;
}

.rac-signup-consent a{
  color: var(--rac-orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rac-signup-btn{
  width:100%;
  min-height: 58px;
  border-radius: 10px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 16px;
  font-weight: 700;
  border:0;
}

.rac-signup-btn-primary{
  background:#f0b092; /* pale orange like screenshot */
  color:#fff;
  margin-bottom: 18px;
}

.rac-signup-btn-outline{
  border:2px solid var(--rac-green);
  color: var(--rac-green);
  background: transparent;
}

@media (max-width: 576px){
  .rac-signup-page{
    padding-top: 34px;
  }

  .rac-signup-title{
    font-size: 34px;
    margin-bottom: 24px;
  }

  .rac-signup-panel{
    padding: 24px 18px 28px;
  }

  .rac-signup-captcha{
    width: 100%;
  }
}




/* ================================
   Occupation searchable dropdown
   RAC style
================================ */

.rac-occupation-wrap{
  position: relative;
}

.rac-occupation-dropdown{
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border: 2px solid #bcbcbc;
  border-radius: 10px;
  max-height: 320px;
  overflow-y: auto;
  z-index: 9999;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.rac-occupation-item{
  padding: 18px 18px 18px 56px;
  font-size: 18px;
  font-weight: 500;
  color:#111827;
  border-bottom: 1px solid #efefef;
  cursor: pointer;
  background:#fff;
  transition: background .15s ease;
}

.rac-occupation-item:last-child{
  border-bottom: 0;
}

.rac-occupation-item:hover{
  background: #f7f7f7;
}

.rac-occupation-item.is-empty{
  color:#6b7280;
  cursor: default;
}

.rac-occupation-dropdown.d-none{
  display:none !important;
}

/* scrollbar */
.rac-occupation-dropdown::-webkit-scrollbar{
  width: 10px;
}
.rac-occupation-dropdown::-webkit-scrollbar-track{
  background: #f1f1f1;
  border-radius: 10px;
}
.rac-occupation-dropdown::-webkit-scrollbar-thumb{
  background: #bdbdbd;
  border-radius: 10px;
}
.rac-occupation-dropdown::-webkit-scrollbar-thumb:hover{
  background: #9f9f9f;
}

/* mobile */
@media (max-width: 576px){
  .rac-occupation-item{
    font-size: 16px;
    padding: 16px 16px 16px 52px;
  }

  .rac-occupation-dropdown{
    max-height: 260px;
  }
}

/* ================================
   Insurance purpose custom dropdown
================================ */

.rac-purpose-wrap{
  position: relative;
}

.rac-purpose-wrap .rac-control{
  padding-right: 56px;
  cursor: pointer;
  background: #fff;
}

.rac-purpose-toggle{
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: #111827;
  opacity: .8;
  z-index: 3;
}

.rac-purpose-toggle i{
  font-size: 18px;
}

.rac-purpose-dropdown{
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border: 2px solid #bcbcbc;
  border-radius: 10px;
  max-height: 320px;
  overflow-y: auto;
  z-index: 9999;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.rac-purpose-item{
  padding: 18px 18px 18px 56px;
  font-size: 18px;
  font-weight: 500;
  color:#111827;
  border-bottom: 1px solid #efefef;
  cursor: pointer;
  background:#fff;
  transition: background .15s ease;
  line-height: 1.45;
}

.rac-purpose-item:last-child{
  border-bottom: 0;
}

.rac-purpose-item:hover{
  background: #f7f7f7;
}

.rac-purpose-item.is-active{
  background: #eef8f4;
  color: var(--rac-green);
}

.rac-purpose-dropdown.d-none{
  display:none !important;
}

.rac-purpose-dropdown::-webkit-scrollbar{
  width: 10px;
}
.rac-purpose-dropdown::-webkit-scrollbar-track{
  background: #f1f1f1;
  border-radius: 10px;
}
.rac-purpose-dropdown::-webkit-scrollbar-thumb{
  background: #bdbdbd;
  border-radius: 10px;
}
.rac-purpose-dropdown::-webkit-scrollbar-thumb:hover{
  background: #9f9f9f;
}

@media (max-width: 576px){
  .rac-purpose-item{
    font-size: 16px;
    padding: 16px 16px 16px 52px;
  }

  .rac-purpose-dropdown{
    max-height: 260px;
  }
}