.content-wrap {
  display: flex;
  flex-direction: column;
  padding-left: 50px;
  padding-right: 50px;
}
.content-wrap h2 {
  font-size: 2em;
  margin: 0;
  padding: 20px;
  align-self: center;
}
.content-wrap .entirecart {
  display: flex;
  flex-direction: row;
  max-width: 1200px;
  align-self: center;
  width: 100%;
  gap: 40px;
  justify-content: center;
}
.content-wrap h3 {
  align-self: center;
}

br {
  background-color: gray;
  height: 1px;
}

.cartbody {
  display: flex;
  flex-direction: column;
  text-align: right;
  min-height: 100%;
  flex-grow: 1;
}

.subtotal {
  font-size: 3em;
}

.endstuff {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas: "totalitems price" "checkout checkout";
  width: 300px;
  height: 100%;
}
.endstuff p {
  margin: 0;
}

.price {
  grid-area: price;
}

.totalitems {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas: "subtotal" "items";
  grid-area: totalitems;
  text-align: left;
}

.subtotaltext {
  grid-area: subtotal;
  font-size: 2em;
}

.items {
  grid-area: items;
}

.removeall {
  align-self: flex-end;
  color: red;
  background-color: transparent;
  border: none;
  text-decoration: underline;
  margin-bottom: 10px;
}

.removeall:hover {
  cursor: pointer;
}

.checkoutform {
  grid-area: checkout;
}

.checkout {
  position: relative;
  border-radius: 500px;
  font-size: 20px;
  background-color: #3a6afe;
  border: 0px;
  width: 300px;
  height: 60px;
  padding: auto;
}

.checkout:hover {
  background-color: grey;
}

img {
  width: 250px;
  height: 250px;
  min-width: 250px;
  min-height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}

.cartitems {
  text-align: center;
}

.cartitem {
  display: flex;
  flex-direction: row;
  margin-bottom: 10px;
  border: 2px solid grey;
  height: 250px;
  box-sizing: content-box;
  justify-content: space-between;
  align-items: center;
}

.quantity {
  width: 50px;
  height: auto;
}

.svg:hover {
  cursor: pointer;
}

.div1-1 {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.div1-1 p {
  -webkit-hyphens: auto;
          hyphens: auto;
  font-size: 1.2em;
  font-weight: bold;
}

.div1-2 {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-grow: 1;
  justify-content: space-around;
}

.div2-1 {
  margin-right: 20px;
  align-items: center;
}

.div2-2 {
  display: flex;
  flex-direction: column;
  margin-right: 20px;
  align-items: flex-end;
}

@media (max-width: 1000px) {
  .entirecart {
    flex-direction: column !important;
    justify-content: right;
  }
  .endstuff {
    align-self: flex-end;
  }
}
@media (max-width: 600px) {
  .content-wrap {
    padding-left: 5px;
    padding-right: 10px;
  }
  .cartitem {
    height: 200px;
    flex-direction: column;
    align-items: normal;
  }
  .cartitem img {
    align-self: flex-start;
  }
  .endstuff {
    align-self: center;
  }
  img {
    width: 100px;
    height: 100px;
    min-width: 100px;
    min-height: 100px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .div1-2 {
    height: 50%;
    justify-content: space-around;
  }
  .div2-1 {
    display: flex;
    flex-direction: row;
  }
  .div2-2 {
    flex-direction: row;
    width: 50%;
    justify-content: space-evenly;
    align-items: normal;
  }
}/*# sourceMappingURL=cart.css.map */