* {
  box-sizing: border-box;
  font-family: Epilogue, sans-serif;
  margin: 0;
  padding: 0;
}

body {
  background-color: rgb(246, 246, 246);
}

.header {
  position: relative;
  background-color: rgb(3, 52, 45);
  display: flex;
  align-items: center;
  width: 100%;
  height: 60px;
}

.container-title {
  width: 80%;
}

.title {
  color: rgb(221, 221, 221);
  font-size: 30px;
  padding-left: 30px;
}

.container-cartTitle {
  position: relative;
  display: flex;
  align-items: center;
  background-color: rgb(10, 118, 79);
  width: 40%;
  height: 100%;
  margin-left: 30px;
}

.container-cartTitle span {
  z-index: 1;
}

.container-cartTitle:after {
  content: '';
  position: absolute;
  top: 15px;
  right: 61.5%;
  width: 39.5%;
  height: 15px;
  background: rgb(10, 118, 79);
  transform: skew(-45deg);
  z-index: 0;
}

.container-cartTitle:before {
  content: '';
  position: absolute;
  top: 30px;
  right: 61.5%;
  width: 39.5%;
  height: 15px;
  background: rgb(10, 118, 79);
  transform: skew(45deg);
  z-index: 0;
}

.container-cartTitle .cart__title {
  color: white;
  font-size: 20px;
  padding-left: 35px;
  font-weight: 700;
}

.container {
  display: flex;
  justify-content: space-around;
  width: 100%;
}

.title strong {
  color: white;
}

.items {
  display: flex;
  flex-basis: 70%;
  flex-wrap: wrap;
  justify-content: center;
  margin: 20px 10px;
}

.item {
  display: flex;
  flex-direction: column;
  height: auto;
  margin: 5px;
  width: 200px;
  border: 2px solid rgb(234, 234, 233);
  border-radius: 5px;
  box-sizing: border-box;
  align-items: center;
  background-color: white;
}

.item__sku , .item__unformated_price {
  display: none;
}

.item .item__title {
  display: flex;
  align-items: center;
  flex-grow: 1;
  padding: 10px;
  text-align: center;
}

.item .item__price {
  font-weight: 600;
}

.item__image-container {
  height: 150px;
  width: 150px;
  overflow: hidden;
}

.item__image {
  height: 100%;
}

.item .item__add {
  background-color: rgb(10, 118, 79);
  border: 1px solid white;
  cursor: pointer;
  margin: 15px 0;
  padding: 10px;
  color: white;
}

.item .item__add:hover {
  background-color: white;
  border: 1px solid rgb(10, 118, 79);
  color: rgb(10, 118, 79);
}

.container .item .item__add :hover {
  color: black;
  border: 1px solid rgb(10, 118, 79);
  background-color: white;
}

.cart {
  display: flex;
  flex-basis: 32%;
  flex-direction: column;
  background-color: rgb(241, 241, 238);
  align-items: center;

  /* height: 100vh; */

  /* overflow-y: scroll; */
}

.cart__items {
  line-height: 1.5rem;
  margin: 10px 15px;
  padding: 5px;
  list-style: none;
  border: 2px solid rgb(234, 234, 233);
  width: 90%;
}

.cart__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cart-thumbnails {
  height: 75px;
  border-radius: 100%;
  border: 1px solid rgb(10, 118, 79);
  margin-top: 5px;
}

hr {
  border: 2px solid rgb(234, 234, 233);
  width: 80%;
  align-self: center;
}

.delete-from-cart {
  width: 20px;
  height: 20px;
  background-color: brown;
  color: white;
  text-align: center;
  border: 1px solid white;
  margin-bottom: 5px;
  cursor: pointer;
}

.delete-from-cart:hover {
  background-color: white;
  color: brown;
  border: 1px solid brown;
}

.empty-cart , #buy-btn {
  width: 170px;
  height: 35px;
  margin: 0 auto 10px;
  border: 2px solid rgb(5, 52, 219);
  background-color: rgb(249, 249, 246);
}

#buy-btn {
  color: white;
  border: 2px solid white;
  background-color: rgb(10, 118, 79);
}

#cart-total-price {
  margin: 10px 20px;
  text-align: center;
}

.total-price {
  color: rgb(10, 118, 79);
  font-weight: 600;
  font-size: 1.5rem;
}
