/* Login / register screen, drag-drop overlay — index/auth.css */

/* ─────────────────────────────────────────────
   KEYFRAMES
───────────────────────────────────────────── */
@keyframes auth-orb-float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(40px, -60px) scale(1.08); }
  66%       { transform: translate(-30px, 30px) scale(0.95); }
}
@keyframes auth-orb-float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(-50px, 40px) scale(1.1); }
  80%       { transform: translate(30px, -50px) scale(0.92); }
}
@keyframes auth-orb-float-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(60px, 40px) scale(1.06); }
}
@keyframes auth-orb-float-4 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  45%       { transform: translate(-40px, -50px) scale(1.12); }
}
@keyframes auth-box-in {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes auth-left-in {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes auth-feat-in {
  from { opacity: 0; transform: translateX(-16px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes btn-shine {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(99,102,241,0.4); }
  70%  { box-shadow: 0 0 0 10px rgba(99,102,241,0); }
  100% { box-shadow: 0 0 0 0 rgba(99,102,241,0); }
}
@keyframes regSuccessPop {
  from { opacity: 0; transform: scale(0.4); }
  to   { opacity: 1; transform: scale(1); }
}

/* ─────────────────────────────────────────────
   CSS VARIABLE OVERRIDES (light theme scope)
───────────────────────────────────────────── */
#auth-screen {
  --accent:        #4f46e5;
  --accent-hover:  #6366f1;
  --bg-primary:    #eef2ff;
  --bg-secondary:  #ffffff;
  --bg-tertiary:   #f1f5f9;
  --border:        #dde3ef;
  --text-primary:  #0f172a;
  --text-secondary:#475569;
  --text-muted:    #94a3b8;
}

/* ─────────────────────────────────────────────
   SCREEN WRAPPER
───────────────────────────────────────────── */
#auth-screen {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 20050;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(150deg, #eef2ff 0%, #f5f3ff 50%, #eff6ff 100%);
}
#auth-screen.active { display: flex; }

/* ─────────────────────────────────────────────
   ANIMATED BACKGROUND ORBS
───────────────────────────────────────────── */
.auth-bg-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.auth-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.auth-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(99,102,241,0.22) 0%, rgba(99,102,241,0) 70%);
  top: -120px; left: -100px;
  animation: auth-orb-float-1 18s ease-in-out infinite;
}
.auth-orb-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(139,92,246,0.16) 0%, rgba(139,92,246,0) 70%);
  bottom: -200px; right: -150px;
  animation: auth-orb-float-2 22s ease-in-out infinite;
}
.auth-orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(14,165,233,0.14) 0%, rgba(14,165,233,0) 70%);
  top: 40%; left: 30%;
  animation: auth-orb-float-3 26s ease-in-out infinite;
}
.auth-orb-4 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(236,72,153,0.10) 0%, rgba(236,72,153,0) 70%);
  top: 50%; right: 20%;
  animation: auth-orb-float-4 20s ease-in-out infinite;
}

/* ─────────────────────────────────────────────
   SPLIT LAYOUT
───────────────────────────────────────────── */
.auth-split {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  height: 100%;
}

/* ─────────────────────────────────────────────
   LEFT BRAND PANEL
───────────────────────────────────────────── */
.auth-left-panel {
  display: none;
  flex: 0 0 46%;
  max-width: 46%;
  padding: 48px 52px;
  position: relative;
  overflow: hidden;
  align-items: center;
  justify-content: center;
}

@media (min-width: 900px) {
  .auth-left-panel {
    display: flex;
    animation: auth-left-in 0.6s cubic-bezier(0.22,1,0.36,1) both;
  }
}

.auth-left-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg,
    #4338ca 0%,
    #5b21b6 40%,
    #4f46e5 70%,
    #7c3aed 100%);
  border-right: none;
}

.auth-left-inner {
  position: relative;
  z-index: 1;
  max-width: 420px;
  width: 100%;
  font-family: 'Vazirmatn', sans-serif;
}

.auth-left-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 56px;
}
.auth-left-logo-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  flex-shrink: 0;
}
.auth-left-logo-name {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.auth-left-title {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.auth-left-title span {
  color: #a5f3fc;
  background: linear-gradient(135deg, #a5f3fc, #e0e7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.auth-left-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin: 0 0 48px;
}

.auth-left-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 48px;
}
.auth-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  animation: auth-feat-in 0.5s cubic-bezier(0.22,1,0.36,1) both;
}
.auth-feat-item:nth-child(2) { animation-delay: 0.08s; }
.auth-feat-item:nth-child(3) { animation-delay: 0.16s; }

.auth-feat-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 12px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: #ffffff;
  transition: transform 0.2s, background 0.2s;
}
.auth-feat-item:hover .auth-feat-icon {
  transform: scale(1.1);
  background: rgba(255,255,255,0.25);
}
.auth-feat-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 2px;
}
.auth-feat-text strong {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  display: block;
}
.auth-feat-text span {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
}

