.elementor-22870 .elementor-element.elementor-element-a89c6d7{--display:flex;--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--padding-top:50px;--padding-bottom:50px;--padding-left:10px;--padding-right:10px;}.elementor-22870 .elementor-element.elementor-element-186cdd9{--display:flex;}/* Start custom CSS for shortcode, class: .elementor-element-ffc24d2 *//* =================================================================
   PRESSURE PROFILE — MEMBERPRESS ACCOUNT PAGE
   COLOR OVERRIDE ONLY · Layout untouched
   -----------------------------------------------------------------
   How to use:
   Option A → WordPress Customizer → Additional CSS → paste this
   Option B → Theme child stylesheet
   Option C → WPCode "Custom CSS" snippet (front-end only)

   Brand tokens:
     --pp-bg:        #080808   (page background)
     --pp-surface:   #0F0F0F   (cards / panels)
     --pp-line:      rgba(255,255,255,0.08)  (borders)
     --pp-text:      #FFFFFF   (primary text)
     --pp-muted:     rgba(255,255,255,0.6)   (secondary text)
     --pp-red:       #FF2D2D   (accent / CTA)
     --pp-red-hover: #ff5555
================================================================= */

:root {
  --pp-bg: #080808;
  --pp-surface: #0F0F0F;
  --pp-surface-2: #141414;
  --pp-line: rgba(255, 255, 255, 0.08);
  --pp-line-strong: rgba(255, 255, 255, 0.16);
  --pp-text: #FFFFFF;
  --pp-muted: rgba(255, 255, 255, 0.6);
  --pp-faint: rgba(255, 255, 255, 0.4);
  --pp-red: #FF2D2D;
  --pp-red-hover: #ff5555;
  --pp-red-soft: rgba(255, 45, 45, 0.12);
  --pp-success: #22c55e;
  --pp-warning: #f59e0b;
}

/* ===== Page background (account page only) ===== */
body.page .mp_wrapper,
body .mp_wrapper.mp_wrapper_account,
.mepr-account-page,
.mp-account-page {
  background: var(--pp-bg) !important;
  color: var(--pp-text) !important;
  font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
}

/* ===== Wrapper ===== */
.mp_wrapper,
.mp_wrapper * {
  color: var(--pp-text);
  border-color: var(--pp-line);
}

.mp_wrapper {
  background: var(--pp-bg) !important;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--pp-line);
}

/* ===== Headings ===== */
.mp_wrapper h1,
.mp_wrapper h2,
.mp_wrapper h3,
.mp_wrapper h4,
.mp_wrapper legend,
.mepr-account-page h1,
.mepr-account-page h2,
.mepr-account-page h3 {
  color: var(--pp-text) !important;
  font-family: 'Syne', 'Inter', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
}

.mp_wrapper p,
.mp_wrapper span:not(.cc-error),
.mp_wrapper label,
.mp_wrapper td,
.mp_wrapper th {
  color: var(--pp-text) !important;
}

.mp_wrapper span.cc-error{
    font-size: 12px !important;
}

.mp_wrapper .mepr-description,
.mp_wrapper small,
.mp_wrapper .mepr-help-text {
  color: var(--pp-muted) !important;
}

/* ===== Account Tabs (top navigation) ===== */
.mepr-account-nav,
.mepr-nav-tabs,
ul.mepr-account-nav {
  background: var(--pp-surface) !important;
  border: 1px solid var(--pp-line) !important;
  border-radius: 12px !important;
  padding: 6px !important;
  list-style: none !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 4px !important;
}

.mepr-account-nav li,
.mepr-nav-tabs li {
  background: transparent !important;
  border: none !important;
  margin: 0 !important;
}

.mepr-account-nav li a,
.mepr-nav-tabs li a,
.mepr-account-nav a {
  color: var(--pp-muted) !important;
  background: transparent !important;
  border: none !important;
  padding: 10px 18px !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  transition: all 0.2s ease !important;
  text-decoration: none !important;
}

.mepr-account-nav li a:hover,
.mepr-nav-tabs li a:hover {
  color: var(--pp-text) !important;
  background: rgba(255, 255, 255, 0.04) !important;
}

