:root {
  --bg-color: #ffffff;
  --bg-subtle: #f8fafc;
  --text-primary: #0f172a;
  --text-muted: #64748b;
  --border-color: #e2e8f0;
  --border-focus: #0f172a;
  --blue:#3b82f6;
  --primary-button: #0f172a;
  --primary-button-hover: #1e293b;
  --text-color: #1e293b;
  --font-family: apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  --radius: 12px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --yellow: #fffa82;
  --aqu: aqua;
  --joblue: #4fabe4;
  --crown-color: #c5a059;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  -webkit-font-smoothing: antialiased;
}
.gap10{gap:10px;}
html, body {
  height: 100%;
  background-color: var(--bg-color);
  color: var(--text-primary);
}

body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: calc( 53px + var(--safe-top));
  font-family: apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
/* Header */
.header {
  border-bottom: 1px solid var(--border-color);
  padding: 0px 20px 0 5px;
  position: fixed;
  top: var(--safe-top);
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-color);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.04);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 53px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  height: 53px;
  position: relative;
  font-size: 18px;
  overflow: hidden;
  width: 112px;
}
.logo:before{
  content:'';
  height: 7px;
  width: 7px;
  background: var(--aqu);
  left: 0px;
  position: absolute;
  border-radius: 50%;
}
.logo:after{
  content:'';
  position: absolute;
  left: 0;
  height: 108px;
  border-radius: 50%;
  width: 108px;
  border-left: 2px solid var(--border-color);
  border-right: 2px solid var(--aqu);
}
.logo-text {
  position: relative;
  line-height: 22px;
  display: flex;
  align-items: center;
  letter-spacing: 1px;
  font-weight: 600;
  justify-content: center;
  will-change: transform, color;
  color: var(--text-color);
  height: 53px;
  padding-left: 23px;
}
.logo-text:before{
  content:'';
  position: absolute;
  left: 0;
  height: 15px;
  border-radius: 50%;
  width: 15px;
  border: 2px solid var(--border-color);
  border-right: 2px solid var(--aqu);
}
.logo-text strong{position:relative;font-weight: 600;}
.logo-text strong:after{
  content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: -1;
    left: 0px;
    transform: rotate(-5deg);
    background-color: var(--yellow);
    top: 0px; 
}
.btn-secondary {
  background-color: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 8px 16px 8px 35px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  position: relative;
}

.btn-secondary:hover {
  background-color: var(--border-focus) !important;
  border-color: var(--border-focus) !important;
  color: var(--aqu);
}

/* Hero Section */
.hero-section {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 48px 24px;
}

.hero-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

@media (min-width: 960px) {
  .hero-container {
    grid-template-columns: 1fr 420px;
    gap: 64px;
  }
}

/* Left Side Content */
.hero-left {
  max-width: 680px;
}

/* Trust Badge Placed Above Hero Title */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #15803d;
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.icon-sm {
  width: 14px;
  height: 14px;
}

 .hero-title {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.hero-text {
  font-size: clamp(17px, 2.2vw, 20px);
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.hero-subtext {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
  font-weight: 500;
}
/* Stats Section */
/* Updated Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: var(--bg-subtle);
  border: 1px solid var(--border-color);
  padding: 14px 16px;
  border-radius: var(--radius);
}

.stat-card-wide {
  grid-column: span 2;
}

.stat-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon svg {
  width: 18px;
  height: 18px;
  color: var(--text-primary);
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.3px;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Auth Card */
.hero-right {
  width: 100%;
}

.auth-card {
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.04);
}

.form-heading {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--text-primary);
  margin-bottom: 4px;
}

 .form-title-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.form-icon {
  width: 22px;
  height: 22px;
  color: var(--text-primary);
  flex-shrink: 0;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: flex;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--blue);
  border-radius: 8px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.15s ease;
  font-weight: 600;
}

.form-group input:focus {
  border-color: var(--border-focus);
}

.full-width {
  width: 100%;
}

.btn-primary {
  background-color: var(--primary-button);
  color: #ffffff;
  border: none;
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background-color: var(--primary-button-hover);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.btn-outline:hover {
  background-color: var(--bg-subtle);
  border-color: #cbd5e1;
}

.form-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 18px 0;
}

.form-divider::before,
.form-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid var(--border-color);
}

.form-divider span {
  padding: 0 12px;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border-color);
  padding: 24px;
  background-color: var(--bg-subtle);
  padding-bottom: calc( env(safe-area-inset-bottom, 0px) + 24px);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 600px) {
  .footer-container {
    flex-direction: row;
  }
}

.footer-nav {
  display: flex;
  gap: 20px;
}

.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.15s ease;
}

.footer-nav a:hover {
  color: var(--text-primary);
}

.footer-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
}

 
 
.compliance-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-primary);
  background-color: var(--bg-subtle);
  border: 1px solid var(--border-color);
  padding: 4px 8px;
  border-radius: 4px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modal-header h2 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: var(--text-primary);
}

.btn-icon {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-icon:hover {
  color: var(--text-primary);
  background-color: var(--bg-subtle);
}

.btn-icon svg {
  width: 20px;
  height: 20px;
}

/* Direct form element inside modal-card must inherit flex styling */
.modal-card > form {
  display: flex;
  flex-direction: column;
  max-height: 100%;
  overflow: hidden;
}

.modal-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  max-width: 640px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}
.modal-header {padding: 15px 28px;border-bottom: 1px solid var(--border-color);display: flex;justify-content: space-between;align-items: flex-start;}
.modal-header,
.modal-footer {
  flex-shrink: 0; /* Prevents header/footer from collapsing */
}

