.ligne {
  position: absolute;
  width: 1100px;
  left: 30px;
  bottom: 300px;
}

.total {
  color: whitesmoke;
  font-size: 40px;
  margin-top: 20px;
  margin-right: 20px;

  font-family: "Inconsolata", monospace;
}

.buttonSupprimer {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-size: 18px;
  padding: 10px 10px;
  border: none;
  cursor: pointer;
  border-radius: 15px;
  transition: background-color 0.5s ease;
  margin-top: 20px;
}

.buttonSupprimer:hover {
  background-color: rgb(46, 64, 73);
  color: whitesmoke;
}

.prix {
  display: flex;
  align-items: center;
  color: white;
}

#articles {
  margin-left: 80px;
  height: 50%;
  color: whitesmoke;
}

.imgVetement {
  width: 10%;
  height: auto;
  border-radius: 10px;
  margin: 10px;
}

.nomVetement {
  position: absolute;
  display: inline-block;
  left: 200px;
}

.vetements {
  background-color: #7f8c8d;
  margin: 10px;
  border-radius: 15px;
  width: 50%;
  color: whitesmoke;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
}

hr {
  width: 52%;
}

#lignes {
  position: absolute;
  width: 50%;
  height: 20px;
  left: 75px;
  bottom: 210px;
}

#paniertitre {
  left: 95px;
  color: whitesmoke;
}

@media screen and (max-width: 768px) {
  .imgVetement {
    width: 20%;
  }

  .vetements {
    width: 90%;
  }

  hr {
    width: 90%;
  }
}

@media screen and (max-width: 480px) {
  .imgVetement {
    width: 30%;
  }

  .vetements {
    width: 90%;
  }

  hr {
    width: 90%;
  }
}

.hidden {
  display: none;
}