.mepr-account-nav li.mepr-active-nav-tab a,
.mepr-account-nav li.active a,
.mepr-nav-tabs li.active a,
.mepr-account-nav li.current_page_item a {
  color: var(--pp-text) !important;
  background: var(--pp-red) !important;
  box-shadow: 0 4px 14px rgba(255, 45, 45, 0.35) !important;
}

/* ===== Tables (subscriptions, transactions) ===== */
.mp_wrapper table,
.mepr-account-table,
.mepr-table {
  background: var(--pp-surface) !important;
  border: 1px solid var(--pp-line) !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  width: 100% !important;
}

.mp_wrapper table th,
.mepr-account-table th,
.mepr-table th {
  background: var(--pp-surface-2) !important;
  color: var(--pp-faint) !important;
  font-weight: 600 !important;
  font-size: 11px !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  padding: 14px 18px !important;
  border-bottom: 1px solid var(--pp-line) !important;
  text-align: left !important;
}

.mp_wrapper table td,
.mepr-account-table td,
.mepr-table td {
  background: transparent !important;
  color: var(--pp-text) !important;
  padding: 16px 18px !important;
  border-bottom: 1px solid var(--pp-line) !important;
  font-size: 14px !important;
}

.mp_wrapper table tr:last-child td,
.mepr-account-table tr:last-child td {
  border-bottom: none !important;
}

.mp_wrapper table tr:hover td {
  background: rgba(255, 255, 255, 0.02) !important;
}

/* ===== Forms (profile, password, payment) ===== */
.mp_wrapper input[type="text"],
.mp_wrapper input[type="email"],
.mp_wrapper input[type="password"],
.mp_wrapper input[type="tel"],
.mp_wrapper input[type="number"],
.mp_wrapper input[type="url"],
.mp_wrapper textarea,
.mp_wrapper select,
.mepr-form input[type="text"],
.mepr-form input[type="email"],
.mepr-form input[type="password"],
.mepr-form textarea,
.mepr-form select {
  background: var(--pp-surface) !important;
  color: var(--pp-text) !important;
  border: 1px solid var(--pp-line) !important;
  border-radius: 10px !important;
  padding: 12px 16px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  width: 100% !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
  box-shadow: none !important;
}

.mp_wrapper input:focus,
.mp_wrapper textarea:focus,
.mp_wrapper select:focus,
.mepr-form input:focus,
.mepr-form textarea:focus {
  outline: none !important;
  border-color: var(--pp-red) !important;
  box-shadow: 0 0 0 3px rgba(255, 45, 45, 0.15) !important;
}

.mp_wrapper input::placeholder,
.mp_wrapper textarea::placeholder {
  color: var(--pp-faint) !important;
}

.mp_wrapper label,
.mepr-form label {
  color: var(--pp-muted) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  margin-bottom: 6px !important;
  display: inline-block !important;
}

.mepr-form-row,
.mp-form-row {
  margin-bottom: 18px !important;
}

/* ===== Buttons (Save, Update, Submit) ===== */
.mp_wrapper input[type="submit"],
.mp_wrapper button[type="submit"],
.mp_wrapper button.mepr-submit,
.mepr-submit,
.mepr-form input[type="submit"],
.mp-button,
.mepr-button {
  background: linear-gradient(135deg, var(--pp-red) 0%, #d61f1f 100%) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 10px !important;
  padding: 12px 28px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em !important;
  cursor: pointer !important;
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
  box-shadow: 0 6px 20px rgba(255, 45, 45, 0.35), inset 0 1px 0 rgba(255,255,255,0.15) !important;
  text-shadow: none !important;
}

.mp_wrapper input[type="submit"]:hover,
.mp_wrapper button[type="submit"]:hover,
.mepr-submit:hover,
.mp-button:hover,
.mepr-button:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 10px 28px rgba(255, 45, 45, 0.5), inset 0 1px 0 rgba(255,255,255,0.2) !important;
  background: linear-gradient(135deg, var(--pp-red-hover) 0%, var(--pp-red) 100%) !important;
}

.mp_wrapper input[type="submit"]:active,
.mp_wrapper button[type="submit"]:active,
.mepr-submit:active {
  transform: translateY(0) !important;
}

/* Secondary buttons (Cancel, Update CC etc.) */
.mp_wrapper a.mepr-cancel,
.mp_wrapper .mepr-secondary-btn,
.mepr-cancel-link {
  background: transparent !important;
  color: var(--pp-muted) !important;
  border: 1px solid var(--pp-line-strong) !important;
  border-radius: 10px !important;
  padding: 10px 22px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  display: inline-block !important;
  transition: all 0.2s ease !important;
}

