.list-product .card {
    padding: 10px;
    width: 275px;
    border: none;
    margin-right: 10px;
    margin-bottom: 10px;
}
.list-product .card h3 {
    font-weight: 700;
    padding: 0px 0px;
    font-size: 16px;
    margin-bottom: 15px;
}

.list-product .thumb-image {
    width: 100%;
    min-height: 160px;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
    position: relative;
}

.list-product .card button {
    position: absolute;
    bottom: 3px;
    right: 3px;
    font-weight: 500;
}

.list-product .card .btn-vip {
    position: absolute;
    bottom: 3px;
    left: 3px;
    font-weight: 500;
}

.license-duration {
    position: absolute;
    top: 0px;
    right: 0px;
}

.card-key {
    padding: 0px;
    cursor: pointer;
}

.row {
    margin: 0;
    padding: 0;
}

/**
SHOPPING CARD
 */
.shopping-cart {
    /*width: 750px;*/
   /* height: 423px;*/
    margin: 20px auto;
    background: #FFFFFF;
    box-shadow: 1px 2px 3px 0px rgba(0,0,0,0.10);
    border-radius: 6px;
    border: solid 1px #2196f3;
    display: flex;
    flex-direction: column;
}

.product-title, .cart-title {
    border-bottom: 1px solid #E1E8EE;
    padding: 0px 0px;
    color: #5E6977;
    font-size: 18px;
    font-weight: 400;
}

.product_name {
    height: 48px!important;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    align-self: center;
}
.cart-title {
    height: 60px;
    padding: 20px 30px;
}

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

.item:nth-child(3) {
    border-top:  1px solid #E1E8EE;
    border-bottom:  1px solid #E1E8EE;
}

/* Buttons -  Delete and Like */
.buttons {
    position: relative;
    padding-top: 30px;
    /*margin-right: 60px;*/
}

.delete-btn {
    display: inline-block;
    cursor: pointer;
    width: 18px;
    height: 17px;
    background: url("delete-icn.svg") no-repeat center;
    margin-right: 20px;
}

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

.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 */

/* Product Description */
.description {
    padding-top: 10px;
    margin-right: 60px;
   /* width: 115px;*/
}

.description span {
    display: block;
    font-size: 14px;
    color: #43484D;
    font-weight: 500;
}

.description span:first-child {
    margin-bottom: 5px;
}
.description span:last-child {
    font-weight: 500;
    margin-top: 8px;
    color: #86939E;
}

/* Product Quantity */
.quantity {
    padding-top: 20px;
    margin-right: 60px;
}
.quantity input {
    -webkit-appearance: none;
    border: none;
    text-align: center;
    width: 32px;
    font-size: 16px;
    color: #43484D;
    font-weight: 400;
}

.quantity button[class*=btn] {
    width: 30px;
    height: 30px;
   /* background-color: #E1E8EE;*/
    border-radius: 6px;
    border: none;
    cursor: pointer;
}
.minus-btn img {
    margin-bottom: 3px;
}
.plus-btn img {
    margin-top: 2px;
}
button:focus,
input:focus {
    outline:0;
}

.duration-text {
    display: inline-block;
    font-size: 14px;
    color: #43484d;
    font-weight: 500;
}

/* Total Price */
.total-price {
    width: 83px;
    padding-top: 27px;
    text-align: center;
    font-size: 16px;
    color: #43484D;
    font-weight: 300;
}

/* Responsive */
@media (max-width: 800px) {
    .shopping-cart {
        width: 100%;
        height: auto;
        overflow: hidden;
    }
    .item {
        height: auto;
        flex-wrap: wrap;
        justify-content: center;
    }
    .image img {
        width: 50%;
    }
    .image,
    .quantity,
    .description {
        width: 100%;
        text-align: center;
        margin: 6px 0;
    }
    .buttons {
        margin-right: 0px;
    }
    .delete-btn {
        margin-right: 0px;
    }
}
