/*                                         */
/* Hack bug affichage select2 dans dlg BKO */
/*                                         */
.select2-container--open {
  z-index: 9999;
}
/*                                        */
/* liste de sélection "modale" sur mobile */
/*                                        */

@media (max-height: 500px)
{

  .select2-container--open {
    display: block;
  }
  
  .select2-container--open .select2-dropdown {
      left: 0;
      position: fixed;
      top: 0;
      width: 100% !important;
      height: calc(100% - 2.5rem);
  }
  
  .select2-container--open .select2-selection {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2.5rem;
    padding-top: .5rem;
  }
  
  .select2-container--open .select2-results > .select2-results__options {
    max-height: unset;
  }
}



/*                                                    */
/* Prise en charge du feedback des états "chargement" */
/* "indef", "vide", etc...                            */
/*                                                    */

.autocomp-chargement  .select2-selection
{
  background-image: url("../../images/ajax-charge-petit.gif");
  background-position: right .4rem center;;
  background-repeat: no-repeat;
}

.autocomp-chargement .select2-selection__rendered
{
  display: none !important;
}

.autocomp-chargement .select2-selection__arrow { display: none; }