.mp_wrapper a.mepr-cancel:hover,
.mepr-cancel-link:hover {
  color: var(--pp-text) !important;
  border-color: var(--pp-red) !important;
  background: var(--pp-red-soft) !important;
}

/* ===== Links (general) ===== */
.mp_wrapper a {
  color: var(--pp-red) !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.mp_wrapper a:hover {
  color: var(--pp-red-hover) !important;
  text-decoration: none !important;
}

/* Tab links keep their nav styling */
.mepr-account-nav a,
.mepr-nav-tabs a {
  color: var(--pp-muted) !important;
}

/* ===== Status badges (Active / Cancelled / Pending) ===== */
.mepr-active,
.mepr-status-active,
td.mepr-active {
  color: var(--pp-success) !important;
  font-weight: 600 !important;
}

.mepr-cancelled,
.mepr-status-cancelled,
.mepr-expired,
td.mepr-cancelled {
  color: var(--pp-faint) !important;
  font-weight: 500 !important;
}

.mepr-pending,
.mepr-status-pending,
td.mepr-pending {
  color: var(--pp-warning) !important;
  font-weight: 500 !important;
}

/* ===== Alerts / messages ===== */
.mepr_updated,
.mepr-success,
.mp-success {
  background: rgba(34, 197, 94, 0.1) !important;
  border: 1px solid rgba(34, 197, 94, 0.3) !important;
  color: var(--pp-success) !important;
  border-radius: 10px !important;
  padding: 14px 18px !important;
  margin-bottom: 18px !important;
}

.mepr_error,
.mepr-error,
.mp-error,
.mepr-form-has-errors {
  background: var(--pp-red-soft) !important;
  border: 1px solid rgba(255, 45, 45, 0.35) !important;
  color: var(--pp-red-hover) !important;
  border-radius: 10px !important;
  padding: 14px 18px !important;
  margin-bottom: 18px !important;
}

/* ===== Subscription / invoice cards ===== */
.mepr-active-subscription,
.mepr-subscription,
.mepr-invoice,
.mp-account-row {
  background: var(--pp-surface) !important;
  border: 1px solid var(--pp-line) !important;
  border-radius: 12px !important;
  padding: 20px !important;
  margin-bottom: 14px !important;
}

/* ===== Horizontal rule / dividers ===== */
.mp_wrapper hr {
  border: none !important;
  border-top: 1px solid var(--pp-line) !important;
  margin: 24px 0 !important;
}

/* ===== Checkbox / radio ===== */
.mp_wrapper input[type="checkbox"],
.mp_wrapper input[type="radio"] {
  accent-color: var(--pp-red) !important;
}

/* ===== Optional: WordPress logged-in admin bar contrast ===== */
body.logged-in.admin-bar .mp_wrapper {
  margin-top: 12px;
}

/* =================================================================
   .mp-wrapper.mp-no-subs  —  EMPTY STATE
   Shown when the user has no active subscriptions yet.
   Styled as a centered "empty card" with icon + CTA feel.
================================================================= */
.mp-wrapper.mp-no-subs,
.mp_wrapper.mp-no-subs {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 36px 32px !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 45, 45, 0.08) 0%, rgba(255, 45, 45, 0) 60%),
    var(--pp-surface) !important;
  border: 1px solid var(--pp-line) !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  min-height: 220px !important;
  color: var(--pp-text) !important;
  margin-top: 12px;
}

/* Subtle red glow accent at the top */
.mp-wrapper.mp-no-subs::before,
.mp_wrapper.mp-no-subs::before {
  content: "" !important;
  position: absolute !important;
  top: -1px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 60% !important;
  height: 1px !important;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 45, 45, 0.6),
    transparent
  ) !important;
  pointer-events: none !important;
}

