
.shopping-cart {
  margin: 30px auto;
  background: #FFFFFF;
  box-shadow: 1px 2px 3px 0px rgba(0,0,0,0.25);
  border-radius: 6px;

  display: flex;
  flex-direction: column;
}

.shopping-cart-title {
  height: 60px;
  border-bottom: 1px solid #E1E8EE;
  padding: 20px 30px;
  color: #5E6977;
  font-size: 18px;
  font-weight: bold;
}

.shopping-cart-item {
  padding: 20px 30px;
  display: flex;
  border-bottom:  1px solid #E1E8EE;
}

.shopping-cart-item:last-child {
  border-bottom:  0px;
}

/* Buttons -  Delete and Like */
.shopping-cart-buttons {
  position: relative;
  padding-top: 30px;
  min-width:10%;
}

.shopping-cart-delete-btn {
  display: inline-block;
  cursor: pointer;
  width: 18px;
  height: 17px;
  background: url("delete-icn.svg") no-repeat center;
  margin-right: 20px;
}

.shopping-cart-like-btn {
  position: absolute;
  top: 9px;
  left: 15px;
  display: inline-block;
  background: url('twitter-heart.png');
  width: 60px;
  height: 60px;
  background-size: 2900%;
  background-repeat: no-repeat;
  cursor: pointer;
}

.shopping-cart-is-active {
  animation-name: animate;
  animation-duration: .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; }
}

/* Product Image */
.shopping-cart-image {
  min-width:22%;
}
  .shopping-cart-image img {
    max-width: 90px;max-height: 80px;
  }

/* Product Description */
.shopping-cart-description {
    padding-top: 15px;
    width: 40%;
}
.shopping-cart-qua {
    padding-top: 18px;
    min-width: 20%;
}

.shopping-cart-description span {
  display: block;
  font-size: 14px;
  color: #43484D;
  font-weight: 400;
}

.shopping-cart-description span:last-child {
  font-weight: 300;
  color: #86939E;
}

/* Total Price */
.shopping-cart-total-price {
    min-width:18%;
  padding-top: 27px;
  text-align: right;
  font-size: 16px;
  color: #43484D;
  font-weight: 300;
}

/* Responsive */
@media (max-width: 800px) {
  .shopping-cart {
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  .shopping-cart-item {
    height: auto;
    flex-wrap: wrap;
    justify-content: center;
  }
  .shopping-cart-image img {
    max-width: 90px;max-height: 80px;
  }
  .shopping-cart-image,
  .shopping-cart-description {
    width: 100%;
    text-align: center;
    margin: 6px 0;
  }
  .shopping-cart-buttons {
    margin-right: 20px;
  }
}
    .shopping-cart-buttons a { color:#000; }



.add-qua {
    display: block;
    text-align: center;
    margin-top: 5px;
    background-color: #E1E8EE;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    padding: 3px 8px;
    font-weight: bold;
    margin-left: 5px;
}

.quantity .btn__input {
    -webkit-appearance: none;
    border: none;
    text-align: center;
    width: 32px;
    color: #43484D;
    font-weight: 300;
}

.btn__ {
    width: 25px;
    height: 25px;
    background-color: #E1E8EE;
    border-radius: 6px;
    border: none;
    cursor: pointer;
}

.minus-btn__ img {
    margin-bottom: 1px;
}

.plus-btn__ img {
    margin-top: 0px;
}

button:focus,
input:focus {
    outline: 0;
}

.img_container:hover .aaa {
    visibility: visible;
    opacity: 1;
}

.aaa {
    background-color: #fff;
    z-index: 99999;
    /*background: rgb(255 255 255 / 75%);*/
    border-radius: 8px;
    padding: 8px;
    display: block;
    width: fit-content;
}


    .aaa2 {
        background-color: #fff;
        z-index: 99999;
        box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
        border-radius: 2px;
        padding: 7px;
        width: fit-content;
        margin-right: 10px;
        margin: auto;
    }