/* ================================================================
   subscription-register.css
   CostMasters – Subscription / Register Page
   Pixel-perfect match to subs.html design | Fully Responsive
   Place this file at: assets/vendor/css/subscription-register.css
   ================================================================ */

/* ================================================================
   1. GLOBAL BODY & BACKGROUND  (dark navy – matches subs.html)
   ================================================================ */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
  background-color: #0a0a1a;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 15% 25%, rgba(79, 159, 255, 0.12), transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(26, 95, 186, 0.08), transparent 40%),
    linear-gradient(135deg, #0a0a1a 0%, #0d0d26 50%, #14143d 100%);
  z-index: -1;
}

/* ================================================================
   2. SUBSCRIPTION HEADER SECTION  (white bg)
   ================================================================ */
.subscription-section {
  background: #ffffff;
  padding: 100px 0;
}

.subscription-section h2 {
  color: #0d1b3e;
  font-weight: 700;
  line-height: 1.3;
  font-size: clamp(24px, 3.5vw, 40px);
}

.subscription-highlight {
  color: #4F9FFF;
  font-style: italic;
}

.subscription-highlightt {
  color: #064695;
  font-style: italic;
}

/* ================================================================
   3. THIN FORM CONTAINER  — white card wrapping the form
   ================================================================ */
.thin-form-container {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 25px 30px;
}

/* ================================================================
   4. GLASS INPUT  — pill-shaped, light grey bg inside white card
      Used on: first_name, last_name, email, mobile, organization,
               service select, and view-plans button row
   ================================================================ */
.glass-input {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  color: #333333;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13.5px;
  width: 100%;
  height: 42px;
  outline: none;
  display: block;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  /* override any CI3 theme that may force styles */
  -webkit-appearance: none;
  -moz-appearance: none;
}

.glass-input::placeholder {
  color: #999999;
}

.glass-input:focus {
  border-color: #4F9FFF;
  box-shadow: 0 0 0 3px rgba(79, 159, 255, 0.15);
  background: #f8f9fa;
  color: #333333;
}

/* Select element gets same pill look */
select.glass-input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 36px;
  cursor: pointer;
  /* Remove CI3 theme override */
  height: 42px !important;
  line-height: normal !important;
}

/* Labels above inputs (for PHP version which needs labels) */
.sub-label {
  font-size: 12px;
  font-weight: 600;
  color: #555;
  margin-bottom: 5px;
  display: block;
  position: relative;
}

/* Required asterisk */
.sub-required {
  color: red;
  font-size: 13px;
  margin-left: 2px;
}

/* Validation error messages */
span.sub-error {
  color: red;
  font-size: 12px;
  display: block;
  margin-top: 4px;
  min-height: 16px;
}

/* Existing CI3 error span kept working */
span.error {
  color: red;
  font-size: 12px;
  display: block;
  margin-top: 4px;
  min-height: 16px;
}

/* ================================================================
   5. GRADIENT BUTTON  — exact copy from subs.html
   ================================================================ */
.gradient-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 22px;
  border-radius: 50px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  color: #fff !important;
  text-decoration: none;
  cursor: pointer;
  background: linear-gradient(135deg, #0d47a1 0%, #0b3d91 60%, #4F9FFF 100%);
  transition: box-shadow 0.25s ease;
}

.gradient-btn:hover {
  box-shadow: 0 6px 20px rgba(13, 71, 161, 0.45);
  color: #fff !important;
  text-decoration: none;
}

.gradient-btn:active {
  box-shadow: 0 3px 10px rgba(13, 71, 161, 0.3);
}

/* Submit button alias */
button.gradient-btn,
#book_subscription {
  font-family: 'Segoe UI', sans-serif;
}

/* ================================================================
   6. OTP / PHONE AREA
   ================================================================ */