.auth-left-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: #ffffff;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  padding: 6px 14px;
}

/* ─────────────────────────────────────────────
   RIGHT FORM PANEL
───────────────────────────────────────────── */
.auth-right-panel {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 32px 16px;
  display: flex;
  flex-direction: column;
}

/* ─────────────────────────────────────────────
   AUTH BOX (GLASSMORPHISM CARD)
───────────────────────────────────────────── */
.auth-box {
  margin: auto;
  width: 100%;
  max-width: 500px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(99,102,241,0.12);
  border-radius: 24px;
  padding: 36px 32px 28px;
  box-shadow:
    0 2px 4px rgba(100,116,139,0.06),
    0 8px 24px rgba(99,102,241,0.08),
    0 24px 56px rgba(100,116,139,0.14);
  animation: auth-box-in 0.55s cubic-bezier(0.22,1,0.36,1) both;
}

/* Logo header — always visible; JS updates auth-title & auth-subtitle dynamically */
.auth-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
/* On desktop the left panel provides the big branding — keep auth-logo compact */
@media (min-width: 900px) {
  .auth-logo { margin-bottom: 24px; }
  .auth-logo-text h1 { font-size: 17px; }
}

.auth-logo-icon {
  width: 44px; height: 44px; border-radius: 14px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: #fff; flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(79,70,229,0.35);
}
.auth-logo-text h1 {
  font-size: 19px; font-weight: 800;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin: 0 0 2px; line-height: 1.2;
}
.auth-logo-text p { color: var(--text-muted); margin: 0; font-size: 12px; }

/* Desktop-only form heading — removed; auth-logo handles the title on all sizes */

/* ─────────────────────────────────────────────
   ERROR BANNER
───────────────────────────────────────────── */
.auth-error {
  color: #f87171;
  font-size: 13px;
  margin-bottom: 12px;
  background: rgba(248,113,113,0.08);
  border: 1px solid rgba(248,113,113,0.22);
  border-radius: 10px;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.auth-error:not(:empty) {
  padding: 10px 13px;
  max-height: 80px;
}

/* ─────────────────────────────────────────────
   FIELDS GROUP
───────────────────────────────────────────── */
.auth-fields-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 4px;
}

.auth-field { }
.auth-row { display: flex; gap: 10px; }
.auth-row .auth-field { flex: 1; }