/* Decorative icon above the message */
.mp-wrapper.mp-no-subs::after,
.mp_wrapper.mp-no-subs::after {
  content: "" !important;
  display: block !important;
  width: 64px !important;
  height: 64px !important;
  margin: 0 auto 20px auto !important;
  border-radius: 50% !important;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 45, 45, 0.5), rgba(255, 45, 45, 0.15)) !important;
  border: 1px solid rgba(255, 45, 45, 0.45) !important;
  box-shadow:
    0 0 30px rgba(255, 45, 45, 0.4),
    inset 0 0 14px rgba(255, 45, 45, 0.25) !important;
  /* Inline SVG: empty inbox / package icon */
  background-image:
    radial-gradient(circle at 30% 30%, rgba(255, 45, 45, 0.5), rgba(255, 45, 45, 0.15)),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M22 12h-6l-2 3h-4l-2-3H2'/><path d='M5.45 5.11L2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z'/></svg>") !important;
  background-size: 100%, 30px 30px !important;
  background-position: center, center !important;
  background-repeat: no-repeat, no-repeat !important;
  order: -2 !important;
}

/* Headings inside the empty state */
.mp-wrapper.mp-no-subs h1,
.mp-wrapper.mp-no-subs h2,
.mp-wrapper.mp-no-subs h3,
.mp_wrapper.mp-no-subs h1,
.mp_wrapper.mp-no-subs h2,
.mp_wrapper.mp-no-subs h3 {
  font-family: 'Syne', 'Inter', sans-serif !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
  color: var(--pp-text) !important;
  margin: 0 0 10px 0 !important;
  order: -1 !important;
}

/* Body text / "no subscriptions" message */
.mp-wrapper.mp-no-subs p,
.mp-wrapper.mp-no-subs span,
.mp_wrapper.mp-no-subs p,
.mp_wrapper.mp-no-subs span {
  font-family: 'Inter', sans-serif !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
  color: var(--pp-muted) !important;
  max-width: 480px !important;
  margin: 0 auto 24px auto !important;
}

/* Any link/button inside the empty state acts as the primary CTA */
.mp-wrapper.mp-no-subs a,
.mp_wrapper.mp-no-subs a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 13px 26px !important;
  background: linear-gradient(135deg, var(--pp-red) 0%, #d61f1f 100%) !important;
  color: #ffffff !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em !important;
  text-decoration: none !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 10px !important;
  box-shadow:
    0 10px 28px rgba(255, 45, 45, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  transition: transform 0.22s ease, box-shadow 0.22s ease !important;
  margin-top: 4px !important;
}
.mp-wrapper.mp-no-subs a:hover,
.mp_wrapper.mp-no-subs a:hover {
  transform: translateY(-2px) !important;
  box-shadow:
    0 14px 36px rgba(255, 45, 45, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
  color: #ffffff !important;
}
.mp-wrapper.mp-no-subs a:active,
.mp_wrapper.mp-no-subs a:active {
  transform: translateY(0) !important;
}

/* If multiple links exist, second one becomes a ghost button */
.mp-wrapper.mp-no-subs a + a,
.mp_wrapper.mp-no-subs a + a {
  background: rgba(255, 255, 255, 0.04) !important;
  color: var(--pp-text) !important;
  border: 1px solid var(--pp-line-strong) !important;
  box-shadow: none !important;
  margin-left: 10px !important;
}
.mp-wrapper.mp-no-subs a + a:hover,
.mp_wrapper.mp-no-subs a + a:hover {
  background: rgba(255, 45, 45, 0.1) !important;
  border-color: rgba(255, 45, 45, 0.45) !important;
  box-shadow: none !important;
}

/* =================================================================
   .mepr-no-active-subscriptions  —  EMPTY STATE
   Pressure Profile styled empty state for "no active subscriptions"
================================================================= */
.mepr-no-active-subscriptions {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 36px 32px !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 45, 45, 0.08) 0%, rgba(255, 45, 45, 0) 60%),
    #0F0F0F !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  min-height: 220px !important;
  color: #FFFFFF !important;
  margin-top: 12px !important;
}

/* Top red accent line */
.mepr-no-active-subscriptions::before {
  content: "" !important;
  position: absolute !important;
  top: -1px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 60% !important;
  height: 1px !important;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 45, 45, 0.6),
    transparent
  ) !important;
  pointer-events: none !important;
}

