/* Combo buscable (registro). Calca el estilo de .campo input/select. */
.cb{ position:relative }
.cb-input{ width:100%; font-family:var(--body); font-size:17px; color:var(--tiza);
  background:rgba(0,20,44,.7); border:1px solid rgba(237,242,247,.2); border-radius:13px;
  padding:15px 16px; transition:border-color .2s ease, box-shadow .2s ease }
.cb-input::placeholder{ color:rgba(147,174,198,.55) }
.cb-input:focus{ outline:0; border-color:var(--azul); box-shadow:0 0 0 3px rgba(30,107,255,.25) }
.cb-list{ position:absolute; z-index:40; left:0; right:0; top:calc(100% + 6px); max-height:260px;
  overflow-y:auto; margin:0; padding:6px; list-style:none; border-radius:13px;
  background:#00284d; border:1px solid rgba(237,242,247,.18);
  box-shadow:0 20px 50px -20px rgba(0,0,0,.7) }
.cb-opt{ padding:10px 12px; border-radius:9px; cursor:pointer; font-size:15px; color:var(--tiza); line-height:1.35 }
.cb-opt:hover, .cb-opt.on{ background:rgba(30,107,255,.2) }
.cb-list::-webkit-scrollbar{ width:9px }
.cb-list::-webkit-scrollbar-thumb{ background:rgba(237,242,247,.18); border-radius:9px; border:2px solid #00284d }
