.custom-cart-container {
    display: flex;
    row-gap: 20px !important;
    flex-direction: column;
}
.custom-cart-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid #CCC;
    flex-wrap: wrap;
    padding-bottom: 20px;
}
.custom-cart-details {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    width: 80%;
    justify-content: space-between;
    padding-left: 25px;
}
.custom-cart-thumbnail {
    width: 20%;
    overflow: hidden;
}
.custom-cart-thumbnail img {
    width: 95%;
    height: auto;
    object-fit: contain;
    display: block;
}
a.custom-cart-name {
    color: #333336 !important;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
}
input.custom-cart-quantity {
    width: 60px;
    padding: 5px 10px;
    border: none;
    text-align: center;
}
p.custom-cart-price, p.custom-cart-subtotal {
    margin-bottom: 0;
    color: #333336;
    font-size: 20px;
    font-weight: 600;
}
a.custom-cart-name {
    width: 50%;
}
.item_bottom_row {
    width: 100% !important;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 10px;
    padding-top: 5px;
}
#ajax-loader {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

#ajax-loader img {
    max-width: 50px;
}
.custom-cart-actions {
    display: flex;
    flex-direction: column;
}
a.button.custom-cart-checkout {
    background: #0071E3;
    color: #FFF !important;
    border: 1px solid #0071E3;
    font-weight: 500;
    padding: 15px;
    text-align: center;
    border-radius: 50px;
}
a.button.custom-cart-checkout:hover {
    background: #FFF;
    color: #0071E3 !important;
    border: 1px solid #0071E3;
}
.custom-cart-thumbnail img {
    width: 50%!important;
    margin: 0 auto;
}
button.quantity-increase, button.quantity-decrease,
button.quantity-increase:hover, button.quantity-decrease:hover,
button.quantity-increase:active, button.quantity-decrease:active {
    padding: 0;
    font-size: 20px;
    border: none;
    outline: none;
    color: #000;
    background: #FFF;
}
span.custom-cart-quantity-display {
    padding: 0 15px;
}
@media(max-width:786px){
    .custom-cart-thumbnail {
        width: 20%;
        overflow: hidden;
    }
    .custom-cart-details {
        width: 80%;
        padding-left: 10px;
    }
    a.custom-cart-name {
        color: #333336 !important;
        font-size: 15px;
        font-weight: 600;
        line-height: 18px;
        width: 100%;
        margin-bottom: 5px;
    }
    p.custom-cart-price, p.custom-cart-subtotal {
        font-size: 17px;
        width: 20%;
    }
    .custom-cart-thumbnail img {
        width: 100% !important;
        margin: 0 auto;
    }
}