.myStyle_BIGBox {
    display: flex;
    flex-wrap: wrap;
}

.work__container.grid {
  gap: 0.75rem 1rem;
}

.boite {
  margin-top: 8px;
}
  
.boite.expande {
  width: 900px;
  height: 600px;
  padding: 0;
  transition: width 0.3s ease, height 0.3s ease, box-shadow 0.3s ease;
}

/* Panneau messages ouvert (split doc + chat) : carte plus large */
.boite.expande.boite--chat-open {
  width: min(1240px, 96vw);
  max-width: 96vw;
}

.footer_card {
  margin-top: auto; /* Pour pousser le pied de page vers le bas, en bas de la boîte */
}

.boite a{
  /* background-color: red; */
}

.profile_img {
      max-height: 150px;
      position: relative;
      top: 0;
      margin: 0 auto 0 auto;
}


.bar-info {
  margin: auto;
  display: flex;
  flex-direction: row;
  /* flex-wrap: wrap; */
  justify-content: center;
  width: 500px;
  max-width: 700px;
  height: 50px;
  /* background-color: rgb(167, 44, 44); */
}



.counttools {
  width: 120px;
  padding: 14px;

  border-radius: 10px;
  background-color: rgba(50, 140, 200, 1);
  color: #000;

  justify-content: center;
  align-items: center;
  text-align: center;
  
}


.searchBar {
  display: flex;

  /* margin: auto; */

  width: 250px;
  height: 100%;
  background-color: rgba(50, 140, 200, 1);
  border-radius: 10px;

  padding: 20px;
  justify-content: center;
  align-items: center;
}

.searchBar span {
  position: relative;
  padding: 0px 10px 0 0;
  /* background: red; */
}

.search-input {
  width: 200px;
  height: 30px;
  border-radius: 5px;

  background-color: whitesmoke;
  color: black;
}





.boxSearch{
  position: relative;
  margin-left: 20px;

  display: flex;
  justify-content: center;
}


.boxSearch input {
  padding: 10px;
  width: 50px;
  height: 50px;
  background: none;
  border: 4px solid rgba(50, 140, 200, 1);
  border-radius: 50px;
  box-sizing: border-box;
  font-size: 17px;
  color: rgba(50, 140, 200, 1);
  outline: none;
  transition: .5s;
}



.boxSearch:hover input,
.boxSearch:focus-within input{
  width: 300px;
  background: rgba(15, 23, 42, 0.75);
  color: #e5e7eb;
  border-radius: 10px;
}
.boxSearch i{
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translate(-50%,-50%);
  font-size: 26px;
  color: rgba(50, 140, 200, 1);
  transition: .2s;
}
.boxSearch:hover i,
.boxSearch:focus-within i{
  opacity: 0;
  z-index: -1;
}
.boxSearchFinder input {
  width: 100%;
}
.boxSearchFinder i {
  left: 50%;
  text-align: center;
  /* background-color: red; */
}
/* .boxSearchFinder {
  min-width: 200px;
  margin: 20px 0 00px;
} */
.iSearchFinder {
  width: 100%;
  max-height: 80%;
}

.GroupAddTools {
  margin-right: 20px;  
  padding: 10px;
  width: 50px;
  height: 50px;
  background: none;
  border: 4px solid rgba(50, 140, 200, 1);
  border-radius: 50px;
  box-sizing: border-box;
  font-size: 17px;
  color: rgba(50, 140, 200, 1);
  outline: none;
  transition: .5s;
}

.GroupAddTools:hover{
  cursor:pointer;
}

.GroupAddTools i{
  margin: auto;
  font-size: 23px;

}

.typeToolsTitle {
  position: relative;
  justify-content: center;
  color: rgba(255, 255, 255, 1);
  padding: 0px 40px 0px 40px;
  border-radius: 50px 50px 0px 0px;
  background-color:  #151C28;
  /* background-color:  #1b60d8; */
  font-size: 20px;
  margin: -40px auto 0px auto;
  z-index: 999;
}

.work__filters {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 600px) {
  .bar-info {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 300px;
  }
  .work__container {
    margin-top: 30px;
  }

  .boxSearchFinder {
    margin-top: 10px;
  }

  .boxSearch input {
    width: 260px;
    border-radius: 12px;
  }
  .boxSearch i{
    display: none;
  }


}