.formulaire-recherche-document{
    padding: 15px 15px;
    border: none !important;
}

.formulaire-recherche-document .container-search{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
     position: relative;
     border: none !important;
}

.formulaire-recherche-document .container-search > div{
    display: flex;
    flex-direction: column;
    position: relative;
}


.formulaire-recherche-document .container-search > div select{
    font-family: 'Gill Sans', sans-serif; flex: 1;
     border: 2px solid #ddd; padding: 10px;
         /* Supprime la bordure */
    outline: none;     /* Supprime le contour lors du focus */
    background: transparent; /* Optionnel : rend l'arrière-plan transparent */
    appearance: none;  /* Supprime le style par défaut du navigateur (facultatif) */
}

.formulaire-recherche-document .container-search .item-form{
    display: none !important;
}

select:hover,
select:focus {
  background: #ddd;
}
select::picker-icon {
  color: #999;
  transition: 0.4s rotate;
}
select:open::picker-icon {
  rotate: 180deg;
}
::picker(select) {
  border: none;
}
option {
  display: flex;
  justify-content: flex-start;
  gap: 20px;

  border: 2px solid #ddd;
  background: #eee;
  padding: 10px;
  transition: 0.4s;
}
option:first-of-type {
  border-radius: 8px 8px 0 0;
}

option:last-of-type {
  border-radius: 0 0 8px 8px;
}

option:not(option:last-of-type) {
  border-bottom: none;
}
option:nth-of-type(odd) {
  background: #fff;
}

option:hover,
option:focus {
  background: plum;
}
option .icon {
  font-size: 1.6rem;
  text-box: trim-both cap alphabetic;
}
selectedcontent .icon {
  display: none;
}
option:checked {
  font-weight: bold;
}
option::checkmark {
  order: 1;
  margin-left: auto;
  content: "☑️";
}
::picker(select) {
  opacity: 0;
  transition: all 0.4s allow-discrete;
}
::picker(select):popover-open {
  opacity: 1;
}
@starting-style {
  ::picker(select):popover-open {
    opacity: 0;
  }
}
::picker(select) {
  top: calc(anchor(bottom) + 1px);
  left: anchor(10%);
}