.otp_flex_box {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.otp_flex_box .cs_error_input {
  flex: 1;
  min-width: 0;
}

.input-group-append_bck {
  display: flex;
  align-items: flex-start;
  padding-top: 2px;
  flex-shrink: 0;
}

.otp-group {
  margin-top: 10px;
  padding: 12px 14px;
  background: rgba(79, 159, 255, 0.04);
  border-radius: 10px;
  border: 1px solid rgba(79, 159, 255, 0.12);
}

.otp_box_cs_flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

/* Individual OTP digit boxes */
.otp-box {
  width: 38px;
  height: 38px;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  background: #f8f9fa;
  color: #333;
  outline: none;
  transition: border-color 0.2s ease;
}

.otp-box:focus {
  border-color: #4F9FFF;
  box-shadow: 0 0 0 3px rgba(79, 159, 255, 0.15);
}

/* OTP action buttons */
.send-otp-btn,
.verify-otp-btn,
.resent-otp-btn {
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  background: linear-gradient(135deg, #0d47a1 0%, #0b3d91 60%, #4F9FFF 100%);
  color: #fff;
  transition: box-shadow 0.2s ease;
}

.send-otp-btn:hover,
.verify-otp-btn:hover,
.resent-otp-btn:hover {
  box-shadow: 0 4px 12px rgba(13, 71, 161, 0.35);
}

.cancel-btn {
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  background: #f1f1f1;
  color: #444;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.cancel-btn:hover {
  background: #e4e4e4;
}

/* OTP timer */
#otptimer2 {
  font-size: 11px;
  color: #4F9FFF;
  font-weight: 600;
  margin-top: 6px;
  display: block;
}

/* ================================================================
   7. SMALL SERVICE CARDS  (right column 2×2 grid)
   ================================================================ */
.small-card {
  background: #ffffff;
  border-radius: 12px;
  border: 2px solid rgba(118, 118, 118, 0.08);
  box-shadow: 0 4px 20px rgba(44, 44, 44, 0.05);
  padding: 20px 15px;
  margin-bottom: 0;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.small-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.service-title {
  font-size: 16px;
  font-weight: 600;
  color: #0b3d91;
  margin-bottom: 8px;
  margin-top: 8px;
}

.service-desc {
  font-size: 14px;
  line-height: 1.5;
  color: #000000;
}

/* ================================================================
   8. COMPARE PLANS TABLE SECTION  (dark transparent bg)
   ================================================================ */
.commodities-track-section {
  background: transparent;
  min-height: auto;
  padding: 60px 0;
}

.strip-tagline {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
}

.strip-tagline i {
  font-style: italic;
  color: #4F9FFF;
}

/* Table scroll wrapper */
.comparison-table-container {
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Blue vertical divider between Web Access & Reports */
/* .comparison-table-container::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 17px;
    left: 48.1%;
    width: 1px;
    background: #4ea3ff;
    pointer-events: none;
    
} */

.custom-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  color: #ffffff;
}

.custom-table th,
.custom-table td {
  padding: 14px 16px;
  text-align: center;
  vertical-align: middle;
}

.custom-table td:first-child,
.custom-table th:first-child {
  text-align: left;
}

/* Group header */
/* .header-group-row th {
    background: transparent !important;
    border: none !important;
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 20px;
} */

.header-brand-blue {
  color: #4ea3ff !important;
}

.header-dark-glass {
  color: rgba(255, 255, 255, 0.6) !important;
}

/* Sub-header row */
.sub-header-row th {
  font-size: 14px;
  font-weight: 500;
  color: rgb(56 56 56);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Category rows */
.category-row td {
  padding: 18px 16px;
  font-weight: 600;
  font-size: 14px;
  color: #4ea3ff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.category-row th {
  color: #818080;
}

/* Data rows */
.data-row td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 14px;
  color: rgba(179, 177, 177, 0.85);
}

/* Icons */
.fa-circle-check {
  color: #4ea3ff !important;
  font-size: 16px;
}

.fa-circle-xmark {
  color: #818080;
  font-size: 16px;
}

/* ================================================================
   9. DYNAMIC PHP COMPARE TABLE  (white bg section)
   ================================================================ */
.subscription-plans {
  padding: 50px 0;
  background: #ffffff;
}

.subscription-plans .heading {
  color: #0d1b3e;
  font-weight: 700;
  font-size: clamp(22px, 3vw, 32px);
  text-align: center;
  margin-bottom: 30px;
}

.subscription-plans .table th {
  background: #f0f5ff;
  color: #0d47a1;
  font-weight: 600;
  vertical-align: middle;
}

.subscription-plans .table td {
  vertical-align: middle;
}

.subscription-plans .fa-check {
  color: #2db83d;
  font-size: 18px;
}

.subscription-plans .fa-times-circle {
  color: #d81f1f;
  font-size: 18px;
}

/* ================================================================
   10. FREE TRIAL CHECKBOX ROW
   ================================================================ */
.trial_flex {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 8px;
}

.trial_flex label {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
}

/* ================================================================
   11. RESPONSIVE
   ================================================================ */

/* ≤ 991px – tablets */
@media (max-width: 991px) {
  .subscription-section {
    padding: 60px 0;
  }

  .comparison-table-container::after {
    display: none;
  }
}

/* ≤ 768px */
@media (max-width: 768px) {
  .subscription-section {
    padding: 50px 0 24px;
  }

  .thin-form-container {
    padding: 20px 18px;
    border-radius: 12px;
  }

  /* Stack form col-6 into full width */
  .thin-form-container .row.g-3>.col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .strip-tagline {
    font-size: 26px;
  }

  .small-card {
    padding: 16px 12px;
  }

  .custom-table th,
  .custom-table td {
    padding: 10px 10px;
    font-size: 13px;
  }
}

/* ≤ 576px – mobile */
@media (max-width: 576px) {
  .subscription-section {
    padding: 36px 0 18px;
  }

  .thin-form-container {
    padding: 16px 14px;
    border-radius: 10px;
  }

  .glass-input,
  select.glass-input {
    font-size: 13px;
    height: 40px !important;
  }

  .gradient-btn {
    width: 100%;
    font-size: 14px;
    padding: 10px 22px;
  }

  .strip-tagline {
    font-size: 22px;
    text-align: center;
  }

  .custom-table {
    min-width: 520px;
  }

  .custom-table th,
  .custom-table td {
    padding: 8px 8px;
    font-size: 12px;
  }

  .otp_flex_box {
    flex-direction: column;
  }

  .small-card {
    max-width: 100%;
  }
}

/* ≤ 380px */
@media (max-width: 380px) {
  .thin-form-container {
    padding: 14px 10px;
  }

  .otp-box {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .send-otp-btn {
    width: 100%;
    margin-top: 6px;
  }
}

/* ============================================================
   COMPARE PRODUCTS SECTION (at bottom)
   ============================================================ */
#subscription-plans {
  background: var(--white);
  border-radius: var(--card-radius);
  border: 1px solid var(--border);
  margin-top: 0;
  padding: 30px 24px;
}

#subscription-plans h2.heading {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}

/* second page of subscription start  */
/* ============================================================
   CostMasters Subscribe Page — Production CSS
   Matches the HTML reference design exactly.
   All existing PHP/JS functionality is preserved.
   ============================================================ */

/* ── Google Font ── */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

/* ── CSS Variables ── */
:root {
  --blue-dark: #0d47a1;
  --blue-mid: #0b3d91;
  --blue-light: #4F9FFF;
  --bg-page: #f8f9fb;
  --white: #ffffff;
  --text-dark: #1a1a2e;
  --text-mid: #64748b;
  --text-light: #94a3b8;
  --border: #e2e8f0;
  --card-radius: 12px;
  --sidebar-w: 260px;
  --gradient: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 60%, var(--blue-light) 100%);
  --shadow-sm: 0 4px 12px rgba(13, 71, 161, 0.10);
  --shadow-md: 0 8px 28px rgba(13, 71, 161, 0.14);
  --transition: 0.25s ease;
}

/* ── Reset scoped to subscribe page ── */
.subscribe-page.product_page *,
.subscribe-page.product_page *::before,
.subscribe-page.product_page *::after {
  box-sizing: border-box;
}

/* ============================================================
   PAGE WRAPPER
   ============================================================ */
.subscribe-page.product_page {
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  background: var(--bg-page);
  min-height: 100vh;
  padding: 0;
  color: var(--text-dark);
}

.subscribe-page.product_page .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   OLD TITLE BAR — hidden (sidebar replaces it)
   ============================================================ */
.subscribe-page .product_tab {
  display: none;
}

/* ============================================================
   LAYOUT: SIDEBAR + CONTENT
   ============================================================ */
.cm-pricing-layout {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 32px 0 60px;
  width: 100%;
}

/* ── Sidebar ── */
.cm-sidebar {
  flex: 0 0 var(--sidebar-w);
  width: var(--sidebar-w);
  background: var(--white);
  border-radius: var(--card-radius);
  border: 1px solid var(--border);
  padding: 28px 14px 28px 14px;
  position: sticky;
  top: 80px;
}

.cm-sidebar-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 26px 8px;
  letter-spacing: -0.3px;
}

