/* cart.html */
.cart-item-img-container {
    display:flex;
    justify-content: center;
    width:120px;
    background-color: white;
    border: 1px solid green;
    margin-right: 1em;
    max-height: 150px;
}

.cart-item-img {
    max-height:150px;
    margin: auto;
    max-width:100%;
}

.cart-buttons {
    display: flex;
    justify-content: flex-end;
}


@media (max-width: 576px) {
    /* cart.html */
    .cart-buttons {
        display: flex;
        flex-direction: column;  
        align-items: flex-end;
    }

    .cart-table-qnt-col {
        display: none;
    }

    .cart-table {
        display: flex;
        flex-direction: column;
        margin-bottom: 1em;
    }

    .cart-table-options {
        border-top: 0 !important;        
    }
}