* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto";
}
.containerCart {
  display: flex;
  flex-direction: column;
  margin-top: 8%;
  gap: 0.5em;
}

.yourCart {
  text-align: center;
  border-bottom: 2px solid #cdcdcd;
  color: #666666;
}

.cart-body {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0.5em;
  padding: 0 1em 0 1em;
  justify-content: space-evenly;
  margin-bottom: 10%;
}

.cart-items {
  display: flex;
  width: 100%;
}

#sumary {
  display: flex;
  flex-direction: row;
  max-width: 50%;
  justify-content: space-between;
  border: 2px solid #cdcdcd;
  outline: 3px solid #666666;
  border-radius: 10px;
  padding: 0.2%;

  background-color: rgb(255, 250, 250);
}

#sumary h4 {
  color: #666666;
}

.total {
  display: flex;
  flex-direction: row;
  color: #666666;
  gap: 1em;
}

.sumOfProducts {
  font-weight: bolder;
  font-size: 1.2em;
}

.checkout {
  padding: 0.5%;
  background-color: #666666;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

.checkout:hover {
  background-color: dodgerblue;
  font-weight: bold;
}

.cart-item-card {
  display: flex;
  flex-direction: row;
  padding: 0.5%;
  width: 100%;
  height: 10%;
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
  border-bottom: 2px solid #cdcdcd;
}

.imgName {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 50%;
}

.cart-body a {
  align-items: center;
  text-decoration: none;
  max-width: 20%;
  color: #121311;
}

.cart-item-card img {
  max-width: 70%;
  height: auto;
}

.productName {
  font-size: 0.5em;
}

.quantity {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10%;
}

.decreaseNoOfProducts,
.increaseNoOfProducts,
.deleteItem {
  border: none;
  background-color: transparent;
  font-weight: bolder;
  cursor: pointer;
}

.deleteItem {
  color: red;
}

.deleteItem:hover {
  color: dodgerblue;
}

body > div > div.cart-body > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: auto;
}

body > div > div.cart-body > div > img {
  max-width: 20%;
  height: auto;
}

body > div > div.cart-body > div > a {
  max-width: 90%;
}

.footerCart {
  display: flex;
  flex-direction: row;
  box-sizing: content-box;
  position: fixed;
  bottom: 0px;
  justify-content: space-evenly;
  align-items: center;
  background-color: #121311;
  text-align: justify;
  font-family: cursive;
  color: #cdcdcd;
  gap: 10%;
  padding: 1% 3% 1% 3%;
  height: 10%;
}