.cm-sidebar-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 0 10px;
  margin: 14px 0 8px;
}

.cm-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cm-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 4px;
  transition: background var(--transition), color var(--transition);
  user-select: none;
}

.cm-nav-item i {
  font-size: 13px;
  width: 16px;
  text-align: center;
  color: var(--text-light);
  transition: color var(--transition);
}

.cm-nav-item:hover {
  background: rgba(13, 71, 161, 0.05);
  color: var(--blue-dark);
}

.cm-nav-item:hover i {
  color: var(--blue-dark);
}

.cm-nav-item.active {
  background: var(--gradient);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.cm-nav-item.active i {
  color: var(--white);
}

.cm-sidebar-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 16px 0 10px;
}

/* ── Main Content ── */
.cm-pricing-content {
  flex: 1;
  min-width: 0;
}

.cm-content-header {
  margin-bottom: 24px;
}

.cm-content-header h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 6px;
  letter-spacing: -0.5px;
}

.cm-content-header p {
  font-size: 14px;
  color: var(--text-mid);
  margin: 0;
}

/* ============================================================
   TAB PANEL VISIBILITY
   ============================================================ */
.cm-tab-panel {
  display: none;
}

.cm-tab-panel.active {
  display: block;
}

/* ============================================================
   PRICING GRID — 3-column
   ============================================================ */
