/* @earn-shared-css: account */
/* Extracted from edit-profile.html. */
#custom-profile-wrapper,
#custom-profile-wrapper * {
  box-sizing: border-box;
}
#custom-profile-wrapper {
  font-family: var(--earn-font);
}
html,
body {
  background: var(--earn-black) !important;
}
/* ===== HIDE WP PAGE TITLE / ENTRY HEADER ABOVE OUR CONTENT =====
     Keep the WP-default top-margin (--wp--preset--spacing--60) on
     <main> and .wp-block-group so this page gets the same gap
     between the site header and the tab nav as edit-billing,
     earnings-summary, and how-points-work. Previously this block
     also stripped all top padding/margin from those wrappers,
     which made edit-profile's selector bar render flush against
     the site header - an inconsistency the user could see on
     mobile. Now we ONLY hide the page title; spacing is normal. */
.wp-block-post-title,
h1.wp-block-post-title,
.entry-title,
.page-title,
header.entry-header,
.wp-block-template-part[class*="header"] + .wp-block-post-content > .wp-block-group:first-child > .wp-block-post-title,
.wp-site-blocks > .is-layout-constrained > header {
  display: none !important;
}
/* ===== HIDE ULTIMATE MEMBER DEFAULT FORMS ===== */
.um-form,
.um-profile,
.um-account,
.um-account-tab,
.um-account-main,
.um-account-side,
.um-col-alt,
.um-col-alt-b,
.um,
.um-account-name,
.um-account-nav,
.um-account-area,
div[class*="um-"] {
  display: none !important;
}
/* ===== BASE ===== */
#custom-profile-wrapper {
  display: block !important;
  background: var(--earn-black);
  color: var(--earn-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 40px;
}
/* ===== TABS NAV ===== */
.ep-tabs {
  display: flex !important;
  justify-content: center !important;
  padding: 20px 16px 16px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
.ep-tabs-bar {
  display: inline-flex !important;
  align-items: center !important;
  background: var(--earn-surface-2) !important;
  border-radius: 999px !important;
  padding: 4px !important;
  border: 1px solid var(--earn-border) !important;
  width: auto !important;
  max-width: fit-content !important;
  box-sizing: border-box !important;
  flex-shrink: 0 !important;
  flex-grow: 0 !important;
  margin: 0 auto !important;
}
a.ep-tab,
.ep-tab {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 12px 24px !important;
  border-radius: 999px !important;
  border: none !important;
  background: transparent !important;
  color: var(--earn-text) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  outline: none !important;
  text-decoration: none !important;
  line-height: 1 !important;
  box-shadow: none !important;
  margin: 0 !important;
  height: auto !important;
  width: auto !important;
  min-width: 0 !important;
  flex-grow: 0 !important;
  flex-shrink: 0 !important;
  -webkit-tap-highlight-color: transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
a.ep-tab:hover,
a.ep-tab:focus,
a.ep-tab:focus-visible,
a.ep-tab:active,
a.ep-tab:visited,
.ep-tab:hover,
.ep-tab:focus,
.ep-tab:focus-visible,
.ep-tab:active,
.ep-tab:visited {
  background: transparent !important;
  color: var(--earn-text) !important;
  outline: none !important;
  box-shadow: none !important;
  text-decoration: none !important;
}
a.ep-tab.ep-active,
a.ep-tab.ep-active:hover,
a.ep-tab.ep-active:focus,
a.ep-tab.ep-active:focus-visible,
a.ep-tab.ep-active:active,
a.ep-tab.ep-active:visited,
.ep-tab.ep-active,
.ep-tab.ep-active:hover,
.ep-tab.ep-active:focus,
.ep-tab.ep-active:focus-visible,
.ep-tab.ep-active:active,
.ep-tab.ep-active:visited {
  background: var(--earn-green) !important;
  color: var(--earn-black) !important;
  box-shadow: var(--earn-shadow-glow) !important;
  text-decoration: none !important;
  outline: none !important;
}
.ep-tab svg {
  width: 16px !important;
  height: 16px !important;
  flex-shrink: 0 !important;
  stroke: currentColor !important;
  display: block !important;
}
.ep-tab.ep-active svg {
  stroke: var(--earn-black) !important;
}
/* Responsive tabs - IDENTICAL to .eb-tabs / .es-tabs / .hpw nav
     so the selector bar renders at the same height on every account
     page. No padding-bottom override here; spacing between bar and
     card is now handled uniformly via the .ep-card margin-top below. */
@media (max-width: 800px) {
  .ep-tabs-bar {
    flex-wrap: wrap !important;
    border-radius: var(--earn-radius-card) !important;
    justify-content: center !important;
    gap: 4px !important;
    max-width: 100% !important;
  }
  a.ep-tab, .ep-tab {
    padding: 10px 16px !important;
    font-size: 13px !important;
  }
}
@media (max-width: 500px) {
  .ep-tabs-bar {
    border-radius: var(--earn-radius-card) !important;
    padding: 4px !important;
  }
  a.ep-tab, .ep-tab {
    padding: 10px 12px !important;
    font-size: 13px !important;
  }
}
/* ===== CARD ===== */
.ep-card {
  display: block !important;
  max-width: 700px !important;
  margin: 0 auto 0 !important;
  /* desktop: unchanged (no top gap) */
  padding: 40px 32px 32px !important;
  box-sizing: border-box !important;
}
@media (max-width: 800px) {
  .ep-card {
    padding: 32px 22px 28px !important;
  }
}
@media (max-width: 500px) {
  .ep-card {
    padding: 28px 18px 24px !important;
  }
}
/* ===== AVATAR ===== */
.ep-avatar-wrap {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin-bottom: 32px !important;
  width: 100% !important;
}
.ep-avatar {
  width: 80px !important;
  height: 80px !important;
  min-width: 80px !important;
  min-height: 80px !important;
  border-radius: 50% !important;
  background: #555 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  cursor: pointer !important;
  line-height: 1 !important;
  text-align: center !important;
  overflow: visible !important;
  transition: background 0.2s ease !important;
}
.ep-avatar-letter {
  display: block !important;
  font-size: 26px !important;
  font-weight: 600 !important;
  color: #fff !important;
  line-height: 1 !important;
  letter-spacing: 0.02em !important;
  margin: 0 !important;
  padding: 0 !important;
  user-select: none !important;
}
.ep-avatar-img {
  width: 80px !important;
  height: 80px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  display: none !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
}
.ep-avatar-img.ep-av-show {
  display: block !important;
}
.ep-avatar-file {
  display: none !important;
}
.ep-avatar-loading {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 80px !important;
  height: 80px !important;
  border-radius: 50% !important;
  background: rgba(0, 0, 0, 0.6) !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 5 !important;
}
.ep-avatar-loading.ep-av-show {
  display: flex !important;
}
.ep-avatar-letter.ep-av-hide {
  display: none !important;
}
.ep-avatar-letter.ep-av-flex {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.ep-avatar-loading::after {
  content: '' !important;
  width: 24px !important;
  height: 24px !important;
  border: 3px solid rgba(255, 255, 255, 0.3) !important;
  border-top-color: var(--earn-text) !important;
  border-radius: 50% !important;
  animation: ep-spin 0.7s linear infinite !important;
  display: block !important;
}
@keyframes ep-spin {
  to {
    transform: rotate(360deg);
  }
}
.ep-avatar-cam {
  position: absolute !important;
  bottom: -2px !important;
  right: -2px !important;
  width: 24px !important;
  height: 24px !important;
  background: var(--earn-surface) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 2px solid var(--earn-surface) !important;
}
.ep-avatar-cam svg {
  width: 12px !important;
  height: 12px !important;
  color: var(--earn-text-muted) !important;
  stroke: var(--earn-text-muted) !important;
}
/* ===== FORM ===== */
.ep-group {
  display: block !important;
  margin-bottom: 20px !important;
}
.ep-label {
  display: block !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em !important;
  color: var(--earn-text-secondary) !important;
  margin-bottom: 6px !important;
  text-transform: uppercase !important;
  line-height: 1.4 !important;
}
/* -- iOS-style wheel date picker -- */
.ep-wc::-webkit-scrollbar {
  display: none;
}
.ep-dp-trigger {
  width: 100%;
  height: 48px;
  background: #1c1c1c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: #fff;
  font-size: 15px;
  font-family: var(--earn-font);
  display: flex;
  align-items: center;
  padding: 0 16px;
  cursor: pointer;
  box-sizing: border-box;
  text-align: left;
}
.ep-dp-trigger:hover {
  border-color: rgba(255, 255, 255, 0.18);
}
.ep-dp-trigger.ep-dp-empty {
  color: #555;
}
.ep-dp-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: ep-fade-in 0.18s ease;
}
@keyframes ep-fade-in {
  from {
    opacity:0;
  }
  to {
    opacity:1;
  }
}
.ep-dp-sheet {
  width: 100%;
  max-width: 480px;
  background: #1c1c1c;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  animation: ep-slide-up 0.28s cubic-bezier(0.32, 0.72, 0, 1);
}
@keyframes ep-slide-up {
  from {
    transform:translateY(100%);
  }
  to {
    transform:translateY(0);
  }
}
.ep-dp-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.ep-dp-bar-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 17px;
  font-family: var(--earn-font);
  padding: 4px 0;
}
.ep-dp-bar-btn.cancel {
  color: #888;
}
.ep-dp-bar-btn.done {
  color: #59CC80;
  font-weight: 600;
}
.ep-dp-bar-title {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  font-family: var(--earn-font);
}
.ep-dp-cols {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  position: relative;
}
.ep-dp-cols::before,
.ep-dp-cols::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 44px;
  pointer-events: none;
  z-index: 2;
}
.ep-dp-cols::before {
  top: 0;
  background: linear-gradient(to bottom, #1c1c1c 0%, transparent 100%);
}
.ep-dp-cols::after {
  bottom: 0;
  background: linear-gradient(to top, #1c1c1c 0%, transparent 100%);
}
.ep-dp-selector {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 32px);
  height: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  pointer-events: none;
  z-index: 1;
}
.ep-wc {
  flex: 1;
  height: 220px;
  overflow-y: scroll;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 88px 0;
  box-sizing: border-box;
}
.ep-wc-item {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--earn-font);
  scroll-snap-align: start;
  transition: color 0.15s, font-size 0.15s;
  cursor: pointer;
  user-select: none;
}
.ep-wc-item.selected {
  color: #fff;
  font-size: 22px;
  font-weight: 500;
}
/* ===== 2FA verification modal (matches signup #eph-overlay) ===== */
#ep-mfa-overlay {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 1000001;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 16px;
}
#ep-mfa-card {
  width: 100%;
  max-width: 420px;
  background: #1c1c1e;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  padding: 36px 28px 32px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.65);
  font-family: -apple-system, BlinkMacSystemFont, "Inter", system-ui, sans-serif;
  color: #fff;
  text-align: center;
}
.ep-mfa-logo {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: #1c1c1c;
  border: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  overflow: hidden;
}
.ep-mfa-logo img {
  width: 58%;
  height: auto;
  display: block;
}
.ep-mfa-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin: 0 0 8px;
  color: #fff;
}
.ep-mfa-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin: 0 0 26px;
}
.ep-mfa-sub strong {
  color: #fff;
  font-weight: 600;
}
.ep-mfa-otp-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 14px;
  position: relative;
}
.ep-mfa-otp-box {
  width: 52px;
  height: 62px;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  color: #fff;
  font-size: 26px;
  font-weight: 600;
  text-align: center;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  padding: 0;
  pointer-events: none;
}
.ep-mfa-otp-box.ep-mfa-active {
  border-color: #59CC80;
  box-shadow: 0 0 0 3px rgba(89, 204, 128, 0.18);
}
.ep-mfa-otp-real {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: text;
  border: none;
  background: transparent;
}
.ep-mfa-error {
  color: #EF4444;
  font-size: 13px;
  margin: 0 0 10px;
  text-align: center;
  min-height: 16px;
}
.ep-mfa-btn {
  width: 100%;
  height: 50px;
  background: #59CC80;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  margin-top: 6px;
}
.ep-mfa-btn:hover:not(:disabled) {
  background: #6BE898;
}
.ep-mfa-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.ep-mfa-link {
  display: block;
  margin-top: 14px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.35);
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  width: 100%;
  padding: 0;
}
.ep-mfa-link:hover {
  color: rgba(255, 255, 255, 0.6);
}
/* ===== GREEN BUTTON (page-specific layout) ===== */
.ep-btn {
  width: 100% !important;
  margin-top: 4px !important;
}
/* ===== DIVIDER ===== */
.ep-divider {
  height: 1px !important;
  background: var(--earn-border-input) !important;
  margin: 28px 0 !important;
  border: none !important;
  display: block !important;
}
/* ===== PASSWORD ===== */
.ep-pw-heading {
  display: block !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: var(--earn-text) !important;
  margin-bottom: 20px !important;
  line-height: 1.4 !important;
}
.ep-hints {
  display: block !important;
  border: 1px solid var(--earn-border-input) !important;
  border-radius: var(--earn-radius-small) !important;
  padding: 14px 16px !important;
  margin-bottom: 20px !important;
}
.ep-hints ul {
  display: block !important;
  list-style: disc !important;
  padding-left: 20px !important;
  margin: 0 !important;
}
.ep-hints li {
  display: list-item !important;
  font-size: 12px !important;
  line-height: 20px !important;
  color: var(--earn-text-muted) !important;
}
/* ===== DELETE & SIGN OUT ===== */
.ep-delete-wrap {
  display: block !important;
  text-align: center !important;
  margin-top: 28px !important;
}
.ep-delete-link {
  color: var(--earn-text-muted) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  cursor: pointer;
  transition: color 0.2s;
  background: none !important;
  border: none !important;
  padding: 0 !important;
}
.ep-delete-link:hover {
  color: #EF4444 !important;
}
.ep-signout-wrap {
  display: block !important;
  text-align: center !important;
  margin-top: 24px !important;
}
.ep-signout {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  color: var(--earn-green) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  cursor: pointer;
  transition: opacity 0.2s;
}
.ep-signout:hover {
  opacity: 0.8;
}
.ep-signout svg {
  width: 16px !important;
  height: 16px !important;
  display: block !important;
}
/* ===== SUCCESS ===== */
.ep-success {
  display: block !important;
  color: var(--earn-green) !important;
  font-size: 13px !important;
  margin-top: 8px !important;
}
/* ===== SMS OPT-IN ===== */
.ep-sms-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  padding: 16px !important;
  background: rgba(255, 255, 255, .03) !important;
  border: 1px solid var(--earn-border-input) !important;
  border-radius: var(--earn-radius-small) !important;
  margin-bottom: 12px !important;
}
.ep-sms-info {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex: 1 !important;
  min-width: 0 !important;
}
.ep-sms-dot {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  flex-shrink: 0 !important;
  transition: background .25s !important;
}
.ep-sms-label {
  font-size: 14px !important;
  color: var(--earn-text) !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
}
.ep-btn-sm {
  height: 36px !important;
  padding: 0 18px !important;
  font-size: 13px !important;
  flex-shrink: 0 !important;
  width: auto !important;
  margin-top: 0 !important;
}
.ep-sms-fine {
  display: block !important;
  font-size: 12px !important;
  color: rgba(255, 255, 255, .3) !important;
  line-height: 1.6 !important;
  margin-top: 4px !important;
}
/* ===== ERROR ===== */
.ep-error {
  display: block !important;
  color: #EF4444 !important;
  font-size: 13px !important;
  margin-top: 6px !important;
}
/* ===== DELETE ACCOUNT MODAL ===== */
#ep-delete-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1000000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
#ep-delete-overlay.open {
  display: flex;
}
#ep-delete-popup {
  padding: 32px 28px 28px;
  width: 100%;
  max-width: 400px;
  position: relative;
  box-shadow: var(--earn-shadow-dropdown);
  animation: epDeleteIn 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-align: center;
}
@keyframes epDeleteIn {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
#ep-delete-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--earn-surface-2);
  border: none;
  color: var(--earn-text-muted);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
  line-height: 1;
}
#ep-delete-close:hover {
  background: var(--earn-surface);
  color: var(--earn-text);
}
.ep-del-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
}
.ep-del-icon svg {
  width: 48px;
  height: 48px;
  stroke: #EF4444;
  fill: none;
  filter: drop-shadow(0 0 14px rgba(239, 68, 68, 0.6));
  animation: epDelGlow 2.5s ease-in-out infinite;
}
@keyframes epDelGlow {
  0%, 100% {
    filter: drop-shadow(0 0 12px rgba(239, 68, 68, 0.5)) drop-shadow(0 0 4px rgba(239, 68, 68, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 28px rgba(239, 68, 68, 0.9)) drop-shadow(0 0 8px rgba(239, 68, 68, 0.6));
  }
}
.ep-del-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--earn-text);
  margin-bottom: 8px;
  line-height: 1.3;
  text-align: center;
}
.ep-del-desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--earn-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
}
.ep-del-pw-group {
  margin-bottom: 24px;
  text-align: left;
}
.ep-del-pw-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--earn-text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.ep-del-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ep-del-cancel {
  flex: 1;
  font-weight: 700;
}
.ep-del-confirm {
  flex: 1;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #EF4444;
  border: none;
  border-radius: var(--earn-radius-pill);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}
.ep-del-confirm:hover {
  background: rgba(239, 68, 68, 0.08);
}
.ep-del-confirm:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.ep-del-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  text-align: left;
}
.ep-del-check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}
.ep-del-check-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.ep-del-check-box {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, border-color 0.15s ease;
  margin-top: 2px;
}
.ep-del-check-label input:checked + .ep-del-check-box {
  background: #EF4444;
  border-color: #EF4444;
}
.ep-del-check-box::after {
  content: '';
  display: block;
  width: 4px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  margin-top: -2px;
  opacity: 0;
  transition: opacity 0.15s ease;
}
.ep-del-check-label input:checked + .ep-del-check-box::after {
  opacity: 1;
}
.ep-del-check-text {
  font-size: 13px;
  color: var(--earn-text-muted);
  line-height: 1.45;
}
