
:root{
  --cfa360-loader-z: 2147483000;
  --cfa360-loader-bg: rgba(255,255,255,.72);
  --cfa360-loader-card: rgba(255,255,255,.94);
  --cfa360-loader-border: rgba(0,59,113,.10);
  --cfa360-loader-text: #183b6b;
  --cfa360-loader-subtext: #61789d;
}

.cfa360-loading-overlay{
  position: fixed;
  inset: 0;
  z-index: var(--cfa360-loader-z);
  display: none;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255,255,255,.18), rgba(255,255,255,.28));
  backdrop-filter: blur(1.5px);
}
.cfa360-loading-overlay.is-visible{ display:flex; }
.cfa360-loading-card{
  width: min(360px, calc(100vw - 32px));
  border-radius: 18px;
  padding: 16px 18px 14px;
  background: var(--cfa360-loader-card);
  border: 1px solid var(--cfa360-loader-border);
  box-shadow: 0 16px 40px rgba(14,40,84,.14);
}
.cfa360-loading-head{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:10px;
}
.cfa360-loading-spinner{
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2.5px solid rgba(0,59,113,.16);
  border-top-color: #0a63c9;
  animation: cfa360-spin .85s linear infinite;
  flex: 0 0 auto;
}
.cfa360-loading-title{
  margin:0;
  font-size: .98rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--cfa360-loader-text);
}
.cfa360-loading-subtitle{
  margin:3px 0 0;
  font-size: .84rem;
  line-height: 1.35;
  color: var(--cfa360-loader-subtext);
}
.cfa360-loading-track{
  position: relative;
  overflow: hidden;
  height: 8px;
  border-radius: 999px;
  background: #ebf2fb;
  border: 1px solid rgba(0,59,113,.08);
}
.cfa360-loading-bar{
  position: absolute;
  inset: 0 auto 0 -35%;
  width: 35%;
  border-radius: inherit;
  background: linear-gradient(90deg, #7ab2ff 0%, #1f73db 55%, #0a63c9 100%);
  animation: cfa360-loader-slide 1.15s ease-in-out infinite;
}
.cfa360-loading-meta{
  margin-top:8px;
  display:flex;
  justify-content:space-between;
  gap:10px;
  font-size:.74rem;
  color: var(--cfa360-loader-subtext);
}
body.cfa360-loading-active{
  cursor: progress;
}

@keyframes cfa360-loader-slide{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(390%); }
}
@keyframes cfa360-spin{ to{ transform: rotate(360deg); } }

@media (max-width: 700px){
  .cfa360-loading-card{ width: min(330px, calc(100vw - 22px)); padding: 14px 14px 12px; border-radius:16px; }
  .cfa360-loading-title{ font-size: .93rem; }
  .cfa360-loading-subtitle{ font-size:.79rem; }
}