.modal-body {
  padding: 28px;
  overflow-y: auto;
  min-height: 0; /* Critical fix for flexbox overflow calculation */
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.legal-callout {
  background-color: var(--bg-subtle);
  border: 1px solid var(--border-color);
  border-left: 3px solid var(--text-primary);
  padding: 16px;
  border-radius: 6px;
  margin: 24px 0;
}

.legal-callout h3 {
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.legal-callout p {
  color: var(--text-muted);
  line-height: 1.5;
}

.legal-section h4 {
  font-weight: 700;
  color: var(--text-primary);
  padding-bottom: 14px;
  line-height: 24px;
  font-size: 18px;
}

.legal-section p {
  color: var(--primary-button-hover);
  line-height: 1.8;
  padding-bottom: 15px;
}

.legal-list {
  margin-top: 10px;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-list li {
  line-height: 1.5;
  color: var(--primary-button);
}

.legal-list strong {
  color: var(--text-primary);
}

footer a{text-decoration: none;}
/* Footer */
.modal-footer {
  padding: 20px 28px;
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
}

.modal-footer-note {
  font-size: 12px;
  color: var(--text-muted);
}

p.form-subheading {
    padding-bottom: 20px;
    line-height: 24px;
}
.label-with-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.label-with-link label {
  margin-bottom: 0; /* Reset default label margin */
}

.text-link {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.text-link:hover {
  color: var(--text-primary);
  text-decoration: underline;
}

/* Relative wrapper for absolute button positioning */
.password-input-wrapper {
  position: relative;
  width: 100%;
}

/* Ensure password input padding doesn't overlap text with the icon */
.password-input-wrapper .password-field {
  padding-right: 42px;
}

/* Toggle Button Styling */
.toggle-password-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color 0.15s ease;
}

.toggle-password-btn:hover {
  color: var(--text-primary);
}

.eye-icon {
  width: 18px;
  height: 18px;
}
.input-error-msg {
  display: block;
  font-size: 11px;
  color: #ef4444; /* Crisp warning red */
  margin-top: 6px;
  font-weight: 500;
}

/* Optional red border highlight when mismatched */
.input-error {
  border-color: #ef4444 !important;
}
/* Visually hide the honeypot field from human users */
.hp-field {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

/* Checkbox Container Alignment */
.checkbox-group {
  margin-top: 16px;
  margin-bottom: 20px;
}

.checkbox-container {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  user-select: none;
}

/* Custom Checkbox Input */
.checkbox-container input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 3px solid var(--text-primary);
  border-radius: 4px;
  background-color: var(--bg-subtle);
  cursor: pointer;
  margin-top: 2px;
  flex-shrink: 0;
  display: grid;
  place-content: center;
  transition: all 0.15s ease;
}

.checkbox-container input[type="checkbox"]:checked {
  background-color: var(--text-primary);
  border-color: var(--text-primary);
}

.checkbox-container input[type="checkbox"]:checked::before {
  content: "";
  width: 10px;
  height: 10px;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  background-color: #ffffff;
}

.checkbox-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.4;
}

.text-link-inline {
  color: var(--text-primary);
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.15s ease;
}

.text-link-inline:hover {
  color: #000000;
}
 
button.is-loading {
  pointer-events: none;
  opacity: 0.85;
  background: aqua;
  color: aqua;
}

.btn-primary.is-loading .btn-text {
  visibility: hidden; /* Keeps button dimensions identical */
}

/* Monochromatic Loader Spinner */
button.is-loading::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--border-focus); /* White spinner for dark primary button */
  border-radius: 50%;
  animation: btn-spinner 0.6s linear infinite;
  border-bottom-color: var(--border-focus);
}

