.cartlist .table{
    margin-top: 30px;
}
.cartlist thead tr th{
    text-align: center;
}
.cartlist thead tr .image-th{
    width: 120px;
}
.cartlist tbody tr td{
    text-align: center;
    vertical-align: middle;
}
.cartlist tbody tr .stock-out{
    color: #ff3551;
}
.cartlist tbody tr .action a {
    color: #ffffff;
    background-color: var(--primary);
    padding: 10px 15px;
    border-radius: 4px;
}
.cartlist tbody tr .action a i{
    color: #ffffff;
    margin-right: 5px;
}
.cartlist tbody tr .contact-us a {
    color: #ffffff;
    background-color: #41506b;
    padding: 10px 15px;
    border-radius: 4px;
}
.cartlist tbody tr .contact-us a i{
    color: #ffffff;
    margin-right: 5px;
}
.cartlist tbody tr .remove-btn a i{
    transition: 0.5s;
}
.cartlist tbody tr .remove-btn{
    transition: 0.5s;
}
.cartlist tbody tr .remove-btn:hover a i{
    font-size: large;
    color: #ff3551;
}
.cartlist tbody .img img{
    width: 80%;
    height: 100%;
}
.cartlist tbody .img{
    width: 100px;
    height: 60px;
    padding: 5px;
}


.cartlist tbody .quantity .d-flex{
    justify-content: center;
    align-items: center;
}
.cartlist tbody .quantity input {
    width: 35px;
    height: 32px;
    line-height: 35px;
    font-size: 15px;
    margin: 0px 18px 0 18px;
    padding: 5px 0px 5px 0px;
    border-radius: 6px;
    border: 1px solid var(--primary);
    background: var(--primary);
    text-align: center;
    color: white;
}
.cartlist tbody .quantity .table-add{
    cursor: pointer;
}
.cartlist tbody .quantity .table-sub{
    cursor: pointer;
}

/* Extra-Small Device*/
@media (max-width:575px){
    .cartlist tbody .quantity input {
        width: 30px;
        height: 25px;
        line-height: 30px;
        font-size: 13px;
        margin: 0px 8px 0 8px;
        padding: 5px 0px 5px 0px;
    }
    .cartlist tbody tr td {
        padding: 0px 8px;
    }
}

/* Small Device col-sm */
@media (min-width:576px) and (max-width:767px){

}

/* Medium Device col-md */
@media (min-width:768px) and (max-width:991px){

}

/* Large Device col-lg */
@media (min-width:992px) and (max-width:1199px){

}
