* {
  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: 40px 0;
  margin-top: 90px;
}

.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;
}

.item .item__sku {
  display: none;
}

.item .item__title {
  display: flex;
  align-items: center;
  flex-grow: 1;
  padding: 5px;
  text-align: left;
  color: rgb(64, 64, 64);
  font-weight: 700;
  font-family: Arial, Helvetica, sans-serif;
}

.item .item__image {
  width: 100%;
}

.item .item__add {
  background-color: rgb(5, 52, 219);
  border: 0;
  cursor: pointer;
  margin: 0;
  padding: 10px;
  color: white;
  margin-top: 5px;
}

.cart {
  display: flex;
  flex-basis: 32%;
  flex-flow: column wrap;
  background-color: rgb(241, 241, 238);
  height: 100vh;
}

.cart .cart__items {
  height: 500px;
  overflow-y: scroll;
}

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

.empty-cart:hover {
  background-color: rgb(5, 52, 219);
  color: white;
}

.cart__item {
  padding: 10px;
  display: flex;
  cursor: pointer;
}

.cart__item:hover {
  background-color: rgba(255, 0, 0, 0.664);
}

.price {
  margin-top: 5px;
  margin-left: 5px;
  color: rgb(43, 43, 43);
  font-size: large;
}

.total-price {
  color: rgb(43, 43, 43);
  font-size: 20px;
  font-weight: 700;
}

.real {
  color: rgb(43, 43, 43);
  font-size: 20px;
  font-weight: 700;
}

.sub-total {
  margin-left: 15px;
  margin-bottom: 20px;
}

#inputSearch {
  position: absolute;
  width: 400px;
  height: 30px;
  margin-top: 30px;
  border-radius: 2px;
  border: 1px solid rgba(2, 27, 18, 0.452);
  margin-right: 420px;
  padding: 7px 60px 5px 15px;
}