@keyframes btn-spinner {
  to {
    transform: rotate(360deg);
  }
}
.toast-container {
  position: fixed;
  bottom: calc( var(--safe-bottom) + 20px);
  right: 20px;
  z-index: 9999999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast-message {
  min-width: 250px;
  padding: 12px 20px;
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(20px);
}

.toast-message.show {
  opacity: 1;
  transform: translateY(0);
}

.toast-success { background-color: #10b981; }
.toast-error   { background-color: #ef4444; }
.toast-info    { background-color: #3b82f6; }

/* Modal Overlay */

.modal-icon {
  font-size: 40px;
  margin-bottom: 12px;
  display: inline-block;
  vertical-align: sub;
}
 
.modal-p {
  font-size: 14px;
  color: #64748b;
  margin: 0 0 24px 0;
}

/* 6-Digit PIN Inputs */
.pin-container {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
}

.pin-input {
  height: 56px;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  outline: none;
  transition: all 0.15s ease;
  flex: 1;
  width: 50px;
}

.pin-input:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.btn-verify {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  background: var(--blue);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
  position: relative;
}

.btn-verify:disabled {
  background: #cbd5e1;
  cursor: not-allowed;
}

.modal-footer {
  margin-top: 20px;
  font-size: 13px;
  color: #64748b;
}

#btn-resend-code {
  background: none;
  border: none;
  color: var(--blue);
  font-weight: 600;
  cursor: pointer;
}
a{text-decoration:none;}
#btn-resend-code:disabled {
  color: #94a3b8;
  cursor: not-allowed;
}
.signed .guesth, .userh{display: none;}
.signed .userh{display: block;}
.flex{display: flex;}


.vc {
    align-items: center;
}

.umenu span {
    min-width: 40px;
    align-items: center;
    font-size: 18px;
    font-weight: 800;
    display: flex;
    justify-content: flex-end;
    cursor: pointer;
}
.umenu {
    gap: 10px;
    color: var(--text-muted);
}
.umenu span:hover {
    color: var(--blue);
}

/* --- Overlay with Backdrop Blur --- */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer-overlay.active {
  opacity: 1;
}

/* --- Slide Drawer Panel --- */
.drawer-panel {
  position: fixed;
  top: var(--safe-top);
  right: 0;
  width: 100%;
  max-width: 360px;
  height: 100vh;
  background: #ffffff;
  border-left: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: -16px 0 40px -10px rgba(15, 23, 42, 0.15);
  z-index: 10001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer-panel.open {
  transform: translateX(0);
}

/* --- Header Section --- */
.drawer-header {
  padding: 24px;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.user-profile-badge {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar-circle {
  width: 42px;
  height: 42px;
  border-radius: 50px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.15);
}

.user-meta {
  display: flex;
  flex-direction: column;
}

.user-name {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.2px;
}

.user-status {
  font-size: 12px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #10b981;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

.btn-icon-close {
  background: #f1f5f9;
  border: none;
  color: #64748b;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.btn-icon-close:hover {
  background: #e2e8f0;
  color: #0f172a;
  transform: rotate(90deg);
}

/* --- Drawer Body & Layout --- */
.drawer-body {
  padding: 24px 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.menu-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #94a3b8;
  padding: 0 8px 10px 8px;
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* --- Slick Menu Buttons --- */
.menu-item {
  width: 100%;
  background: transparent;
  border: 1px solid transparent;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-item span {
  flex: 1;
}

.icon-box {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background-color: #f8fafc;
  border: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  transition: all 0.2s ease;
}

.chevron-arrow {
  color: #cbd5e1;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.2s ease;
}

/* Hover & Active States */
.menu-item:hover {
  background-color: #ffffff;
  border-color: #e2e8f0;
  color: #0f172a;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
  transform: translateX(3px);
}

.menu-item:hover .icon-box {
  background-color: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
}

.menu-item:hover .chevron-arrow {
  opacity: 1;
  transform: translateX(0);
  color: #0f172a;
}

/* Danger Item Styling */
.menu-item.text-danger {
  color: #ef4444;
}

.danger-icon {
  background-color: #fef2f2;
  border-color: #fee2e2;
  color: #ef4444;
}

.menu-item.text-danger:hover {
  background-color: #fef2f2;
  border-color: #fecaca;
  color: #dc2626;
}

.menu-item.text-danger:hover .danger-icon {
  background-color: #dc2626;
  color: #ffffff;
  border-color: #dc2626;
}

.menu-divider {
  height: 1px;
  background-color: #f1f5f9;
  margin: 4px 0;
}

/* --- Footer --- */
.drawer-footer {
  padding: 16px 24px;
  border-top: 1px solid #f1f5f9;
  background-color: #f8fafc;
  display: flex;
  justify-content: start;
}
 

/* --- Seed Balance Display Card --- */
    .seed-balance-card {
      background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
      border-radius: 16px;
      padding: 35px 20px 20px;
      text-align: center;
      color: #ffffff;
      box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.25);
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.1);
      margin-bottom: 30px;
    }

    .seed-balance-card::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -50%;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle, rgba(251, 191, 36, 0.15) 0%, transparent 70%);
      pointer-events: none;
    }

    .balance-display {
      display: flex;
      align-items: center;
      justify-content: center;
      word-break: break-all;
    }

    .seed-big-number {
      font-size: 34px;
      font-weight: 800;
      letter-spacing: -1px;
      background: linear-gradient(180deg, #ffffff 0%, #cbd5e1 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      line-height: 1.1;
    }

    .balance-subtitle {
      margin-top: 8px;
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #fbbf24;
    }

     

    .btn-seed-action:not(:disabled):hover {
      background: linear-gradient(135deg, #fcd34d 0%, #fbbf24 100%);
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(245, 158, 11, 0.45);
    }

    .btn-seed-action:not(:disabled):active {
      transform: translateY(0);
      box-shadow: 0 2px 8px rgba(245, 158, 11, 0.25);
    }

/* --- Buy 3 Seeds Button Styling --- */
.btn-seed-action {
  width: 100%;
  margin-top: 30px;
  padding: 18px 18px;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #0f172a;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 1;
  text-wrap: nowrap;
  font-size: 16px;
}

/* Active Hover & Focus States */
. 
.btn-seed-action:not(:disabled):active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.25);
}

/* Inactive / Disabled State */
.btn-seed-action:disabled {
  background: #334155 !important;
  color: #64748b !important;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: none !important;
  cursor: not-allowed;
  opacity: 0.7;
  transform: none !important;
}

.btn-seed-action:disabled svg {
  opacity: 0.4;
}

span.seedstitle {
    font-size: 20px;
    font-weight: 600;
}
/* --- Two-Column Form Row --- */
.form-row {
  display: flex;
  gap: 12px;
  width: 100%;
}

.flex-1 {
  flex: 1;
  min-width: 0; /* Prevents overflow in flex children */
}

/* --- Styled Dropdowns --- */
.select-wrapper {
  position: relative;
  width: 100%;
}

.select-wrapper::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #64748b; /* Chevron Arrow Color */
  pointer-events: none;
}

/* Match existing input styling */
.select-wrapper select {
  width: 100%;
  padding: 10px 32px 10px 12px;
  font-size: 16px;
  font-family: inherit;
  color: #0f172a;
  background-color: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-weight: 600;
}

.select-wrapper select:focus {
  border-color: #0f172a;
  box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.1);
}

/* Placeholder color handling */
.select-wrapper select:invalid {
  color: #94a3b8;
}

.modal-header .flex.vc {
    gap: 16px;
}

.pop {
    position: fixed;
    top: var(--safe-top);
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 1000;
    padding-top: 55px;
}

.pop-header {
    position: fixed;
    top: var(--safe-top);
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid var(--border-color);
}

.pop-body {
    height: 100%;
    position: relative;
    overflow-y: auto;
}

.text-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
}