.auth-field-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}
.auth-req { color: #f87171; }

/* ─────────────────────────────────────────────
   INPUTS
───────────────────────────────────────────── */
.auth-box input,
.auth-recovery-form input {
  width: 100%;
  padding: 11px 36px 11px 14px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: #f8fafc;
  color: var(--text-primary);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  box-sizing: border-box;
}
.auth-box input:focus,
.auth-recovery-form input:focus {
  border-color: #6366f1;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(99,102,241,0.12), 0 1px 4px rgba(99,102,241,0.08);
}
.auth-box input::placeholder,
.auth-recovery-form input::placeholder { color: #c0cce0; }

/* Icon-prefixed inputs */
.field-icon-wrap { position: relative; display: block; }
.field-icon-wrap input { padding-left: 40px; }

.field-prefix-icon {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 13px;
  pointer-events: none;
  transition: color 0.2s;
  z-index: 1;
}
.field-icon-wrap:focus-within .field-prefix-icon { color: var(--accent); }

/* Valid state */
.auth-box input.field-valid {
  border-color: #4ade80 !important;
  box-shadow: 0 0 0 3px rgba(74,222,128,0.12) !important;
}

/* Field-level check mark */
.field-wrap { position: relative; display: block; }
.field-wrap input { width: 100%; box-sizing: border-box; padding-right: 32px; }
.field-check {
  position: absolute; right: 11px; top: 50%;
  transform: translateY(-50%) scale(0.6);
  color: #4ade80; font-size: 12px; pointer-events: none;
  opacity: 0; transition: opacity 0.2s, transform 0.2s;
}
input.field-valid ~ .field-check { opacity: 1; transform: translateY(-50%) scale(1); }

/* icon-wrap + field-wrap combined (username field) */
.field-icon-wrap .field-check { right: 11px; }
.field-icon-wrap.pw-wrap .field-check { right: 38px; }

.auth-field-error {
  color: #f87171;
  font-size: 11px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease, padding 0.2s ease;
  border-radius: 6px;
}
.auth-field-error:not(:empty) {
  max-height: 40px;
  padding: 4px 9px;
  background: rgba(248,113,113,0.08);
  border: 1px solid rgba(248,113,113,0.1);
  margin-top: 5px;
}

/* Password wrap */
.pw-wrap { position: relative; display: block; }
.pw-wrap input {
  padding-right: 40px !important;
  width: 100%;
  box-sizing: border-box;
}
.pw-wrap.field-icon-wrap input { padding-left: 40px; }
.pw-eye {
  position: absolute; right: 10px; top: 50%;
  transform: translateY(-50%);
  background: none; border: none;
  color: var(--text-muted); cursor: pointer;
  padding: 4px; font-size: 14px; line-height: 1;
  transition: color 0.15s;
}
.pw-eye:hover { color: var(--text-secondary); }

/* ─────────────────────────────────────────────
   PRIMARY BUTTON
───────────────────────────────────────────── */
.btn-primary {
  width: 100%;
  padding: 13px 20px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, #4f46e5 0%, #6366f1 50%, #7c3aed 100%);
  background-size: 200% auto;
  color: white;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background-position 0.4s ease, transform 0.2s, box-shadow 0.2s;
  margin-top: 20px;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 20px rgba(79,70,229,0.35);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.14) 50%, transparent 60%);
  background-size: 200% 100%;
  background-position: -200% center;
  transition: background-position 0.5s ease;
}
.btn-primary:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(79,70,229,0.45);
}
.btn-primary:hover::after { background-position: 200% center; }
.btn-primary:active { transform: translateY(0); box-shadow: 0 4px 14px rgba(79,70,229,0.28); }
.btn-primary:disabled {
  cursor: wait;
  opacity: 0.78;
  transform: none;
  box-shadow: 0 4px 14px rgba(79,70,229,0.2);
}
.btn-primary:disabled::after { display: none; }
.btn-primary:focus-visible,
.pw-eye:focus-visible,
.auth-toggle-link:focus-visible,
.auth-recovery-link:focus-visible,
.auth-recovery-back:focus-visible,
.auth-recovery-method:focus-visible {
  outline: 3px solid rgba(99,102,241,0.24);
  outline-offset: 2px;
}

/* note: .btn-primary-text / .btn-primary-icon spans not used; button text set directly by JS */

/* ─────────────────────────────────────────────
   MODE TOGGLE & FOOTER
───────────────────────────────────────────── */
.auth-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  text-align: center;
  margin-top: 18px;
  color: var(--text-secondary);
  font-size: 13px;
}
.auth-toggle-link {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  color: var(--accent);
  cursor: pointer;
  text-decoration: none;
  font-weight: 700;
  font: inherit;
  transition: opacity 0.15s;
}
.auth-toggle-link:hover { opacity: 0.8; text-decoration: underline; }

.auth-footer-row {
  text-align: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(99,102,241,0.1);
}
.auth-lang-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: 9px;
  color: var(--text-secondary);
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  padding: 7px 16px;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.auth-lang-btn:hover {
  border-color: #6366f1;
  color: #4f46e5;
  background: rgba(99,102,241,0.06);
}

/* ─────────────────────────────────────────────
   SELECT ELEMENTS (country code pickers)
───────────────────────────────────────────── */
.auth-box select,
.auth-recovery-form select {
  padding: 11px 12px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: #f8fafc;
  color: var(--text-primary);
  font-size: 13px;
  font-family: inherit;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.auth-box select:focus,
.auth-recovery-form select:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99,102,241,0.12);
}