.cm-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

/* ============================================================
   PRICING CARD
   ============================================================ */
.cm-pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 22px 22px 62px 22px;
  /* bottom room for button */
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  height: 100%;
}

.cm-pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue-dark);
  box-shadow: var(--shadow-md);
}

/* Popular badge */
.cm-popular-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--blue-light);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 0 var(--card-radius) 0 var(--card-radius);
  text-transform: capitalize;
  letter-spacing: 0.8px;
}

/* Card product title (grey) */
.cm-card-product-title {
  font-size: 14px;
  font-weight: 700;
  color: #848484;
  margin-bottom: 8px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Add-ons section */
.cm-addons-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-mid);
  display: block;
  margin-bottom: 4px;
}

.cm-pills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 10px;
  min-height: 26px;
}

.cm-mini-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #f1f5f9;
  color: var(--blue-dark);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  height: 20px;
  border-radius: 4px;
  border: 1px solid var(--border);
  white-space: nowrap;
}

.cm-mini-pill i {
  font-size: 8px;
  opacity: 0.75;
}

/* Feature list */
.cm-feature-list {
  list-style: disc;
  padding-left: 18px;
  margin: 10px 0 14px;
  color: var(--text-dark);
  font-size: 13px;
  line-height: 1.6;
  flex-grow: 1;
}

.cm-feature-list li {
  margin-bottom: 3px;
}

/* Pricing */
.cm-price {
  font-size: 22px;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 0;
  line-height: 1.2;
}

.cm-price span {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
}

.cm-billing {
  font-size: 11px;
  font-style: italic;
  color: var(--text-mid);
  margin-top: 2px;
}