.legal-section {
    padding-bottom: 24px;
}
 

 

.legal-entity>div {
    padding: 6px 0;
}

.legal-entity {
    padding-top: 20px;
}

.legal-section p.legal-space-fix {
    padding-top: 20px;
    padding-bottom: 0px;
}

.footer-nav a .icon-box {
    display: none;
}

.faq-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #2b2b2b;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header h2 {
    font-size: 2rem;
    color: #1a2a3a;
    margin-bottom: 8px;
}

.faq-header p {
    color: #666;
    font-size: 1.05rem;
}

.faq-category {
    margin-bottom: 35px;
}

.faq-category-title {
    font-size: 1.3rem;
    color: #1a2a3a;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 8px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
    border-color: #cbd5e1;
}

.faq-item[open] {
    border-color: #d4af37;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 16px 20px;
    font-weight: 600;
    font-size: 1.05rem;
    color: #1a2a3a;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-icon {
    font-size: 1.4rem;
    font-weight: 300;
    color: #d4af37;
    transition: transform 0.2s ease;
    line-height: 1;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px 20px 20px;
    color: #4a5568;
    line-height: 1.65;
    font-size: 0.98rem;
}

.faq-answer p {
    margin-top: 0;
    margin-bottom: 10px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 10px 0;
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 6px;
}

.legal-section p:last-child {
    padding-bottom: 0;
}
.support-container {
    max-width: 960px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #2b2b2b;
}

.support-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 16px;
}

.support-header h2 {
    margin: 0 0 6px 0;
    color: #1a2a3a;
    font-size: 1.8rem;
}

.support-header p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

.btn-create-ticket, .btn-create-ticket-alt {
    background-color: #d4af37;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.2s ease;
    display: inline-block;
}

.btn-create-ticket:hover, .btn-create-ticket-alt:hover {
    background-color: #b89528;
}

/* Empty State */
.support-empty-state {
    text-align: center;
    padding: 60px 20px;
    background: #f8fafc;
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    margin-top: 20px;
}

.empty-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

.support-empty-state h3 {
    color: #1a2a3a;
    margin: 0 0 8px 0;
}

.support-empty-state p {
    color: #64748b;
    max-width: 480px;
    margin: 0 auto 20px auto;
    font-size: 0.95rem;
}

/* Tickets Table */
.support-table-wrapper {
    overflow-x: auto;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.support-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.95rem;
}

.support-table th {
    background-color: #f8fafc;
    color: #475569;
    padding: 14px 18px;
    font-weight: 600;
    border-bottom: 1px solid #e2e8f0;
}

.support-table td {
    padding: 14px 18px;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
}

.support-table tr:last-child td {
    border-bottom: none;
}

/* Status Badges */
.status-pill {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: capitalize;
}

.status-open { background-color: #dbeafe; color: #1e40af; }
.status-in-progress { background-color: #fef3c7; color: #92400e; }
.status-resolved { background-color: #dcfce7; color: #166534; }
.status-closed { background-color: #f1f5f9; color: #64748b; }

.badge-category {
    background: #f1f5f9;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #475569;
}

.btn-view-ticket {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
}

.btn-view-ticket:hover {
    text-decoration: underline;
}

.ticket-nav {
    margin-bottom: 20px;
}

.btn-back-list {
    background: none;
    border: none;
    color: #475569;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    padding: 0;
}

.btn-back-list:hover {
    color: #1e293b;
    text-decoration: underline;
}

.ticket-meta-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 24px;
}

.ticket-meta-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.ticket-meta-header h2 {
    margin: 0;
    font-size: 1.3rem;
    color: #0f172a;
}

.ticket-meta-sub {
    display: flex;
    gap: 20px;
    font-size: 0.88rem;
    color: #64748b;
}

.thread-container {
    margin-bottom: 30px;
}

.thread-container h3 {
    font-size: 1.1rem;
    color: #334155;
    margin-bottom: 16px;
}

.message-bubble {
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
    border: 1px solid #e2e8f0;
}

.original-message {
    background-color: #ffffff;
}

.user-reply {
    background-color: #f0f9ff;
    border-color: #bae6fd;
    margin-left: 20px;
}

.admin-reply {
    background-color: #f0fdf4;
    border-color: #bbf7d0;
    margin-right: 20px;
}

.message-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.message-header .author {
    font-weight: 700;
    color: #1e293b;
}

.message-header .date {
    color: #94a3b8;
}

.message-body {
    font-size: 0.95rem;
    line-height: 1.5;
    white-space: pre-line;
    color: #334155;
}

.reply-form {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 20px;
    border-radius: 8px;
}

.ticket-closed-notice {
    padding: 16px;
    background-color: #f1f5f9;
    border-radius: 6px;
    text-align: center;
    color: #64748b;
}

.textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--blue);
    border-radius: 5px;
}
 /* Card Container */
.profile-card-light {
    padding: 40px 20px 40px;
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.08);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #0f172a;
    background: url(images/mainbg.webp);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

/* Centered 200x200 Avatar */
.profile-header-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 28px;
}

.avatar-frame-large {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    background: #f1f5f9;
    border: 4px solid #ffffff;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 0 0 1px #e2e8f0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.avatar-frame-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -5px rgba(0, 0, 0, 0.15), 0 0 0 2px #d4af37;
}

.avatar-frame-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
}

.avatar-frame-large:hover .avatar-hover-overlay {
    opacity: 1;
}

.avatar-hover-overlay svg {
    width: 26px;
    height: 26px;
    margin-bottom: 4px;
}

