.cart-image-size{
 width: 65px;
 height: 65px;
}

.quantity-toggle{
    width: 80px;
}
.cart-product-code-title{
    font-size: 12px ;
    padding-top: 5px;
    font-weight: bold;
}

.cart-product-code{
    font-size: 10px;
}

.continue-shopping-btn{
    background: rgba(0, 0, 0, 0.87);
    box-shadow: 2px 2px 5px grey;
    border: none;
    color:white;
    font-size: 15px;
    width: 30%;
    float: right;
    margin-right: 20px;
}

.continue-shopping-btn:hover{
    background: rgba(0, 0, 0, 0.76);
    box-shadow: 2px 2px 5px grey;
}

.empty-cart-table{
    background-color: rgba(255, 182, 86, 0.747);
}
.empty-cart-banner{
 color:rgb(109, 109, 109);
}

.empty-cart-icon{
   padding-right: 10px;
}

a.dropdown-item{
    height: 20px;
    padding: 0px;
}

.to-checkout-btn{
    background-color: #3d3e94f5;
    box-shadow: 2px 2px 5px grey;
    border: none;
    font-size: 15px;
    width: 30%;
    float: right;
    margin-top: 0;
}

.to-checkout-btn:hover{
    background-color: #335fe2;
    box-shadow: 2px 2px 5px grey;
    border: none;
}

.delete-item-btn{
    background: rgb(209, 60, 60);
    box-shadow: 2px 2px 5px grey;
    color: white;
    margin-left: 20px;
}

.delete-item-btn:hover{
    background: rgb(202, 36, 36);
    box-shadow: 2px 2px 5px grey;
    color: white;
}

.cart-price{
    color: #015B9C;
    font-weight: bold;
}

td.text-center.total{
    padding-right: 20px;
}

@media screen and (min-width : 768px) and (max-width : 1023px){
    .cart-item-container{
        max-width: 95% !important;
    }

    .cart-image-size {
        width: 75px;
        height: 75px;
    }

    th {
        font-size: 1.2rem;
    }

    td{
        font-size: 1.2rem;
    }

    .cart-product-code-title {
        font-size: 1rem;
    }

    .cart-product-code {
        font-size: 0.9rem;
    }

   
    

}