* {
  box-sizing: border-box;
}

/* html, */
body {
  width: 100%;
  height: 100%;
  margin: 0;
  background-color: #f1bb26b0;
  font-family: "Roboto", sans-serif;
}
.shopping-cart {
  width: 750px;
  height: 423px;
  margin: 80px auto;
  background: #ffffff;
  box-shadow: 1px 2px 3px 0px rgba(0, 0, 0, 0.1);
  border-radius: 6px;

  display: flex;
  flex-direction: column;
}
.title {
  height: 60px;
  border-bottom: 1px solid #e1e8ee;
  padding: 20px 30px;
  color: #a82b2b;
  font-size: 18px;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
}

.item {
  padding: 20px 30px;
  height: 120px;
  display: flex;
}

.item:nth-child(3) {
  border-top: 1px solid #e1e8ee;
  border-bottom: 1px solid #e1e8ee;
}
.buttons {
  position: relative;
  padding-top: 30px;
  margin-right: 10px;
  margin-left: 50px;
}
.delete-btn,
svg {
  display: inline-block;
  cursor: pointer;
}
svg {
  width: 20px;
  height: 20px;
  fill: grey;
}
.heart {
  fill: red;
}
.delete-btn {
  width: 20px;
  height: 20px;
  background: url(./delete-icn.svg) no-repeat center;
}

.is-active {
  animation-name: animate;
  animation-duration: 0.8s;
  animation-iteration-count: 1;
  animation-timing-function: steps(28);
  animation-fill-mode: forwards;
}

@keyframes animate {
  0% {
    background-position: left;
  }
  50% {
    background-position: right;
  }
  100% {
    background-position: right;
  }
}
.image {
  margin-right: 50px;
}
.miSmart {
  height: auto;
  width: 78px;
}
.lenovo {
  height: auto;
  width: 80px;
}
.Enence {
  height: auto;
  width: 80px;
}

/* Let’s add some basic style to  product name and description. */
.description {
  padding-top: 10px;
  margin-right: 60px;
  width: 100px;
}

.description span {
  display: block;
  font-size: 15px;
  color: grey;
  font-weight: 400;
}

.description span:first-child {
  margin-bottom: 5px;
  color: #43484d;
}
.description span:last-child {
  font-weight: bold;
  font-size: 70%;
  margin-top: 8px;
  color: #a82b2b;
}
.quantity {
  padding-top: 25px;
  margin-right: 60px;
}
.quantity input {
  -webkit-appearance: none;
  border: none;
  text-align: center;
  width: 32px;
  font-size: 16px;
  color: #43484d;
  font-weight: 300;
}

button[class*="btn"] {
  width: 25px;
  height: 25px;
  background-color: grey;
  color: #ffffff;
  font-weight: bolder;
  font-size: large;
  border-radius: 25px;
  border: none;
  cursor: pointer;
}
.minus-btn img {
  margin-bottom: 3px;
}
.plus-btn img {
  margin-top: 2px;
}

button:focus,
input:focus {
  outline: 0;
}
.total-price {
  width: 60px;
  padding-top: 30px;
  text-align: center;
  font-size: 16px;
  color: #a82b2b;
  font-weight: 300;
  padding-right: 10px;
}

.devise {
  width: 20px;
  padding-top: 30px;
  text-align: center;
  font-size: 16px;
  color: #a82b2b;
  font-weight: 300;
  padding-right: 10px;
}