/* Nickname Section */
.identity-group {
    margin-top: 16px;
}

.nickname-row {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.nickname-row h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    color: #0f172a;
    padding: 10px 0;
}

.btn-edit-icon {
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    transition: color 0.2s ease;
}

.btn-edit-icon:hover {
    color: #d4af37;
}

.btn-edit-icon svg {
    width: 18px;
    height: 18px;
}

.member-subtitle {
    display: block;
    font-size: 13px;
    color: #64748b;
    margin-top: 10px;
}

/* Promo Card - Light Theme */
.membership-promo-card-light {
    background: linear-gradient(135deg, #fefce8 0%, #fffbeb 100%);
    border: 1px solid #fef08a;
    border-radius: 18px;
    padding: 20px;
    margin-bottom: 24px;
}

.promo-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.promo-badge {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #a16207;
}

.limit-badge {
    font-size: 11px;
    color: #854d0e;
    background: #fef3c7;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 600;
}

.price-headline {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 6px;
}

.price-headline .currency { font-size: 18px; font-weight: 700; color: #0f172a; }
.price-headline .amount { font-size: 32px; font-weight: 800; color: #0f172a; letter-spacing: -1px; }
.price-headline .period { font-size: 13px; color: #64748b; margin-left: 4px; }
.price-strike {font-size: 21px;color: red;text-decoration: line-through;margin-left: 8px;}

.promo-perks {
    font-size: 16px;
    line-height: 1.5;
    color: #334155;
    margin: 0 0 16px 0;
    font-weight: 600;
}

.highlight-seed {
    color: #0284c7;
    font-weight: 700;
}
 
.btn-crown-action svg {
    width: 16px;
    height: 16px;
}

/* Active Membership Bar */
.membership-active-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 16px 20px;
    border-radius: 16px;
    margin-bottom: 24px;
}

.active-badge-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.crown-icon { font-size: 22px; }
.active-title { display: block; font-size: 14px; font-weight: 700; color: #0f172a; }
.active-sub { font-size: 12px; color: #64748b; }

.pill-active {
    background: #dcfce7;
    color: #15803d;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
}

/* Metrics Bar - Light */
.stats-bar-light {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 16px 20px;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-num {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
}

.stat-lbl {
    font-size: 11px;
    color: #64748b;
    margin-top: 2px;
    display: block;
}

.stat-divider {
    width: 1px;
    height: 24px;
    background: #e2e8f0;
}

/* Footer Quote */
.karmic-footer-note {
    text-align: center;
    font-size: 14px;
    color: #94a3b8;
    margin: 20px 0 0 0;
    font-style: italic;
    font-weight: 600;
}

/* Modals Light Styling */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 16px;
}

.modal-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 24px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
    color: #0f172a;
}

.modal-header-sleek {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.modal-header-sleek h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.modal-close-x {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 24px;
    cursor: pointer;
}

.form-group-sleek {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group-sleek label {
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
}

.input-sleek {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 15px;
    color: #0f172a;
    outline: none;
}

.input-sleek:focus {
    border-color: #d4af37;
    background: #ffffff;
}

.modal-actions-sleek {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.profile-wrapper {
    max-width: 480px;
    margin: 0 auto;
    position: relative;
}

.avatar-circle img {
    height: 100%;
    width: 100%;
    border-radius: 100%;
}

.pools-block {
    width: 100%;
    padding: 60px 10px;
    background-color: #f8fafc;
    box-sizing: border-box;
}

.pools-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start; /* Lets cards wrap naturally to content length */
}

/* Anything under 1024px stacks in its own full row */
@media (max-width: 1023px) {
    .pools-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }
}

.pool-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease;
    padding-top: 200px;
    position: relative;
}

.pool-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px -4px rgba(15, 23, 42, 0.12);
    border-color: #cbd5e1;
}

.pool-card.is-active-seeker {
    /* border-color: #a7f3d0; */
}

.pool-hero {
    background-size: cover;
    background-position: center;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* background-image: linear-gradient(180deg, rgba(15, 23, 42, 0.2) 0%, rgb(11 35 94) 100%), url(/images/mainbg.webp); */
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 100%;
    min-height: 200px;
    align-items: center;
}

 
.pct-badge {
    background: var(--aqu);
    color: var(--primary-button);
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

.hero-footer .stat-meta {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.progress-track {
    width: 100%;
    height: 100%;
    background: #00ffff1a;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
}

.progress-fill {
    height: 100%;
    background: var(--aqu);
    transition: width 0.5s ease;
}

.pool-body {}

.rule-badge {
    align-self: flex-start;
    background: var(--bg-subtle);
    border-bottom: 1px solid var(--aqu);
    color: var(--border-focus);
    width: 100%;
    padding: 15px 20px;
    font-weight: 600;
    display: flex;
}

.rule-badge .val {
    color: #2563eb;
    font-weight: 700;
}

.description-text {
    color: var(--primary-button-hover);
    margin: 0;
    line-height: 1.65;
    padding: 20px;
    font-weight: 600;
}

.pool-action-bar {
    padding: 16px 20px;
    background: #fafafa;
    border-top: 1px solid #f1f5f9;
    margin-top: auto;
}

.status-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #047857;
    font-size: 12px;
    font-weight: 500;
    padding: 10px;
    background: #ecfdf5;
    border-radius: 8px;
    border: 1px solid #a7f3d0;
}

.btn-join-pool {
    width: 100%;
    padding: 16px 16px;
    background: var(--blue);
    color: #ffffff;
    border: none;
    border-radius: 105px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-join-pool:hover {
    background: #1d4ed8;
}

.btn-join-pool:active {
    transform: scale(0.99);
}

.no-pools-card {
    text-align: center;
    padding: 40px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px dashed #cbd5e1;
    color: #64748b;
}

svg.seekico {
    fill: none;
    stroke: var(--blue);
}

.flexops {
    display: flex;
    border-top: 1px solid var(--blue);
    border-right: 1px solid var(--blue);
}

.flex1 {
    flex: 1;
}

.flxops {
    justify-content: center;
    align-items: center;
    display: flex;
    height: 40px;
    border-left: 1px solid var(--blue);
    margin-left: 0px;
    margin-bottom: 0;
}

.flxops input {
    position: absolute;
    opacity: 0;
}

.flexopsgroup .flexops:last-child {
    border-bottom: 1px solid var(--blue);
}

.flxops:hover {
    cursor: pointer;
    background: var(--blue);
    color: var(--bg-color);
}

.flxops.selected {
    background: var(--primary-button);
    color: var(--bg-color);
    border: 1px solid var(--primary-button);
}

p.form-subheading.closing {
    padding-top: 20px;
}

.btn-block {
    width: 100%;
}


/* ==========================================
   JO GHOST ENGINE - Seeds Journal Styles
   ========================================== */

.seeds-journal-container {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  max-width: 1000px;
  margin: 0 auto;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Header Section */
.seeds-journal-container h4 {
  font-weight: 700;
  color: #1e293b;
  letter-spacing: -0.02em;
}

/* Table Styling */
.seeds-journal-container .table {
  margin-bottom: 0;
  border-color: #e2e8f0;
  width: 100%;
}

.seeds-journal-container .table thead th {
  background-color: #f8fafc;
  color: #64748b;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  padding: 0.85rem 1rem;
  border-bottom: 2px solid #e2e8f0;
  text-align: left;
}

.seeds-journal-container .table tbody td {
  padding: 0.9rem 1rem;
  vertical-align: middle;
  border-bottom: 1px solid #f1f5f9;
  color: #334155;
  font-size: 0.9rem;
  text-align: left;
}

.seeds-journal-container .table-hover tbody tr:hover {
  background-color: #f8fafc;
  transition: background-color 0.15s ease-in-out;
}

/* Transaction Badges */
.seeds-journal-container .badge {
  font-weight: 500;
  font-size: 0.75rem;
  padding: 1.4em 0.75em;
  border-radius: 6px;
  letter-spacing: 0.02em;
  display: block;
  text-align: left;
}

/* Amount Highlighting */
.seeds-journal-container .text-success {
  color: #10b981 !important; /* Emerald green for deposits */
  text-align: right !important;
}

.seeds-journal-container .table tbody td.text-danger {
  color: #ef4444 !important; /* Crimson red for deductions */
  text-align: right;
}

/* Pagination Styling */
.seeds-journal-container .pagination {
  gap: 4px;
}

.seeds-journal-container .page-item .page-link {
  color: #475569;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  padding: 0.35rem 0.75rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.seeds-journal-container .page-item:not(.active):not(.disabled) .page-link:hover {
  background-color: #f1f5f9;
  color: #0f172a;
  border-color: #cbd5e1;
}

.seeds-journal-container .page-item.active .page-link {
  background-color: #3b82f6;
  border-color: #3b82f6;
  color: #ffffff;
  box-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

.seeds-journal-container .page-item.disabled .page-link {
  background-color: #f8fafc;
  color: #94a3b8;
  border-color: #f1f5f9;
}

/* Mobile Responsive Optimizations */
@media (max-width: 576px) {
  .seeds-journal-container {
    padding: 1rem 0.75rem;
  }

  .seeds-journal-container .table thead {
    display: none; /* Collapses headers for mobile view card layout */
  }

  .seeds-journal-container .table tbody tr {
    display: block;
    margin-bottom: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.5rem;
    background: #ffffff;
  }

  .seeds-journal-container .table tbody td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed #f1f5f9;
    padding: 0.5rem 0.25rem;
  }

  .seeds-journal-container .table tbody td:last-child {
    border-bottom: none;
  }

  .seeds-journal-container .table tbody td::before {
    content: attr(data-label);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #64748b;
  }
}

.seeds-journal-container .table tbody td.text-center.fw-semibold {
    text-align: right;
    font-weight: bold;
}

.two-col-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px; /* Prevents edge touching on small mobile screens */
  box-sizing: border-box;

  /* Mobile-first: Default to 1 column (100% width rows) */
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* 2-Column layout for screens wider than 600px */
@media (min-width: 601px) {
  .two-col-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.col {
  width: 100%;
  box-sizing: border-box;
}

.fix-two-cols {
    padding: 40px 0px;
}

.col.col-bens {
    padding: 0 10px 20px;
}

/* Unique Wrapper & Container Structure */
.bnf-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

.bnf-column-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 24px;
  padding:0 15px;
}

.bnf-title-icon {
    width: 28px;
    height: 28px;
    color: #3b82f6; /* Matching the primary accent blue */
    flex-shrink: 0;
}

/* Unique Grid: 2 Columns above 600px, 100% full width stack below 600px */
.bnf-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

 

/* Pool Card Styling */
.bnf-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bnf-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f1f5f9;
}

.bnf-card-header h4 {
    margin: 0;
    font-size: 1.2rem;
    color: #0f172a;
}

.bnf-badge-pending {
    background: #fef3c7;
    color: #d97706;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    text-transform: uppercase;
}

.bnf-badge-completed {
    background: #d1fae5;
    color: #059669;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    text-transform: uppercase;
}

/* Selection Boxes */
.bnf-selections-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bnf-selection-box {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 16px;
}

.bnf-grant-header {
    color: #475569;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed #cbd5e1;
    padding-bottom: 8px;
}

/* Main Beneficiary Image & Profile */
.bnf-main-beneficiary {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
}

.bnf-avatar-main {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #3b82f6;
    margin-bottom: 8px;
}

.bnf-avatar-placeholder.bnf-main-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    background-position: center center;
    background-size: cover;
}

.bnf-nickname {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
}

.bnf-user-meta {
    font-size: 0.85rem;
    color: #64748b;
}

/* 5 PIF Gifts Sub-Row */
.bnf-pif-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 10px;
}

.bnf-pif-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}

.bnf-pif-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.bnf-avatar-pif {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #10b981;
    margin-bottom: 4px;
}

.bnf-avatar-placeholder.bnf-pif-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    margin-bottom: 4px;
    background-size: cover;
}

.bnf-pif-user {
    font-size: 0.75rem;
    font-weight: 600;
    color: #334155;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.bnf-pif-amount {
    font-size: 0.7rem;
    font-weight: 700;
    color: #059669;
}

.bnf-placeholder-text {
    color: #94a3b8 !important;
    font-style: italic;
}

/* Footer & Historical Round Links */
.bnf-card-footer {
    margin-top: 20px;
    padding-top: 12px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
}

.bnf-btn-round-nav {
    background: none;
    border: none;
    color: #2563eb;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 4px 8px;
}

.bnf-btn-round-nav:hover {
    text-decoration: underline;
}

/* ==========================================================================
   Seed Stream - Modern & Elegant Stream Redesign
   ========================================================================== */

/* 1. Main Unboxed Container */
.stm-wrapper {
    width: 100%;
    background: transparent; /* Removed the surrounding box */
    padding: 0;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* 2. Header & Title */
.stm-column-title {
   display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 24px;
    padding: 0 15px;
}

.stm-title-icon {
    width: 28px;
    height: 28px;
    color: #10b981; /* Emerald green accent */
    filter: drop-shadow(0 2px 4px rgba(16, 185, 129, 0.2));
}

/* 3. Filter Bar (Pill Tabs) */
.stm-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    padding: 0 15px;
}

.stm-filter-btn {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #64748b;
    border-radius: 9999px; /* Pill shape */
    padding: 7px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
    transition: all 0.2s ease-in-out;
}

.stm-filter-btn:hover {
    background: #f8fafc;
    color: #1e293b;
    border-color: #cbd5e1;
    transform: translateY(-1px);
}

.stm-filter-btn.stm-active {
    background: #0f172a; /* Dark charcoal active state */
    color: #ffffff;
    border-color: #0f172a;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

/* 4. Stream Feed Stack */
.stm-feed-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

.stm-empty-feed {
    text-align: center;
    color: #94a3b8;
    padding: 40px 0;
    font-style: italic;
    background: #ffffff;
    border-radius: 16px;
    border: 1px dashed #e2e8f0;
}

/* 5. Individual Stream Post Cards */
.stm-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 16px;
    padding: 20px 0 5px;
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.03), 0 2px 6px -1px rgba(0, 0, 0, 0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    position: relative;
}

.stm-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -4px rgba(0, 0, 0, 0.06), 0 4px 12px -2px rgba(0, 0, 0, 0.03);
    border-color: #cbd5e1;
}

