.cart-item {
  border-top: 1px solid #F1F1F1;
  display: flex;
  align-items: center;
  padding: 11px 0;
}
.cart-item__title {
  color: #111111;
  opacity: 0.7;
  font-size: 14px;
  line-height: 22px;
  width: 360px;
  padding: 0 40px 0 20px;
}
.cart-item__price {
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  width: 165px;
  text-align: center;
  padding: 0 10px;
}
.cart-item__total {
  width: 170px;
  padding: 0 5px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}
.cart-item__quantity {
  width: 80px;
}
.cart-item__remove {
  display: flex;
  align-items: center;
  width: 20px;
}
.cart-item__remove:hover {
  cursor: pointer;
}
.cart-item__remove:hover svg path {
  stroke: #E74A41;
}
.cart-item__remove svg path {
  transition: all 0.1s linear;
}
.cart-item__image {
  width: 100px;
  display: flex;
  align-items: center;
}
.cart-item__image img {
  max-width: 100%;
  height: auto;
}