#cart-content {
  background-color: rgba(0, 0, 0, 0.5);
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-wrap: nowrap;
  margin: 0 auto;
  margin-bottom: 50px;
  padding: 10px;
}

#cart-content .cart-product {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  margin-bottom: 10px;
}

#cart-content .cart-product .product-img {
  width: 60%;
  margin-bottom: 5px;
}

#cart-content .cart-product .product-img img {
  width: 100%;
}

#cart-content .cart-product .product-info {
  width: 70%;
  /* text-align: right; */
}

#cart-content .cart-product .product-info p {
  margin-bottom: 10px;
}

#cart-content .cart-product .product-info .btn_qty {
  margin-left: 5px;
}

#cart-content .cart-product .product-info .btn:focus {
  background-color: #505050;
  border-color: #505050;
}

#cart-content .cart-total {
  margin-top: 20px;
  padding: 0 50px;
  text-align: right;
}

#empty_cart {
  cursor: pointer;
}

/* RESPONSIVE */
/* Up To : phone landscape & smaller + Tablet Portrait */
@media all and (min-width: 480px) {
  #cart-content .cart-product .product-img {
    width: 40%;
  }

  #cart-content .cart-product p {
    font-size: 1.2rem;
  }
}

/* Ipad */
@media all and (min-width: 900px) {
  #cart-content .cart-product {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  }

  #cart-content .cart-product .product-img {
    width: 20%;
  }

  #cart-content .cart-product .product-img img {
    width: 100%;
  }

  #cart-content .cart-product .product-info {
    width: 50%;
    /* text-align: right; */
  }

  #cart-content .cart-product p {
    font-size: 1rem;
  }
}

/* Laptop and + */
@media all and (min-width: 1180px) {
}
