main {
  width: 50vw;
  height: auto;
  margin: 17vh auto;
  display: flex;
  flex-direction: column;
}

.cart-header {
  display: flex;
  justify-content: center;
  margin-bottom: 5vh;
}

#cart-icon {
  height: 4vh;
  width: auto;
  margin-top: 0.5vh;
}

.cart-header-text {
  margin-left: 1vw;
  font-size: 2vw;
  cursor: default;
}

#cart-items-container {
  display: flex;
  flex-direction: column;
  gap: 2vh;
}

.cart-item {
  display: flex;
  gap: 20px;
  background-color: #DBDBDB;
  padding: 20px;
  border-radius: 15px;
}

.cart-product-img {
  width: 200px;
  height: auto;
  border-radius: 10px;
}

.cart-info {
  flex: 1;
}

.cart-info h2 {
  margin: 0 0 10px 0;
  font-size: 24px;
  color: #000000;
}

.cart-info p {
  margin: 15px 0;
  font-size: 16px;
  color: #000000;
}

.cart-info hr {
  margin: 5vh 0 2vh;
  font-size: 16px;
  color: #000000;
}

#total-purchase-cost {
  font-size: 0.9vw;
  margin-top: 5vh;
  font-weight: bold;
}

.make-order {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.7vw;
  font-weight: 550;
  background-color: #7c5409;
  border: none;
  border-radius: 1vh;
  width: 22vw;
  height: 9vh;
  margin: 10vh auto 0;
  cursor: pointer;
}

.make-order:hover {
  background-color: #614208;
}

/*# sourceMappingURL=cart.css.map */
