/* SHOPPING CART */
.cart-cont-wrapper{
    position: relative;
    overflow: hidden;
    height: 0;
}

.cart-cont{
    width: 100%;
    background: white;
    margin-left: auto;
    /* border-top: 1px solid rgb(223, 223, 223); */
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.24);
    overflow-y: scroll;
    position: relative;
    -webkit-overflow-scrolling: touch;
}

.cart-cont-top{
    background: rgb(240, 240, 240);
}

.hide-cart-btn{
    cursor: pointer;
    font-weight: bold;
    transition: opacity .3s ease;
}

.hide-cart-btn:hover{
    opacity: 0.7;
}

.cart-item{
    overflow: hidden;
}

/* .cart-item-img-wrapper{
    padding: 10px;
} */

.cart-item-img{
    background-position: center;
    /* background-size: cover; */
    background-size: contain;
    background-repeat: no-repeat;

    /* width: 140px;   */
    /* height: 227px; */
}

.cart-item-data{
    padding: 10px;
}
.cart-item-title{
    font-weight: 700;
    text-transform: uppercase;
    padding-bottom: 10px;
}

.increase-btn,
.amnt-box,
.decrease-btn {
    height: 0;
    width: 0;
    padding: 20px;
    margin: 5px 0;
    border: 1px solid rgb(145, 145, 145);

    cursor: pointer;
    transition: background-color .3s ease;
}

.amnt-box{
    cursor: default;
}

.increase-btn:hover,
.decrease-btn:hover{
    background-color: rgb(223, 223, 223);
}

.remove-cart-item{
    height: 0;
    width: 0;

    padding: 20px;
    background: rgb(204, 0, 125);
    color: white;
    cursor: pointer;
    border: 1px solid transparent;

    transition: all .3s ease;
}

.remove-cart-item:hover{
    color: rgb(204, 0, 125);
    border-color: rgb(204, 0, 125);
    background-color: white;
}

.cart-total-price-cont{
    font-size: 20px;
    margin: 40px 0 20px;
}

.cart-checkout-btn{
    cursor: pointer;
    display: block;
    background: rgb(204, 0, 125);
    color: white;
    padding: 15px 30px;
    border: 1px solid transparent;
    transition: all .3s ease;
}

.cart-checkout-btn:hover{
    color: rgb(204, 0, 125);
    background: white;
    border-color: rgb(204, 0, 125);
}

@media(min-width: 992px){
    .cart-cont{
        width: 60%;
    }
}

@media(min-width: 1200px){
    .cart-cont{
        width: 50%;
    }
}

@media(min-width: 1350px){
    .cart-cont{
        width: 40%;
    }
}