/* Decorative glowing icon above the message */
.mepr-no-active-subscriptions::after {
  content: "" !important;
  display: block !important;
  width: 64px !important;
  height: 64px !important;
  margin: 0 auto 20px auto !important;
  border-radius: 50% !important;
  border: 1px solid rgba(255, 45, 45, 0.45) !important;
  box-shadow:
    0 0 30px rgba(255, 45, 45, 0.4),
    inset 0 0 14px rgba(255, 45, 45, 0.25) !important;
  background-image:
    radial-gradient(circle at 30% 30%, rgba(255, 45, 45, 0.5), rgba(255, 45, 45, 0.15)),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M22 12h-6l-2 3h-4l-2-3H2'/><path d='M5.45 5.11L2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z'/></svg>") !important;
  background-size: 100%, 30px 30px !important;
  background-position: center, center !important;
  background-repeat: no-repeat, no-repeat !important;
  order: -2 !important;
}

/* Headings */
.mepr-no-active-subscriptions h1,
.mepr-no-active-subscriptions h2,
.mepr-no-active-subscriptions h3,
.mepr-no-active-subscriptions h4 {
  font-family: 'Syne', 'Inter', sans-serif !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
  color: #FFFFFF !important;
  margin: 0 0 10px 0 !important;
  order: -1 !important;
}

/* Message text */
.mepr-no-active-subscriptions p,
.mepr-no-active-subscriptions span {
  font-family: 'Inter', sans-serif !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.6) !important;
  max-width: 480px !important;
  margin: 0 auto 24px auto !important;
}

/* Primary CTA — first <a> inside */
.mepr-no-active-subscriptions a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 13px 26px !important;
  background: linear-gradient(135deg, #FF2D2D 0%, #d61f1f 100%) !important;
  color: #ffffff !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em !important;
  text-decoration: none !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 10px !important;
  box-shadow:
    0 10px 28px rgba(255, 45, 45, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  transition: transform 0.22s ease, box-shadow 0.22s ease !important;
  margin-top: 4px !important;
}
.mepr-no-active-subscriptions a:hover {
  transform: translateY(-2px) !important;
  box-shadow:
    0 14px 36px rgba(255, 45, 45, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
  color: #ffffff !important;
}
.mepr-no-active-subscriptions a:active {
  transform: translateY(0) !important;
}

/* Secondary ghost button (second link if present) */
.mepr-no-active-subscriptions a + a {
  background: rgba(255, 255, 255, 0.04) !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  box-shadow: none !important;
  margin-left: 10px !important;
}
.mepr-no-active-subscriptions a + a:hover {
  background: rgba(255, 45, 45, 0.1) !important;
  border-color: rgba(255, 45, 45, 0.45) !important;
  box-shadow: none !important;
}

.mp_wrapper table.mepr-account-table td {
     border-left: 0 !important; 
}

/* Mobile */
@media (max-width: 600px) {
  .mepr-no-active-subscriptions {
    padding: 40px 22px !important;
    min-height: 280px !important;
  }
  .mepr-no-active-subscriptions h1,
  .mepr-no-active-subscriptions h2,
  .mepr-no-active-subscriptions h3,
  .mepr-no-active-subscriptions h4 {
    font-size: 19px !important;
  }
  .mepr-no-active-subscriptions a + a {
    margin-left: 0 !important;
    margin-top: 10px !important;
  }
}

/* Mobile tweaks for empty state */
@media (max-width: 600px) {
  .mp-wrapper.mp-no-subs,
  .mp_wrapper.mp-no-subs {
    padding: 40px 22px !important;
    min-height: 280px !important;
  }
  .mp-wrapper.mp-no-subs h1,
  .mp-wrapper.mp-no-subs h2,
  .mp-wrapper.mp-no-subs h3,
  .mp_wrapper.mp-no-subs h1,
  .mp_wrapper.mp-no-subs h2,
  .mp_wrapper.mp-no-subs h3 {
    font-size: 19px !important;
  }
  .mp-wrapper.mp-no-subs a + a,
  .mp_wrapper.mp-no-subs a + a {
    margin-left: 0 !important;
    margin-top: 10px !important;
  }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .mp_wrapper { padding: 20px !important; }
  .mepr-account-nav,
  .mepr-nav-tabs {
    flex-direction: column !important;
  }
  .mepr-account-nav li a,
  .mepr-nav-tabs li a {
    width: 100% !important;
    text-align: left !important;
  }
  .mp_wrapper table th,
  .mp_wrapper table td {
    padding: 12px !important;
    font-size: 13px !important;
  }
}/* End custom CSS */