/* Header & Avatar Styling */
.stm-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    padding: 0px 15px 0px 15px;
}

.stm-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 2px solid #ffffff;
    outline: 1px solid #e2e8f0;
    flex-shrink: 0;
}

.stm-user-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 100%;
}

.stm-user-row-1 {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    position: relative;
}

.stm-nickname {
    font-weight: 700;
    font-size: 0.95rem;
    color: #0f172a;
    letter-spacing: -0.01em;
}

.stm-bullet {
    color: #cbd5e1;
    font-size: 0.7rem;
}

.stm-time {
    font-size: 0.78rem;
    color: #94a3b8;
    font-weight: 500;
}

.stm-user-row-2 {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: #64748b;
    padding-top: 1px;
}

.stm-meta-tag {
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #475569;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Pool Badge Tag */
.stm-pool-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #1e40af;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
    border: 1px solid #bfdbfe;
}

/* 6. Post Speech & Text Area */
.stm-post-body {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 16px;
    position: relative;
    color: var(--border-focus);
    margin: 0 5px;
}

.stm-post-text, .stm-post-intro {
    line-height: 1.6;
    margin: 0;
}

.stm-pif-list {
    color: #059669;
    font-weight: 600;
    font-style: normal;
    list-style: decimal;
    list-style-position: inside;
    padding: 15px 0;
}
.stm-pif-list li{padding:2.5px 0;}
.stm-text-net {
    color: #2563eb;
    font-weight: 700;
    font-style: normal;
}