.cm-save-badge {
  font-size: 12px;
  font-weight: 600;
  color: #d32f2f;
  margin-top: 4px;
}

/* Subscribe button — always visible, bottom-right */
.cm-subscribe-btn {
  position: absolute;
  bottom: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 50px;
  background: var(--gradient);
  color: var(--white) !important;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: box-shadow var(--transition), transform var(--transition);
}

.cm-subscribe-btn:hover {
  box-shadow: 0 6px 18px rgba(13, 71, 161, 0.35);
  transform: translateY(-1px);
  color: var(--white) !important;
  text-decoration: none;
}

/* ============================================================
   COMPARE PRODUCTS SECTION (at bottom)
   ============================================================ */
#subscription-plans {
  background: var(--white);
  border-radius: var(--card-radius);
  border: 1px solid var(--border);
  margin-top: 0;
  padding: 30px 24px;
}

#subscription-plans h2.heading {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}

/* ============================================================
   HIDDEN: old plan sections (replaced by tabs)
   ============================================================ */
.plans-container,
.plan-heading,
.col-sm-12>.plans-container,
.col-sm-12>.plan-heading {
  display: none !important;
}

/* ============================================================
   SIDEBAR CHECKOUT (right drawer) — keep existing styles, just tune
   ============================================================ */
#sidebarForm {
  position: fixed;
  top: 0;
  right: -100%;
  width: 360px;
  max-width: 100vw;
  height: 100%;
  background: var(--white);
  box-shadow: -6px 0 30px rgba(0, 0, 0, 0.12);
  z-index: 20000 !important;
  overflow-y: auto;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
}

#sidebarForm.open {
  right: 0;
}

#sidebarForm .modal-header {
  background: var(--gradient);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#sidebarForm .modal-header h4 {
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  margin: 0;
}

#sidebarForm .modal-header .close {
  color: var(--white);
  font-size: 22px;
  opacity: 0.85;
  background: none;
  border: none;
  line-height: 1;
}

#sidebarForm .modal-header .close:hover {
  opacity: 1;
}

#sidebarForm .form-row.sidebar {
  padding: 24px;
}

#sidebarForm .price_list .table {
  border-radius: 8px;
  overflow: hidden;
  font-size: 14px;
}

#sidebarForm .price_list .table th {
  background: #f8f9fb;
  font-weight: 600;
  color: var(--text-mid);
  border-color: var(--border);
}

#sidebarForm .price_list .table td {
  border-color: var(--border);
  font-weight: 600;
}

#sidebarForm .form-group h5 {
  font-size: 12px;
  color: var(--text-mid);
  font-weight: 500;
  line-height: 1.5;
}

#sidebarForm .button-container {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

#sidebarForm .button-container .cta {
  flex: 1;
  padding: 10px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

#sidebarForm .button-container .cta:first-child {
  background: var(--gradient);
  color: var(--white);
}

#sidebarForm .button-container .cta:last-child {
  background: #e2e8f0;
  color: var(--text-mid);
}

#sidebarForm .button-container .cta:first-child:hover {
  box-shadow: var(--shadow-sm);
}

/* Backdrop */
.backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 19990 !important;
  border: none;
  cursor: pointer;
}
/* ============================================================
   COMPARE PRODUCTS TABLE (at page bottom)
   ============================================================ */
.subscription-plans .table {
  font-size: 13px;
}

.subscription-plans .table thead th {
  /* background: var(--gradient);
  color: var(--white) !important; */
  font-weight: 700;
  font-size: 12px;
  padding: 12px 10px;
  vertical-align: middle;
  border: 1px solid #dee2e6;
}

.subscription-plans .table tbody td {
  vertical-align: middle;
  text-align: center;
  padding: 8px;
}

.subscription-plans .table tbody th {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
  padding: 8px 12px;
  text-align: left;
  vertical-align: middle;
}

.subscription-plans .table .fa-check {
  color: #2db83d;
  font-size: 17px;
}

.subscription-plans .table .fa-times-circle {
  color: #d81f1f;
  font-size: 17px;
}

