.card_taille {
    width: 20%;
    margin: 15px;
}

.box {
  width: 100%;
  max-width: 900px;
}

.card {
    position: relative;
}

.border_non_round {
    width: 80%;
 /*   height: 80%;*/
    border: none;
    border-radius: 18px;
}

#galerie{
  width: 90%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}

.inBox{
  text-align: center;
  justify-content: space-between;
  height: 100%;
}

#div_add_galerie {
    display: flex;
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 20px;
    border-radius: 100%;
    background-color: var(--main-color-principale);
    justify-content: center;
    align-items: center;
    z-index: 5;
    left: 30px;
    cursor: pointer;
}

#div_add_galerie i {
    color: var(--main-color-body);
}

#container-form-galerie {
    padding: 5px;
    text-align: center;
    width: 100%;

}

#preview_image {
    display: flex;
    width: 100%;
    margin: 5px;
    border-radius: 10px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.image-container {
    display: inline-block;
    position: relative;
}



.thumbnails {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.thumbnails img {
  width: 50px;
  height: 50px;
  margin: 0 5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.3s;
}
.thumbnails img:hover {
  border: 2px solid #007bff;
}

.delete-button {
  position: absolute;
  top: 0px;
  right: 0px;
  background: var(--main-color-secondaire);
  color: var(--main-color-body);
  border: none;
  border-radius: 1em;
  cursor: pointer;
  height: 20px;
  width: 20px;
  font-size: x-small;
  text-align: center;
}



@media screen and (max-width: 950px) {



}

@media screen and (min-width: 950px) {
  .box{
    width: 30%;
    height: auto;
    margin: 20px auto;
    border-radius: 1em;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
}