/* Tiered Breakdown List */
.stm-tier-post-list {
    margin: 10px 0 0 0;
    padding-left: 18px;
    line-height: 1.6;
}

.stm-tier-post-list li {
    margin-bottom: 6px;
}

.stm-tier-post-list li strong {
    font-weight: 700;
}

.stm-tier-post-list small {
    color: #059669;
    font-weight: 600;
}

/* 7. Pagination Controls */
.stm-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
    padding: 25px 8px 0 8px;
}

.stm-page-btn {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 8px 16px;
    color: #2563eb;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
    transition: all 0.2s ease;
}

.stm-page-btn:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.stm-page-info {
    font-size: 0.82rem;
    font-weight: 500;
    color: #64748b;
}

span.stm-meta-tag.add-country {
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 0;
    display: inline-flex;
    padding-top: 2px;
}

.stm-country img {
    height: 12px;
    width: 12px;
    display: block;
}

.modal-body small {
    display: block;
    margin-top: -10px;
    color: var(--blue);
    padding-bottom: 20px;
    padding-left: 20px;
}

/* Container & Layout */
.checkout-summary {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Item Card */
.checkout-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 16px;
  backdrop-filter: blur(10px);
}

.checkout-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.checkout-item-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-color);
  letter-spacing: -0.01em;
}