/* ─────────────────────────────────────────────
   ACCOUNT RECOVERY SECTION
───────────────────────────────────────────── */
.auth-recovery-shell {
  margin-top: 12px;
  text-align: center;
}
.auth-recovery-link {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  font-size: 12px;
  color: #6366f1;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  font-family: inherit;
  transition: color 0.15s;
  border-bottom: 1px dashed rgba(99,102,241,0.35);
}
.auth-recovery-link:hover { color: #4f46e5; }

.auth-recovery-panel {
  margin-top: 14px;
  text-align: start;
}
.auth-recovery-head {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.auth-recovery-back {
  background: none; border: none;
  cursor: pointer; color: var(--text-muted);
  padding: 4px; font-size: 16px; line-height: 1;
  border-radius: 8px; transition: color 0.15s, background 0.15s;
  margin-top: 1px;
}
.auth-recovery-back:hover { color: var(--text-primary); background: rgba(99,102,241,0.08); }

.auth-recovery-title { font-size: 14px; font-weight: 700; color: var(--text-primary); }
.auth-recovery-subtitle { font-size: 12px; color: var(--text-muted); margin-top: 3px; line-height: 1.6; }

.auth-recovery-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
.auth-recovery-method {
  border: 1.5px solid var(--border);
  background: #f8fafc;
  color: var(--text-secondary);
  border-radius: 10px;
  padding: 9px 11px;
  font-size: 12px;
  font-family: inherit;
  cursor: pointer;
  text-align: start;
  line-height: 1.5;
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.15s;
}
.auth-recovery-method:hover {
  border-color: rgba(99,102,241,0.5);
  color: var(--text-primary);
  transform: translateY(-1px);
  background: rgba(99,102,241,0.05);
}
.auth-recovery-method.active {
  border-color: #6366f1;
  background: rgba(99,102,241,0.08);
  color: #4f46e5;
  font-weight: 600;
}

.auth-recovery-card {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
}
.auth-recovery-caption {
  font-size: 12px; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 12px;
}
.auth-recovery-form { display: block; }

.auth-recovery-phone-row {
  display: flex; gap: 8px; direction: ltr;
}
.auth-recovery-cc {
  min-width: 110px; max-width: 132px; flex-shrink: 0;
  cursor: pointer;
}
.auth-recovery-hint {
  font-size: 11px; color: var(--text-muted);
  line-height: 1.6; margin-top: 6px;
}
.auth-recovery-btn { margin-top: 14px; width: 100%; }

.auth-recovery-feedback {
  display: none;
  margin-top: 12px; padding: 10px 12px;
  border-radius: 10px; font-size: 12px;
  line-height: 1.7; border: 1px solid transparent;
}
.auth-recovery-feedback.success {
  display: block;
  background: rgba(34,197,94,0.07);
  border-color: rgba(34,197,94,0.2); color: #15803d;
}
.auth-recovery-feedback.error {
  display: block;
  background: rgba(248,113,113,0.07);
  border-color: rgba(248,113,113,0.2); color: #dc2626;
}
.auth-recovery-suggestions {
  display: none; flex-wrap: wrap; gap: 8px; margin-top: 10px;
}
.auth-recovery-suggestions.visible { display: flex; }
.auth-recovery-suggestion {
  border: 1px solid rgba(99,102,241,0.25);
  background: rgba(99,102,241,0.06);
  color: #4f46e5; border-radius: 999px;
  padding: 7px 12px; font-size: 11px;
  font-family: inherit; cursor: pointer;
  transition: background 0.15s;
}
.auth-recovery-suggestion:hover { background: rgba(99,102,241,0.12); }

/* ─────────────────────────────────────────────
   RESPONSIVE OVERRIDES
───────────────────────────────────────────── */
@media (max-width: 480px) {
  .auth-box {
    border-radius: 20px;
    padding: 28px 20px 22px;
  }
  .auth-right-panel { padding: 16px 12px; }
  .auth-recovery-methods { grid-template-columns: 1fr; }
  .auth-recovery-phone-row { flex-direction: column; }
  .auth-recovery-cc { min-width: 100%; max-width: 100%; }
  .auth-row { flex-direction: column; gap: 14px; }
}

@media (min-width: 481px) and (max-width: 899px) {
  .auth-box { max-width: 460px; }
}

    /* ============ DRAG & DROP OVERLAY ============ */
    #chat-drop-overlay {
      display: none;
      position: absolute;
      inset: 0;
      z-index: 9500;
      background: rgba(6, 14, 34, 0.82);
      backdrop-filter: blur(6px);
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 14px;
      pointer-events: none;
      border: 3px dashed rgba(34, 211, 238, 0.55);
      border-radius: 0;
      transition: opacity 0.15s ease;
    }
    #chat-drop-overlay.active {
      display: flex;
      pointer-events: auto;
    }
    .drop-overlay-icon {
      font-size: 52px;
      color: rgba(34, 211, 238, 0.85);
      animation: drop-bounce 0.9s ease-in-out infinite alternate;
    }
    @keyframes drop-bounce {
      from { transform: translateY(0); }
      to   { transform: translateY(-10px); }
    }
    .drop-overlay-title {
      font-size: 20px;
      font-weight: 700;
      color: rgba(226, 232, 240, 0.95);
      letter-spacing: 0.02em;
    }
    .drop-overlay-sub {
      font-size: 13px;
      color: rgba(148, 163, 184, 0.85);
    }

