.vcc-hidden{display:none!important}

.vcc-banner{
  position:fixed;
  left:16px;
  right:16px;
  bottom:16px;
  z-index:99999;
  background:#ffffff;
  border:1px solid rgba(12,46,78,.15);
  border-radius:18px;
  box-shadow:0 20px 60px rgba(0,0,0,.16);
  overflow:hidden;
}

.vcc-banner__inner{
  display:flex;
  gap:16px;
  align-items:flex-start;
  justify-content:space-between;
  padding:16px 18px;
}

.vcc-title{font-weight:800;color:#0C2E4E;font-size:16px;line-height:1.2;margin:0 0 6px 0}
.vcc-text{color:rgba(12,46,78,.82);font-size:13.5px;line-height:1.45;margin:0}
.vcc-text a{color:#0C2E4E;text-decoration:underline;text-underline-offset:3px}

.vcc-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:flex-end;
  align-items:center;
  min-width:260px;
}

.vcc-btn{
  appearance:none;
  border:1px solid rgba(12,46,78,.20);
  background:#fff;
  color:#0C2E4E;
  border-radius:14px;
  padding:10px 14px;
  font-weight:700;
  cursor:pointer;
  font-size:13px;
  line-height:1;
}

.vcc-btn:hover{filter:brightness(.98)}
.vcc-btn:focus{outline:2px solid rgba(148,214,238,.9); outline-offset:2px}

.vcc-btn--primary{
  background:#0C2E4E;
  border-color:#0C2E4E;
  color:#fff;
}

.vcc-btn--ghost{
  background:rgba(148,214,238,.18);
  border-color:rgba(148,214,238,.45);
}

.vcc-modal{
  position:fixed;
  inset:0;
  z-index:100000;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px;
}

.vcc-modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.52);
}

.vcc-modal__panel{
  position:relative;
  width:min(720px, 100%);
  background:#fff;
  border-radius:22px;
  box-shadow:0 30px 90px rgba(0,0,0,.30);
  border:1px solid rgba(12,46,78,.12);
  overflow:hidden;
}

.vcc-modal__header{
  padding:16px 18px;
  background:linear-gradient(135deg, rgba(148,214,238,.55), rgba(148,214,238,.15));
  border-bottom:1px solid rgba(12,46,78,.10);
}

.vcc-modal__header h3{margin:0;color:#0C2E4E;font-size:18px;font-weight:800}
.vcc-modal__header p{margin:6px 0 0 0;color:rgba(12,46,78,.8);font-size:13.5px;line-height:1.45}

.vcc-modal__body{padding:16px 18px}

.vcc-row{
  display:flex;
  gap:14px;
  align-items:flex-start;
  justify-content:space-between;
  padding:14px 12px;
  border:1px solid rgba(12,46,78,.10);
  border-radius:16px;
  margin-bottom:12px;
}

.vcc-row strong{display:block;color:#0C2E4E}
.vcc-row small{display:block;color:rgba(12,46,78,.75);margin-top:4px;line-height:1.4}

.vcc-toggle{
  display:flex;
  align-items:center;
  gap:10px;
  user-select:none;
}

.vcc-toggle input{
  width:44px;
  height:26px;
  border-radius:999px;
  appearance:none;
  background:rgba(12,46,78,.18);
  position:relative;
  outline:none;
  cursor:pointer;
  border:1px solid rgba(12,46,78,.18);
}

.vcc-toggle input:disabled{opacity:.5;cursor:not-allowed}

.vcc-toggle input:before{
  content:'';
  position:absolute;
  top:2px;
  left:2px;
  width:22px;
  height:22px;
  border-radius:999px;
  background:#fff;
  box-shadow:0 8px 20px rgba(0,0,0,.15);
  transition:transform .18s ease;
}

.vcc-toggle input:checked{background:#0C2E4E;border-color:#0C2E4E}
.vcc-toggle input:checked:before{transform:translateX(18px)}

.vcc-modal__footer{
  padding:14px 18px;
  border-top:1px solid rgba(12,46,78,.10);
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:flex-end;
}

.vcc-close{
  position:absolute;
  top:10px;
  right:10px;
  border:0;
  background:rgba(255,255,255,.75);
  border:1px solid rgba(12,46,78,.15);
  width:38px;
  height:38px;
  border-radius:999px;
  cursor:pointer;
  display:grid;
  place-items:center;
  color:#0C2E4E;
  font-weight:900;
}

.vcc-close:hover{background:#fff}

@media (min-width: 900px){
  .vcc-banner{left:24px;right:24px;bottom:24px}
  .vcc-title{font-size:17px}
  .vcc-text{font-size:14px}
}

@media (max-width: 680px){
  .vcc-banner__inner{flex-direction:column;align-items:stretch}
  .vcc-actions{min-width:0;justify-content:flex-start}
  .vcc-btn{flex:1}
}