.checkout-badge {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 20px;
  background: rgba(0, 112, 186, 0.2);
  color: #0070ba;
  border: 1px solid rgba(0, 112, 186, 0.3);
}

.checkout-item-desc {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text-muted, rgba(255, 255, 255, 0.65));
}

/* Breakdown Box */
.checkout-breakdown {
  background: var(--bg-subtle);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 20px;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.breakdown-row:last-child {
  margin-bottom: 0;
}

.row-label {
  font-size: 0.9rem;
  color: var(--text-muted, rgba(255, 255, 255, 0.65));
}

.row-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-color, #ffffff);
}

.breakdown-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  margin: 12px 0;
}

.total-row {
  margin-bottom: 0;
}

.total-row .row-label {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-color, #ffffff);
}

.total-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #10b981;
  letter-spacing: -0.02em;
}

/* PayPal Container Frame */
.paypal-container {
  min-height: 150px;
  padding: 0;
}
/* Security Note Banner */
.checkout-security-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 10px;
  padding: 12px 14px;
  margin-top: 16px;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--text-muted, rgba(255, 255, 255, 0.75));
  margin-bottom: 15px;
}

.security-icon {
  width: 18px;
  height: 18px;
  min-width: 18px;
  stroke: #10b981;
  margin-top: 1px;
}

.checkout-security-note a {
  color: #0070ba;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.checkout-security-note a:hover {
  color: #005ea6;
}

.stm-country {
    position: absolute;
    right: 0;
    top: 0;
}
.stm-post-intro strong,
.stm-post-text strong {
    font-weight: 630;
}

.version-tag a {
    font-size: 12px;
    opacity: 0.7;
}

.pool-circles {
    width: 95%;
    display: flex;
    align-items: center;
    border-radius: 100%;
    border: 3px solid var(--border-color);
    border-right: 13px solid var(--aqu);
    justify-content: center;
    
    =: 0px 0px 72px 14px #e6ee9c96;
    aspect-ratio: 1 / 1;
    position: absolute;
    left: 5px;
}

.pool-bg {
    background-image: url(images/shape2.webp);
    height: 12px;
    width: 12px;
    background-size: 30px 30px;
    background-position: center;
    border-radius: 100%;
    background: var(--aqu);
}

.pool-ball {
    position: absolute;
    left: 0;
    z-index: 10;
}

.pool-circle {
    height: 30%;
    width: 30%;
    border-radius: 100%;
    border: 2px solid var(--border-color);
    border-right: 2px solid var(--aqu);
    position: absolute;
    left: -1px;
    display: flex;
    align-items: center;
    justify-content: center;
}
 
 

.hero-footer {
    background: var(--bg-subtle);
    padding: 15px 20px;
    position: relative;
}

.poll-name {
    display: flex;
    font-size: 85px;
    justify-content: center;
    align-items: end;
}

.poll-name>div>b {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.poll-name>div>b>i {
    height: 0;
    width: 0;
    display: block;
    border: 10px solid;
    border-radius: 100px;
    position: relative;
}
.poll-name>div>b>i:before {
    content: "";
    height: 90px;
    position: absolute;
    top: -45px;
    border-radius: 100px;
    border: 1px solid var(--aqu);
    aspect-ratio: 1/1;
    left: -45px;
    transform: scale(1.5);
    z-index: -1;
    opacity: 0.2;
    }
.poll-name>div>b>i:after {
    content: "";
    height: 40px;
    position: absolute;
    top: -20px;
    border-radius: 100px;
    border: 1px solid var(--aqu);
    aspect-ratio: 1/1;
    left: -20px;
    transform: scale(1.5);
    z-index: -1;
    opacity: 0.5;
    }

.pool-circle>strong {font-weight: 500;position: relative;z-index: 2;font-size: 49px;transform: rotate(-4deg);height: 90%;aspect-ratio: 1 / 1;display: flex;align-items: center;justify-content: center;}

.poll-name div {
    display: flex;
    flex-direction: row;
    gap: 10px;
    z-index: 3;
}
.pool-circle>strong:before {
    content: "";
    height: 100%;
    position: absolute;
    z-index: -1;
    background-color: var(--yellow);
    top: 0;
    border-radius: 100px;
    aspect-ratio: 1/1;
}

span.lbl {
    padding-right: 15px;
}

.none-off {
    display: none;
}

.none-off.ison {
    display: block;
}

.profile-card-light:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
    background: #ffffffc7;
}

.headfix {
    height: var(--safe-top);
    background: var(--bg-subtle);
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    right: 0;
}

.btn-icon-2 {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon-2 svg {
    height: 18px;
    width: 18px;
}

button.btn-secondary.switch-to-signup {
    background: var(--aqu);
    border: 1px solid var(--aqu);
}

.modal-header.wfx {
    padding: 15px;
}

.wfx .modal-icon {
    margin: 0px;
}

.order-completed h1, .order-completed h2 {
    padding: 10px 20px;
    text-align: center;
}

.order-completed span.crowned {
    display: block;
    font-size: 60px;
}

.order-completed p {
    padding: 15px 15px 40px;
    text-align: center;
}

.multi-note {
    padding: 10px;
    background: #e2e2dc4a;
    border-radius: 100px;
    font-size: 14px;
    display: inline-block;
    padding-right: 15px;
    margin-top: 15px;
    font-weight: 400;
}