.hide{
    display: none !important;
}
.invisible{
    visibility: hidden !important;
}

.select2{
    width: 100%!important;
}
.select2-selection--multiple {
    display: flexbox !important;
    flex-wrap: wrap !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    min-height: 38px;
    /* Ajusta según tu diseño */
}

.select2-selection__choice {
    margin-right: 4px;
    white-space: wrap;
}

    
.divError ul {
    list-style-type: none;
    padding-left: 0; /* Opcional: elimina sangría */
    color: brown;
}
.divError li:not(:first-child) {
    display: none;
}

.cursor {
    cursor: pointer !important;
}



  .bg-blink {
    animation: parpadeo 3s linear infinite;
  }
  @keyframes parpadeo {
    0%   { background-color: #00b10c; }   /* Azul Bootstrap */
    50%  { background-color: #ffffff; }   /* Blanco */
    100% { background-color: #00b10c; }
  }

  /* Solo en móviles (ej. <576px en Bootstrap) */
@media (max-width: 576px) {
    .bg-blanco-75 {
      opacity: 85%; /* blanco con 75% opacidad */
    }
  }
  